mapnik/plugins/input/osm/osm.h

134 lines
3.8 KiB
C
Raw Normal View History

2011-10-22 16:04:05 +02:00
/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2011 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
*
*****************************************************************************/
2008-03-01 12:49:37 +01:00
#ifndef OSM_H
#define OSM_H
#include <vector>
#include <string>
#include <map>
#include <set>
#include <utility>
2008-03-01 12:49:37 +01:00
struct bounds
{
2011-10-22 16:04:05 +02:00
double w, s, e, n;
bounds() { w = -180; s = -90; e = 180; n = 90; }
bounds(double w, double s, double e, double n)
{
this->w = w;
this->s = s;
this->e = e;
this->n = n;
}
};
class polygon_types
{
public:
2011-10-22 16:04:05 +02:00
std::vector<std::pair<std::string, std::string> > ptypes;
polygon_types()
{
2011-10-22 16:04:05 +02:00
ptypes.push_back(std::pair<std::string, std::string>("natural", "wood"));
ptypes.push_back(std::pair<std::string, std::string>("natural", "water"));
ptypes.push_back(std::pair<std::string, std::string>("natural", "heath"));
ptypes.push_back(std::pair<std::string, std::string>("natural", "marsh"));
ptypes.push_back(std::pair<std::string, std::string>("military", "danger_area"));
ptypes.push_back(std::pair<std::string, std::string>("landuse","forest"));
ptypes.push_back(std::pair<std::string, std::string>("landuse","industrial"));
}
2008-03-01 12:49:37 +01:00
};
struct osm_item
{
long id;
2011-10-22 16:04:05 +02:00
std::map<std::string, std::string> keyvals;
virtual std::string to_string();
2011-10-22 16:04:05 +02:00
virtual ~osm_item() {}
2008-03-01 12:49:37 +01:00
};
2011-10-22 16:04:05 +02:00
struct osm_node : public osm_item
2008-03-01 12:49:37 +01:00
{
double lat, lon;
std::string to_string();
2008-03-01 12:49:37 +01:00
};
2011-10-22 16:04:05 +02:00
struct osm_way : public osm_item
2008-03-01 12:49:37 +01:00
{
std::vector<osm_node*> nodes;
std::string to_string();
bounds get_bounds();
bool is_polygon();
static polygon_types ptypes;
2008-03-01 12:49:37 +01:00
};
class osm_dataset
{
public:
2011-10-22 16:04:05 +02:00
osm_dataset()
{
node_i = nodes.begin();
way_i = ways.begin();
next_item_mode = Node;
}
osm_dataset(const char* name)
{
node_i = nodes.begin();
way_i = ways.begin();
next_item_mode = Node;
load(name);
}
~osm_dataset();
2011-10-22 16:04:05 +02:00
2012-09-03 19:27:48 +02:00
bool load(const char* name, std::string const& parser = "libxml2");
bool load_from_url(std::string const&,
std::string const&,
std::string const& parser = "libxml2");
void clear();
void add_node(osm_node* n) { nodes.push_back(n); }
void add_way(osm_way* w) { ways.push_back(w); }
std::string to_string();
bounds get_bounds();
std::set<std::string> get_keys();
2011-10-22 16:04:05 +02:00
void rewind_nodes() { node_i = nodes.begin(); }
void rewind_ways() { way_i = ways.begin(); }
void rewind() { rewind_nodes(); rewind_ways(); next_item_mode = Node; }
osm_node * next_node();
osm_way * next_way();
osm_item * next_item();
2011-10-22 16:04:05 +02:00
bool current_item_is_node() { return next_item_mode == Node; }
bool current_item_is_way() { return next_item_mode == Way; }
private:
int next_item_mode;
enum { Node, Way };
std::vector<osm_node*>::iterator node_i;
std::vector<osm_way*>::iterator way_i;
std::vector<osm_node*> nodes;
std::vector<osm_way*> ways;
2008-03-01 12:49:37 +01:00
};
#endif // OSM_H