2010-07-06 02:37:05 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2011-10-23 15:04:25 +02:00
|
|
|
* Copyright (C) 2011 Artem Pavlenko
|
2010-07-06 02:37:05 +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,
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2010-07-06 02:37:05 +02:00
|
|
|
// Mapnik
|
2012-04-08 02:20:56 +02:00
|
|
|
#include <mapnik/debug.hpp>
|
2010-07-06 02:37:05 +02:00
|
|
|
#include <mapnik/metawriter.hpp>
|
|
|
|
#include <mapnik/metawriter_json.hpp>
|
2012-02-12 03:55:13 +01:00
|
|
|
#include <mapnik/text_placements/base.hpp>
|
2012-03-04 23:25:13 +01:00
|
|
|
#include <mapnik/text_path.hpp>
|
2010-07-12 17:27:33 +02:00
|
|
|
|
|
|
|
// Boost
|
|
|
|
#include <boost/foreach.hpp>
|
|
|
|
#include <boost/algorithm/string.hpp>
|
2010-07-06 02:37:05 +02:00
|
|
|
|
|
|
|
// STL
|
|
|
|
#include <iomanip>
|
|
|
|
|
|
|
|
namespace mapnik {
|
|
|
|
|
2010-07-26 00:41:18 +02:00
|
|
|
UnicodeString const& metawriter_property_map::operator[](std::string const& key) const
|
2010-07-06 02:37:05 +02:00
|
|
|
{
|
2010-07-26 00:41:18 +02:00
|
|
|
std::map<std::string, UnicodeString>::const_iterator it;
|
|
|
|
it = m_.find(key);
|
2010-07-29 18:49:47 +02:00
|
|
|
if (it == m_.end()) return not_found_;
|
2010-07-26 00:41:18 +02:00
|
|
|
return (*it).second;
|
2010-07-06 02:37:05 +02:00
|
|
|
}
|
|
|
|
|
2010-07-29 18:49:47 +02:00
|
|
|
metawriter_properties::metawriter_properties(boost::optional<std::string> str)
|
|
|
|
{
|
|
|
|
if (str) {
|
|
|
|
boost::split(*this, *str, boost::is_any_of(", "), boost::token_compress_on);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-12 02:11:01 +02:00
|
|
|
std::string metawriter_properties::to_string() const
|
|
|
|
{
|
|
|
|
return boost::algorithm::join(*this, ",");
|
|
|
|
}
|
|
|
|
|
2010-07-29 18:49:47 +02:00
|
|
|
/********************************************************************************************/
|
|
|
|
|
2011-04-04 06:35:28 +02:00
|
|
|
void metawriter_json_stream::start(metawriter_property_map const& /*properties*/)
|
2010-08-02 03:35:18 +02:00
|
|
|
{
|
2010-08-02 14:14:27 +02:00
|
|
|
assert(trans_);
|
2010-08-19 07:50:08 +02:00
|
|
|
if (output_empty_) {
|
2010-08-02 03:35:18 +02:00
|
|
|
write_header();
|
|
|
|
} else {
|
|
|
|
count_ = HEADER_NOT_WRITTEN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void metawriter_json_stream::write_header()
|
2010-07-06 02:37:05 +02:00
|
|
|
{
|
2010-07-26 00:41:18 +02:00
|
|
|
assert(f_);
|
2011-07-23 02:11:01 +02:00
|
|
|
*f_ << "{ \"type\": \"FeatureCollection\", \"features\": [\n" << std::fixed << std::setprecision(pixel_coordinates_ ? 0 : 8);
|
2010-08-02 03:35:18 +02:00
|
|
|
count_ = STARTED;
|
2010-07-12 17:27:33 +02:00
|
|
|
}
|
|
|
|
|
2010-07-26 00:41:18 +02:00
|
|
|
void metawriter_json_stream::stop()
|
2010-07-12 17:27:33 +02:00
|
|
|
{
|
2012-04-08 02:20:56 +02:00
|
|
|
if (count_ >= STARTED && f_)
|
|
|
|
{
|
2010-07-26 00:41:18 +02:00
|
|
|
*f_ << " ] }\n";
|
2010-07-12 17:27:33 +02:00
|
|
|
}
|
2010-08-02 03:35:18 +02:00
|
|
|
count_ = STOPPED;
|
2010-07-29 18:49:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
metawriter_json_stream::~metawriter_json_stream()
|
|
|
|
{
|
2012-04-08 02:20:56 +02:00
|
|
|
if (count_ >= STARTED)
|
|
|
|
{
|
2012-04-09 21:41:56 +02:00
|
|
|
MAPNIK_LOG_WARN(metawriter) << "WARNING: GeoJSON metawriter not stopped before destroying it.";
|
|
|
|
|
2010-07-29 18:49:47 +02:00
|
|
|
stop();
|
|
|
|
}
|
2010-08-02 14:14:27 +02:00
|
|
|
if (trans_) delete trans_;
|
2010-07-12 17:27:33 +02:00
|
|
|
}
|
|
|
|
|
2010-08-02 14:14:27 +02:00
|
|
|
|
2010-07-26 00:41:18 +02:00
|
|
|
metawriter_json_stream::metawriter_json_stream(metawriter_properties dflt_properties)
|
2010-08-19 07:50:08 +02:00
|
|
|
: metawriter(dflt_properties), count_(-1), output_empty_(true),
|
2011-08-04 21:05:28 +02:00
|
|
|
trans_(0), output_srs_("+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs"),
|
|
|
|
pixel_coordinates_(false), f_(0)
|
2010-08-02 14:14:27 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-08-10 14:19:19 +02:00
|
|
|
void metawriter_json_stream::write_properties(Feature const& feature, metawriter_properties const& properties)
|
|
|
|
{
|
|
|
|
*f_ << "}," << //Close coordinates object
|
2012-02-02 02:53:35 +01:00
|
|
|
"\n \"properties\": {";
|
|
|
|
|
2010-08-10 14:19:19 +02:00
|
|
|
int i = 0;
|
2012-01-17 19:33:01 +01:00
|
|
|
BOOST_FOREACH(std::string const& p, properties)
|
2010-08-10 14:19:19 +02:00
|
|
|
{
|
2012-01-17 19:33:01 +01:00
|
|
|
if (feature.has_key(p))
|
2010-08-10 14:19:19 +02:00
|
|
|
{
|
2012-01-17 19:33:01 +01:00
|
|
|
mapnik::value const& val = feature.get(p);
|
2012-02-02 02:53:35 +01:00
|
|
|
std::string str = val.to_string();
|
2012-01-17 19:33:01 +01:00
|
|
|
if (str.size() == 0) continue; // ignore empty attributes
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2010-08-10 14:19:19 +02:00
|
|
|
//Property found
|
2012-01-17 19:33:01 +01:00
|
|
|
std::string text = boost::replace_all_copy(boost::replace_all_copy(str, "\\", "\\\\"), "\"", "\\\"");
|
2010-08-16 21:14:21 +02:00
|
|
|
if (i++) *f_ << ",";
|
|
|
|
*f_ << "\n \"" << p << "\":\"" << text << "\"";
|
2010-08-10 14:19:19 +02:00
|
|
|
}
|
|
|
|
}
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2010-08-10 14:19:19 +02:00
|
|
|
*f_ << "\n} }";
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Coordinate transform in renderer:
|
|
|
|
input: layer srs
|
|
|
|
prj_trans.backwards() [prj_trans: map -> layer]
|
|
|
|
intermediate: map srs
|
|
|
|
t_.forward()
|
|
|
|
output: pixels
|
|
|
|
|
|
|
|
Our transform:
|
|
|
|
input: pixels
|
|
|
|
t_.backward()
|
|
|
|
intermediate: map srs
|
|
|
|
trans_.forward()
|
|
|
|
output: WGS84
|
|
|
|
*/
|
|
|
|
|
2010-07-06 02:37:05 +02:00
|
|
|
|
2010-08-07 22:03:05 +02:00
|
|
|
void metawriter_json_stream::add_box(box2d<double> const &box, Feature const& feature,
|
2012-02-02 02:53:35 +01:00
|
|
|
CoordTransform const& t, metawriter_properties const& properties)
|
2010-07-06 02:37:05 +02:00
|
|
|
{
|
2010-08-02 03:35:18 +02:00
|
|
|
/* Check if feature is in bounds. */
|
|
|
|
if (box.maxx() < 0 || box.maxy() < 0 || box.minx() > width_ || box.miny() > height_) return;
|
2011-07-16 14:24:52 +02:00
|
|
|
double minx, miny, maxx, maxy;
|
|
|
|
if (pixel_coordinates_) {
|
|
|
|
minx = box.minx();
|
|
|
|
miny = box.miny();
|
|
|
|
maxx = box.maxx();
|
|
|
|
maxy = box.maxy();
|
|
|
|
} else {
|
|
|
|
//t_ coord transform has transform for box2d combined with proj_transform
|
|
|
|
box2d<double> transformed = t.backward(box, *trans_);
|
2010-08-02 03:35:18 +02:00
|
|
|
|
2011-07-16 14:24:52 +02:00
|
|
|
minx = transformed.minx();
|
|
|
|
miny = transformed.miny();
|
|
|
|
maxx = transformed.maxx();
|
|
|
|
maxy = transformed.maxy();
|
|
|
|
}
|
2010-07-06 02:37:05 +02:00
|
|
|
|
2010-08-10 14:19:19 +02:00
|
|
|
write_feature_header("Polygon");
|
|
|
|
|
|
|
|
*f_ << " [ [ [" <<
|
2012-02-02 02:53:35 +01:00
|
|
|
minx << ", " << miny << "], [" <<
|
|
|
|
maxx << ", " << miny << "], [" <<
|
|
|
|
maxx << ", " << maxy << "], [" <<
|
|
|
|
minx << ", " << maxy << "] ] ]";
|
2010-08-10 14:19:19 +02:00
|
|
|
|
|
|
|
write_properties(feature, properties);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-03-04 23:25:13 +01:00
|
|
|
void metawriter_json_stream::add_text(
|
|
|
|
boost::ptr_vector<text_path> &placements, box2d<double> const& extents,
|
|
|
|
Feature const& feature, CoordTransform const& t,
|
|
|
|
metawriter_properties const& properties)
|
2010-08-10 14:19:19 +02:00
|
|
|
{
|
2010-08-11 04:26:14 +02:00
|
|
|
/* Note:
|
|
|
|
Map coordinate system (and starting_{x,y}) starts in upper left corner
|
2012-02-02 02:53:35 +01:00
|
|
|
and grows towards lower right corner.
|
2010-08-11 04:26:14 +02:00
|
|
|
Font + placement vertex coordinate system starts in lower left corner
|
2012-02-02 02:53:35 +01:00
|
|
|
and grows towards upper right corner.
|
2010-08-11 04:26:14 +02:00
|
|
|
Therefore y direction is different. Keep this in mind while doing calculations.
|
|
|
|
|
|
|
|
The y value returned by vertex() is always the baseline.
|
|
|
|
Lowest y = baseline of bottom line
|
|
|
|
Hightest y = baseline of top line
|
|
|
|
|
2012-02-02 02:53:35 +01:00
|
|
|
*/
|
2012-03-04 23:25:13 +01:00
|
|
|
for (unsigned n = 0; n < placements.size(); n++)
|
|
|
|
{
|
|
|
|
text_path ¤t_placement = placements[n];
|
2010-08-10 14:19:19 +02:00
|
|
|
|
2012-01-26 14:04:08 +01:00
|
|
|
bool inside = false; /* Part of text is inside rendering region */
|
2010-08-11 04:26:14 +02:00
|
|
|
bool straight = true;
|
2012-03-04 23:25:13 +01:00
|
|
|
char_info_ptr c;
|
2012-01-26 14:04:08 +01:00
|
|
|
double x, y, angle;
|
2010-08-12 18:58:37 +02:00
|
|
|
current_placement.rewind();
|
2010-08-10 14:19:19 +02:00
|
|
|
for (int i = 0; i < current_placement.num_nodes(); ++i) {
|
2012-02-18 13:07:23 +01:00
|
|
|
int cx = current_placement.center.x;
|
|
|
|
int cy = current_placement.center.y;
|
2012-03-04 23:25:13 +01:00
|
|
|
current_placement.vertex(&c, &x, &y, &angle);
|
2010-08-12 18:58:37 +02:00
|
|
|
if (cx+x >= 0 && cx+x < width_ && cy-y >= 0 && cy-y < height_) inside = true;
|
2010-08-11 04:26:14 +02:00
|
|
|
if (angle > 0.001 || angle < -0.001) straight = false;
|
|
|
|
if (inside && !straight) break;
|
2010-07-12 17:27:33 +02:00
|
|
|
}
|
2010-08-10 14:19:19 +02:00
|
|
|
if (!inside) continue;
|
|
|
|
|
2010-08-10 17:31:14 +02:00
|
|
|
current_placement.rewind();
|
2010-08-10 14:19:19 +02:00
|
|
|
|
2010-08-11 04:26:14 +02:00
|
|
|
if (straight) {
|
|
|
|
//Reduce number of polygons
|
|
|
|
double minx = INT_MAX, miny = INT_MAX, maxx = INT_MIN, maxy = INT_MIN;
|
|
|
|
for (int i = 0; i < current_placement.num_nodes(); ++i) {
|
2012-03-04 23:25:13 +01:00
|
|
|
current_placement.vertex(&c, &x, &y, &angle);
|
2012-01-26 14:04:08 +01:00
|
|
|
minx = std::min(minx, x);
|
2012-03-04 23:25:13 +01:00
|
|
|
maxx = std::max(maxx, x+c->width);
|
|
|
|
maxy = std::max(maxy, y+c->ymax);
|
|
|
|
miny = std::min(miny, y+c->ymin);
|
2010-08-11 04:26:14 +02:00
|
|
|
}
|
2012-02-18 13:07:23 +01:00
|
|
|
add_box(box2d<double>(current_placement.center.x+minx,
|
|
|
|
current_placement.center.y-miny,
|
|
|
|
current_placement.center.x+maxx,
|
|
|
|
current_placement.center.y-maxy), feature, t, properties);
|
2010-08-11 04:26:14 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
write_feature_header("MultiPolygon");
|
|
|
|
*f_ << "[";
|
2010-08-10 14:19:19 +02:00
|
|
|
for (int i = 0; i < current_placement.num_nodes(); ++i) {
|
2012-03-04 23:25:13 +01:00
|
|
|
current_placement.vertex(&c, &x, &y, &angle);
|
|
|
|
if (c->c == ' ') continue;
|
|
|
|
*f_ << ",";
|
2010-08-10 14:19:19 +02:00
|
|
|
|
2010-08-10 17:31:14 +02:00
|
|
|
double x0, y0, x1, y1, x2, y2, x3, y3;
|
2010-08-11 04:26:14 +02:00
|
|
|
double sina = sin(angle);
|
|
|
|
double cosa = cos(angle);
|
2012-03-04 23:25:13 +01:00
|
|
|
x0 = current_placement.center.x + x - sina*c->ymin;
|
|
|
|
y0 = current_placement.center.y - y - cosa*c->ymin;
|
|
|
|
x1 = x0 + c->width * cosa;
|
|
|
|
y1 = y0 - c->width * sina;
|
|
|
|
x2 = x0 + (c->width * cosa - c->height() * sina);
|
|
|
|
y2 = y0 - (c->width * sina + c->height() * cosa);
|
|
|
|
x3 = x0 - c->height() * sina;
|
|
|
|
y3 = y0 - c->height() * cosa;
|
2010-08-10 14:19:19 +02:00
|
|
|
|
|
|
|
*f_ << "\n [[";
|
|
|
|
write_point(t, x0, y0);
|
|
|
|
write_point(t, x1, y1);
|
|
|
|
write_point(t, x2, y2);
|
|
|
|
write_point(t, x3, y3, true);
|
|
|
|
*f_ << "]]";
|
|
|
|
}
|
|
|
|
*f_ << "]";
|
|
|
|
write_properties(feature, properties);
|
2010-07-12 17:27:33 +02:00
|
|
|
}
|
2010-07-06 02:37:05 +02:00
|
|
|
}
|
|
|
|
|
2010-08-12 21:12:15 +02:00
|
|
|
void metawriter_json_stream::add_polygon(path_type & path,
|
2012-02-02 02:53:35 +01:00
|
|
|
Feature const& feature,
|
|
|
|
CoordTransform const& t,
|
|
|
|
metawriter_properties const& properties)
|
2010-08-12 21:12:15 +02:00
|
|
|
{
|
|
|
|
write_feature_header("Polygon");
|
2010-08-12 23:39:29 +02:00
|
|
|
write_line_polygon(path, t, true);
|
|
|
|
write_properties(feature, properties);
|
|
|
|
}
|
2010-08-12 21:12:15 +02:00
|
|
|
|
2010-08-12 23:39:29 +02:00
|
|
|
void metawriter_json_stream::add_line(path_type & path,
|
2012-02-02 02:53:35 +01:00
|
|
|
Feature const& feature,
|
|
|
|
CoordTransform const& t,
|
|
|
|
metawriter_properties const& properties)
|
2010-08-12 23:39:29 +02:00
|
|
|
{
|
|
|
|
write_feature_header("MultiLineString");
|
|
|
|
write_line_polygon(path, t, false);
|
|
|
|
write_properties(feature, properties);
|
|
|
|
}
|
|
|
|
|
2011-04-04 06:35:28 +02:00
|
|
|
void metawriter_json_stream::write_line_polygon(path_type & path, CoordTransform const& t, bool /*polygon*/){
|
2010-08-12 21:12:15 +02:00
|
|
|
*f_ << " [";
|
|
|
|
double x, y, last_x=0.0, last_y=0.0;
|
|
|
|
unsigned cmd, last_cmd = SEG_END;
|
|
|
|
path.rewind(0);
|
|
|
|
|
|
|
|
int polygon_count = 0;
|
|
|
|
while ((cmd = path.vertex(&x, &y)) != SEG_END) {
|
|
|
|
if (cmd == SEG_LINETO) {
|
|
|
|
if (last_cmd == SEG_MOVETO) {
|
2010-08-12 23:39:29 +02:00
|
|
|
//Start new polygon/line
|
2010-08-12 21:12:15 +02:00
|
|
|
if (polygon_count++) *f_ << "], ";
|
|
|
|
*f_ << "[";
|
|
|
|
write_point(t, last_x, last_y, true);
|
|
|
|
}
|
|
|
|
*f_ << ",";
|
|
|
|
write_point(t, x, y, true);
|
|
|
|
}
|
|
|
|
last_x = x;
|
|
|
|
last_y = y;
|
|
|
|
last_cmd = cmd;
|
|
|
|
}
|
|
|
|
*f_ << "]]";
|
|
|
|
}
|
|
|
|
|
2010-08-10 14:19:19 +02:00
|
|
|
|
2010-08-02 14:14:27 +02:00
|
|
|
void metawriter_json_stream::set_map_srs(projection const& input_srs_)
|
|
|
|
{
|
|
|
|
if (trans_) delete trans_;
|
|
|
|
trans_ = new proj_transform(input_srs_, output_srs_);
|
|
|
|
}
|
|
|
|
|
2010-07-26 00:41:18 +02:00
|
|
|
|
|
|
|
/********************************************************************************************/
|
|
|
|
|
|
|
|
metawriter_json::metawriter_json(metawriter_properties dflt_properties, path_expression_ptr fn)
|
|
|
|
: metawriter_json_stream(dflt_properties), fn_(fn) {}
|
|
|
|
|
|
|
|
|
|
|
|
void metawriter_json::start(metawriter_property_map const& properties)
|
|
|
|
{
|
2012-01-17 19:33:01 +01:00
|
|
|
filename_ = path_processor<metawriter_property_map>::evaluate(*fn_, properties);
|
2012-04-08 02:20:56 +02:00
|
|
|
|
2012-04-09 21:41:56 +02:00
|
|
|
MAPNIK_LOG_DEBUG(metawriter) << "metawriter_json: Filename=" << filename_;
|
2012-04-08 02:20:56 +02:00
|
|
|
|
2010-07-26 00:41:18 +02:00
|
|
|
metawriter_json_stream::start(properties);
|
|
|
|
}
|
|
|
|
|
2010-08-02 03:35:18 +02:00
|
|
|
void metawriter_json::write_header()
|
|
|
|
{
|
|
|
|
f_.open(filename_.c_str(), std::fstream::out | std::fstream::trunc);
|
2012-06-01 13:19:42 +02:00
|
|
|
if (f_.fail())
|
|
|
|
{
|
|
|
|
MAPNIK_LOG_DEBUG(metawriter) << "metawriter_json: Failed to open file " << filename_;
|
|
|
|
}
|
2010-08-02 03:35:18 +02:00
|
|
|
set_stream(&f_);
|
|
|
|
metawriter_json_stream::write_header();
|
|
|
|
}
|
|
|
|
|
2010-07-26 00:41:18 +02:00
|
|
|
|
|
|
|
void metawriter_json::stop()
|
|
|
|
{
|
|
|
|
metawriter_json_stream::stop();
|
2012-04-09 21:41:56 +02:00
|
|
|
if (f_.is_open())
|
|
|
|
{
|
2010-07-29 18:49:47 +02:00
|
|
|
f_.close();
|
2010-07-12 17:27:33 +02:00
|
|
|
}
|
2012-04-09 21:41:56 +02:00
|
|
|
else if (count_ >= STARTED)
|
|
|
|
{
|
|
|
|
MAPNIK_LOG_DEBUG(metawriter) << "metawriter_json: File not open when stopping";
|
2010-07-29 18:49:47 +02:00
|
|
|
}
|
2010-07-12 17:27:33 +02:00
|
|
|
}
|
2010-07-29 18:49:47 +02:00
|
|
|
|
2010-08-02 02:37:15 +02:00
|
|
|
void metawriter_json::set_filename(path_expression_ptr fn)
|
|
|
|
{
|
|
|
|
fn_ = fn;
|
|
|
|
}
|
|
|
|
|
2010-10-05 22:13:03 +02:00
|
|
|
path_expression_ptr metawriter_json::get_filename() const
|
|
|
|
{
|
2012-02-02 02:53:35 +01:00
|
|
|
return fn_;
|
2010-10-05 22:13:03 +02:00
|
|
|
}
|
2010-08-02 02:37:15 +02:00
|
|
|
|
2011-04-01 08:24:57 +02:00
|
|
|
}
|