2007-09-16 13:23:51 +02:00
|
|
|
|
2006-03-31 12:32:02 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
* Copyright (C) 2006 Artem Pavlenko
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2006-03-31 12:32:02 +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,
|
2005-06-14 17:06:59 +02:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2006-03-31 12:32:02 +02:00
|
|
|
* 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
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
*****************************************************************************/
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2011-05-17 01:41:34 +02:00
|
|
|
// mapnik
|
|
|
|
#include <mapnik/feature_factory.hpp>
|
|
|
|
|
2011-08-05 23:20:21 +02:00
|
|
|
// boost
|
|
|
|
#include <boost/algorithm/string.hpp>
|
|
|
|
|
2011-05-17 01:41:34 +02:00
|
|
|
// stl
|
2005-06-14 17:06:59 +02:00
|
|
|
#include <iostream>
|
2011-05-17 01:41:34 +02:00
|
|
|
|
2006-10-04 13:22:18 +02:00
|
|
|
#include "shape_featureset.hpp"
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2011-05-17 01:41:34 +02:00
|
|
|
using mapnik::geometry_type;
|
|
|
|
using mapnik::feature_factory;
|
|
|
|
|
2005-06-14 17:06:59 +02:00
|
|
|
template <typename filterT>
|
|
|
|
shape_featureset<filterT>::shape_featureset(const filterT& filter,
|
2011-08-05 23:20:21 +02:00
|
|
|
const std::string& shape_name,
|
2006-11-19 18:13:33 +01:00
|
|
|
const std::set<std::string>& attribute_names,
|
2007-02-14 22:55:04 +01:00
|
|
|
std::string const& encoding,
|
2006-11-19 18:13:33 +01:00
|
|
|
long file_length )
|
2010-01-20 16:25:58 +01:00
|
|
|
: filter_(filter),
|
2011-05-19 23:31:25 +02:00
|
|
|
//shape_type_(shape_io::shape_null),
|
2011-08-05 23:20:21 +02:00
|
|
|
shape_(shape_name, false),
|
2010-01-20 16:25:58 +01:00
|
|
|
query_ext_(),
|
|
|
|
tr_(new transcoder(encoding)),
|
|
|
|
file_length_(file_length),
|
|
|
|
count_(0)
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2010-01-20 16:25:58 +01:00
|
|
|
shape_.shp().skip(100);
|
|
|
|
//attributes
|
|
|
|
typename std::set<std::string>::const_iterator pos=attribute_names.begin();
|
|
|
|
while (pos!=attribute_names.end())
|
|
|
|
{
|
2010-09-14 19:59:50 +02:00
|
|
|
bool found_name = false;
|
2010-01-29 02:54:15 +01:00
|
|
|
for (int i=0;i<shape_.dbf().num_fields();++i)
|
|
|
|
{
|
|
|
|
if (shape_.dbf().descriptor(i).name_ == *pos)
|
|
|
|
{
|
2010-07-25 21:55:47 +02:00
|
|
|
attr_ids_.push_back(i);
|
2010-09-14 19:59:50 +02:00
|
|
|
found_name = true;
|
2010-07-25 21:55:47 +02:00
|
|
|
break;
|
2010-01-29 02:54:15 +01:00
|
|
|
}
|
|
|
|
}
|
2010-09-14 19:59:50 +02:00
|
|
|
if (!found_name)
|
|
|
|
{
|
|
|
|
std::ostringstream s;
|
|
|
|
|
2011-08-05 23:20:21 +02:00
|
|
|
s << "no attribute '" << *pos << "' in '"
|
|
|
|
<< shape_name << "'. Valid attributes are: ";
|
|
|
|
std::vector<std::string> list;
|
2010-09-14 19:59:50 +02:00
|
|
|
for (int i=0;i<shape_.dbf().num_fields();++i)
|
|
|
|
{
|
2011-08-05 23:20:21 +02:00
|
|
|
list.push_back(shape_.dbf().descriptor(i).name_);
|
2010-09-14 19:59:50 +02:00
|
|
|
}
|
2011-08-05 23:20:21 +02:00
|
|
|
s << boost::algorithm::join(list, ",") << ".";
|
2010-09-14 19:59:50 +02:00
|
|
|
|
2010-11-29 10:15:43 +01:00
|
|
|
throw mapnik::datasource_exception( "Shape Plugin: " + s.str() );
|
2010-09-14 19:59:50 +02:00
|
|
|
}
|
2010-01-29 02:54:15 +01:00
|
|
|
++pos;
|
2010-01-20 16:25:58 +01:00
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <typename filterT>
|
2005-09-08 15:09:04 +02:00
|
|
|
feature_ptr shape_featureset<filterT>::next()
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2010-01-20 16:25:58 +01:00
|
|
|
std::streampos pos=shape_.shp().pos();
|
2010-01-20 16:26:14 +01:00
|
|
|
|
2010-10-14 21:47:54 +02:00
|
|
|
if (pos < std::streampos(file_length_ * 2))
|
2010-01-20 16:25:58 +01:00
|
|
|
{
|
2010-01-29 02:54:15 +01:00
|
|
|
shape_.move_to(pos);
|
|
|
|
int type=shape_.type();
|
2011-05-17 01:41:34 +02:00
|
|
|
feature_ptr feature(feature_factory::create(shape_.id_));
|
2010-01-29 02:54:15 +01:00
|
|
|
if (type == shape_io::shape_point)
|
|
|
|
{
|
|
|
|
double x=shape_.shp().read_double();
|
|
|
|
double y=shape_.shp().read_double();
|
2010-11-03 14:19:15 +01:00
|
|
|
geometry_type * point = new geometry_type(mapnik::Point);
|
2010-01-29 02:54:15 +01:00
|
|
|
point->move_to(x,y);
|
|
|
|
feature->add_geometry(point);
|
|
|
|
++count_;
|
|
|
|
}
|
|
|
|
else if (type == shape_io::shape_pointm)
|
|
|
|
{
|
|
|
|
double x=shape_.shp().read_double();
|
|
|
|
double y=shape_.shp().read_double();
|
|
|
|
shape_.shp().skip(8); //m
|
2010-11-03 14:19:15 +01:00
|
|
|
geometry_type * point = new geometry_type(mapnik::Point);
|
2010-01-29 02:54:15 +01:00
|
|
|
point->move_to(x,y);
|
|
|
|
feature->add_geometry(point);
|
|
|
|
++count_;
|
|
|
|
}
|
|
|
|
else if (type == shape_io::shape_pointz)
|
|
|
|
{
|
|
|
|
double x=shape_.shp().read_double();
|
|
|
|
double y=shape_.shp().read_double();
|
2010-01-29 02:59:50 +01:00
|
|
|
// skip z
|
|
|
|
shape_.shp().skip(8);
|
|
|
|
|
|
|
|
//skip m if exists
|
|
|
|
if ( shape_.reclength_ == 8 + 36)
|
|
|
|
{
|
|
|
|
shape_.shp().skip(8);
|
|
|
|
}
|
2011-05-17 01:41:34 +02:00
|
|
|
geometry_type * point = new geometry_type(mapnik::Point);
|
2010-01-29 02:54:15 +01:00
|
|
|
point->move_to(x,y);
|
|
|
|
feature->add_geometry(point);
|
|
|
|
++count_;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
while (!filter_.pass(shape_.current_extent()))
|
|
|
|
{
|
|
|
|
if (!shape_.shp().is_eof())
|
|
|
|
{
|
2010-07-25 21:55:47 +02:00
|
|
|
std::streampos pos = shape_.shp().pos();
|
|
|
|
if (shape_.type() != shape_io::shape_null)
|
|
|
|
{
|
2010-07-25 22:12:43 +02:00
|
|
|
pos += std::streampos(2 * shape_.reclength_ - 36);
|
2010-07-25 21:55:47 +02:00
|
|
|
}
|
|
|
|
shape_.move_to(pos);
|
2010-01-29 02:54:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return feature_ptr();
|
|
|
|
}
|
2007-02-14 20:54:39 +01:00
|
|
|
}
|
2010-01-29 02:54:15 +01:00
|
|
|
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case shape_io::shape_multipoint:
|
|
|
|
{
|
|
|
|
int num_points = shape_.shp().read_ndr_integer();
|
|
|
|
for (int i=0; i< num_points;++i)
|
|
|
|
{
|
|
|
|
double x=shape_.shp().read_double();
|
|
|
|
double y=shape_.shp().read_double();
|
2010-11-03 14:19:15 +01:00
|
|
|
geometry_type * point = new geometry_type(mapnik::Point);
|
2010-01-29 02:54:15 +01:00
|
|
|
point->move_to(x,y);
|
|
|
|
feature->add_geometry(point);
|
|
|
|
}
|
|
|
|
++count_;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case shape_io::shape_multipointm:
|
|
|
|
{
|
|
|
|
int num_points = shape_.shp().read_ndr_integer();
|
|
|
|
for (int i=0; i< num_points;++i)
|
|
|
|
{
|
|
|
|
double x=shape_.shp().read_double();
|
|
|
|
double y=shape_.shp().read_double();
|
2010-11-03 14:19:15 +01:00
|
|
|
geometry_type * point = new geometry_type(mapnik::Point);
|
2010-01-29 02:54:15 +01:00
|
|
|
point->move_to(x,y);
|
|
|
|
feature->add_geometry(point);
|
|
|
|
}
|
|
|
|
|
|
|
|
// skip m
|
|
|
|
shape_.shp().skip(2*8 + 8*num_points);
|
|
|
|
++count_;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case shape_io::shape_multipointz:
|
|
|
|
{
|
|
|
|
unsigned num_points = shape_.shp().read_ndr_integer();
|
|
|
|
for (unsigned i=0; i< num_points;++i)
|
|
|
|
{
|
|
|
|
double x=shape_.shp().read_double();
|
|
|
|
double y=shape_.shp().read_double();
|
2010-11-03 14:19:15 +01:00
|
|
|
geometry_type * point = new geometry_type(mapnik::Point);
|
2010-01-29 02:54:15 +01:00
|
|
|
point->move_to(x,y);
|
|
|
|
feature->add_geometry(point);
|
|
|
|
}
|
|
|
|
|
|
|
|
// skip z
|
|
|
|
shape_.shp().skip(2*8 + 8*num_points);
|
|
|
|
|
|
|
|
// check if we have measure data
|
|
|
|
|
|
|
|
if ( shape_.reclength_ == num_points * 16 + 36)
|
|
|
|
{
|
|
|
|
// skip m
|
|
|
|
shape_.shp().skip(2*8 + 8*num_points);
|
|
|
|
}
|
|
|
|
++count_;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case shape_io::shape_polyline:
|
|
|
|
{
|
2010-11-03 14:19:15 +01:00
|
|
|
geometry_type * line = shape_.read_polyline();
|
2010-01-29 02:54:15 +01:00
|
|
|
feature->add_geometry(line);
|
|
|
|
++count_;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case shape_io::shape_polylinem:
|
|
|
|
{
|
2010-11-03 14:19:15 +01:00
|
|
|
geometry_type * line = shape_.read_polylinem();
|
2010-01-29 02:54:15 +01:00
|
|
|
feature->add_geometry(line);
|
|
|
|
++count_;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case shape_io::shape_polylinez:
|
|
|
|
{
|
2010-11-03 14:19:15 +01:00
|
|
|
geometry_type * line = shape_.read_polylinez();
|
2010-01-29 02:54:15 +01:00
|
|
|
feature->add_geometry(line);
|
|
|
|
++count_;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case shape_io::shape_polygon:
|
|
|
|
{
|
2010-11-03 14:19:15 +01:00
|
|
|
geometry_type * poly = shape_.read_polygon();
|
2010-01-29 02:54:15 +01:00
|
|
|
feature->add_geometry(poly);
|
|
|
|
++count_;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case shape_io::shape_polygonm:
|
|
|
|
{
|
2010-11-03 14:19:15 +01:00
|
|
|
geometry_type * poly = shape_.read_polygonm();
|
2010-01-29 02:54:15 +01:00
|
|
|
feature->add_geometry(poly);
|
|
|
|
++count_;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case shape_io::shape_polygonz:
|
|
|
|
{
|
2010-11-03 14:19:15 +01:00
|
|
|
geometry_type * poly = shape_.read_polygonz();
|
2010-01-29 02:54:15 +01:00
|
|
|
feature->add_geometry(poly);
|
|
|
|
++count_;
|
|
|
|
break;
|
|
|
|
}
|
2007-02-14 20:54:39 +01:00
|
|
|
}
|
2010-01-29 02:54:15 +01:00
|
|
|
}
|
2011-05-20 03:41:28 +02:00
|
|
|
|
|
|
|
feature->set_id(shape_.id_);
|
2010-01-29 02:54:15 +01:00
|
|
|
if (attr_ids_.size())
|
|
|
|
{
|
|
|
|
shape_.dbf().move_to(shape_.id_);
|
|
|
|
std::vector<int>::const_iterator pos=attr_ids_.begin();
|
|
|
|
std::vector<int>::const_iterator end=attr_ids_.end();
|
|
|
|
|
|
|
|
while (pos!=end)
|
|
|
|
{
|
2010-07-25 21:55:47 +02:00
|
|
|
try
|
|
|
|
{
|
|
|
|
shape_.dbf().add_attribute(*pos,*tr_,*feature);//TODO optimize!!!
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
2010-11-19 00:46:01 +01:00
|
|
|
std::clog << "Shape Plugin: error processing attributes " << std::endl;
|
2010-07-25 21:55:47 +02:00
|
|
|
}
|
|
|
|
++pos;
|
2010-01-29 02:54:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return feature;
|
2010-01-20 16:25:58 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-11-19 18:13:33 +01:00
|
|
|
#ifdef MAPNIK_DEBUG
|
2010-11-19 00:46:01 +01:00
|
|
|
std::clog << "Shape Plugin: total shapes read=" << count_ << std::endl;
|
2006-11-19 18:13:33 +01:00
|
|
|
#endif
|
2010-07-25 21:55:47 +02:00
|
|
|
return feature_ptr();
|
2010-01-20 16:25:58 +01:00
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename filterT>
|
|
|
|
shape_featureset<filterT>::~shape_featureset() {}
|
|
|
|
|
2007-03-16 11:11:37 +01:00
|
|
|
template class shape_featureset<mapnik::filter_in_box>;
|
|
|
|
template class shape_featureset<mapnik::filter_at_point>;
|
1. hit_test implementation for geometry objects:
bool hit_test(double x, double y, double tol);
2. added image_view(unsigned x, unsigned y, unsigned width, unsigned height)
allowing to select region from image data e.g (in Python):
im = Image(2048,2048)
view = im.view(0,0,256,256)
save_to_file(filename,type, view)
3. changed envelope method to return vy value in datasource classes
4. features_at_point impl for shape and postgis plug-ins
2006-11-25 12:02:59 +01:00
|
|
|
|
2007-02-14 20:54:39 +01:00
|
|
|
|