2009-03-22 23:26:42 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
//$Id$
|
|
|
|
|
2011-05-17 01:41:34 +02:00
|
|
|
// mapnik
|
2009-03-22 23:26:42 +01:00
|
|
|
#include <mapnik/global.hpp>
|
|
|
|
#include <mapnik/datasource.hpp>
|
2009-12-16 21:02:06 +01:00
|
|
|
#include <mapnik/box2d.hpp>
|
2009-03-22 23:26:42 +01:00
|
|
|
#include <mapnik/geometry.hpp>
|
|
|
|
#include <mapnik/feature.hpp>
|
|
|
|
#include <mapnik/feature_layer_desc.hpp>
|
|
|
|
#include <mapnik/wkb.hpp>
|
|
|
|
#include <mapnik/unicode.hpp>
|
2011-05-17 01:41:34 +02:00
|
|
|
#include <mapnik/feature_factory.hpp>
|
2009-03-22 23:26:42 +01:00
|
|
|
|
|
|
|
#include "kismet_featureset.hpp"
|
|
|
|
|
2010-11-18 23:48:56 +01:00
|
|
|
using mapnik::Feature;
|
|
|
|
using mapnik::feature_ptr;
|
|
|
|
using mapnik::geometry_type;
|
|
|
|
using mapnik::geometry_utils;
|
|
|
|
using mapnik::transcoder;
|
2011-05-17 01:41:34 +02:00
|
|
|
using mapnik::feature_factory;
|
2009-03-22 23:26:42 +01:00
|
|
|
|
|
|
|
kismet_featureset::kismet_featureset(const std::list<kismet_network_data> &knd_list,
|
|
|
|
std::string const& encoding)
|
2010-11-18 23:48:56 +01:00
|
|
|
: knd_list_(knd_list),
|
|
|
|
tr_(new transcoder(encoding)),
|
2011-04-29 22:00:45 +02:00
|
|
|
feature_id_(1),
|
2010-11-18 23:48:56 +01:00
|
|
|
knd_list_it(knd_list_.begin ()),
|
|
|
|
source_("+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs")
|
2009-03-22 23:26:42 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-11-18 23:48:56 +01:00
|
|
|
kismet_featureset::~kismet_featureset()
|
|
|
|
{
|
|
|
|
}
|
2009-03-22 23:26:42 +01:00
|
|
|
|
|
|
|
feature_ptr kismet_featureset::next()
|
|
|
|
{
|
|
|
|
if (knd_list_it != knd_list_.end ())
|
|
|
|
{
|
2010-11-18 23:48:56 +01:00
|
|
|
const kismet_network_data& knd = *knd_list_it;
|
|
|
|
const std::string key = "internet_access";
|
|
|
|
|
|
|
|
std::string value;
|
|
|
|
if (knd.crypt_ == crypt_none)
|
|
|
|
{
|
|
|
|
value = "wlan_uncrypted";
|
|
|
|
}
|
|
|
|
else if (knd.crypt_ == crypt_wep)
|
|
|
|
{
|
|
|
|
value = "wlan_wep";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
value = "wlan_crypted";
|
|
|
|
}
|
|
|
|
|
2011-05-17 01:41:34 +02:00
|
|
|
feature_ptr feature(feature_factory::create(feature_id_));
|
2011-04-29 22:00:45 +02:00
|
|
|
++feature_id_;
|
2009-03-24 21:55:18 +01:00
|
|
|
|
2010-11-18 23:48:56 +01:00
|
|
|
geometry_type* pt = new geometry_type(mapnik::Point);
|
|
|
|
pt->move_to(knd.bestlon_, knd.bestlat_);
|
|
|
|
feature->add_geometry(pt);
|
2010-11-03 14:19:15 +01:00
|
|
|
|
2010-11-18 23:48:56 +01:00
|
|
|
boost::put(*feature, key, tr_->transcode(value.c_str()));
|
2009-03-22 23:26:42 +01:00
|
|
|
|
2010-11-18 23:48:56 +01:00
|
|
|
++knd_list_it;
|
2009-03-22 23:26:42 +01:00
|
|
|
|
2010-11-18 23:48:56 +01:00
|
|
|
return feature;
|
2009-03-22 23:26:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return feature_ptr();
|
|
|
|
}
|
2009-03-27 22:38:10 +01:00
|
|
|
|