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
|
|
|
|
|
|
|
#include <iostream>
|
2006-10-04 13:22:18 +02:00
|
|
|
#include "shape_featureset.hpp"
|
2005-06-14 17:06:59 +02:00
|
|
|
|
|
|
|
template <typename filterT>
|
|
|
|
shape_featureset<filterT>::shape_featureset(const filterT& filter,
|
2006-11-19 18:13:33 +01:00
|
|
|
const std::string& shape_file,
|
|
|
|
const std::set<std::string>& attribute_names,
|
|
|
|
long file_length )
|
2005-06-14 17:06:59 +02:00
|
|
|
: filter_(filter),
|
|
|
|
shape_type_(shape_io::shape_null),
|
|
|
|
shape_(shape_file),
|
|
|
|
query_ext_(),
|
|
|
|
file_length_(file_length),
|
|
|
|
count_(0)
|
|
|
|
{
|
|
|
|
shape_.shp().skip(100);
|
|
|
|
//attributes
|
|
|
|
typename std::set<std::string>::const_iterator pos=attribute_names.begin();
|
|
|
|
while (pos!=attribute_names.end())
|
|
|
|
{
|
2006-11-19 18:13:33 +01:00
|
|
|
for (int i=0;i<shape_.dbf().num_fields();++i)
|
|
|
|
{
|
|
|
|
if (shape_.dbf().descriptor(i).name_ == *pos)
|
|
|
|
{
|
|
|
|
attr_ids_.push_back(i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
++pos;
|
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
|
|
|
{
|
|
|
|
std::streampos pos=shape_.shp().pos();
|
|
|
|
|
|
|
|
if (pos < std::streampos(file_length_ * 2))
|
|
|
|
{
|
|
|
|
shape_.move_to(pos);
|
2006-11-19 18:13:33 +01:00
|
|
|
int type=shape_.type();
|
|
|
|
feature_ptr feature(new Feature(shape_.id_));
|
|
|
|
if (type == shape_io::shape_point)
|
|
|
|
{
|
|
|
|
double x=shape_.shp().read_double();
|
|
|
|
double y=shape_.shp().read_double();
|
|
|
|
geometry_ptr point(new point_impl(-1));
|
|
|
|
point->move_to(x,y);
|
|
|
|
feature->set_geometry(point);
|
|
|
|
++count_;
|
|
|
|
}
|
|
|
|
else if (type == shape_io::shape_pointm)
|
|
|
|
{
|
|
|
|
double x=shape_.shp().read_double();
|
|
|
|
double y=shape_.shp().read_double();
|
|
|
|
shape_.shp().read_double();//m
|
|
|
|
geometry_ptr point(new point_impl(-1));
|
|
|
|
point->move_to(x,y);
|
|
|
|
feature->set_geometry(point);
|
|
|
|
++count_;
|
|
|
|
}
|
|
|
|
else if (type == shape_io::shape_pointz)
|
|
|
|
{
|
|
|
|
double x=shape_.shp().read_double();
|
|
|
|
double y=shape_.shp().read_double();
|
|
|
|
shape_.shp().read_double();//z
|
|
|
|
shape_.shp().read_double();//m
|
|
|
|
geometry_ptr point(new point_impl(-1));
|
|
|
|
point->move_to(x,y);
|
|
|
|
feature->set_geometry(point);
|
|
|
|
++count_;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
while (!filter_.pass(shape_.current_extent()))
|
|
|
|
{
|
|
|
|
unsigned reclen=shape_.reclength_;
|
|
|
|
if (!shape_.shp().is_eof())
|
|
|
|
{
|
|
|
|
long pos = shape_.shp().pos();
|
|
|
|
shape_.move_to(pos + 2 * reclen - 36);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return feature_ptr();
|
2005-10-26 23:37:13 +02:00
|
|
|
|
2006-11-19 18:13:33 +01:00
|
|
|
}
|
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2006-11-19 18:13:33 +01:00
|
|
|
switch (type)
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
|
|
|
|
2006-11-19 18:13:33 +01:00
|
|
|
case shape_io::shape_polyline:
|
|
|
|
{
|
|
|
|
geometry_ptr line = shape_.read_polyline();
|
|
|
|
feature->set_geometry(line);
|
|
|
|
++count_;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case shape_io::shape_polylinem:
|
|
|
|
{
|
|
|
|
geometry_ptr line = shape_.read_polylinem();
|
|
|
|
feature->set_geometry(line);
|
|
|
|
++count_;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case shape_io::shape_polylinez:
|
|
|
|
{
|
|
|
|
geometry_ptr line = shape_.read_polylinez();
|
|
|
|
feature->set_geometry(line);
|
|
|
|
++count_;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case shape_io::shape_polygon:
|
|
|
|
{
|
|
|
|
geometry_ptr poly = shape_.read_polygon();
|
|
|
|
feature->set_geometry(poly);
|
|
|
|
++count_;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case shape_io::shape_polygonm:
|
|
|
|
{
|
|
|
|
geometry_ptr poly = shape_.read_polygonm();
|
|
|
|
feature->set_geometry(poly);
|
|
|
|
++count_;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case shape_io::shape_polygonz:
|
|
|
|
{
|
|
|
|
geometry_ptr poly = shape_.read_polygonz();
|
|
|
|
feature->set_geometry(poly);
|
|
|
|
++count_;
|
|
|
|
break;
|
|
|
|
}
|
2005-12-23 13:31:54 +01:00
|
|
|
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
2006-11-19 18:13:33 +01:00
|
|
|
}
|
|
|
|
if (attr_ids_.size())
|
|
|
|
{
|
|
|
|
shape_.dbf().move_to(shape_.id_);
|
|
|
|
typename std::vector<int>::const_iterator pos=attr_ids_.begin();
|
|
|
|
while (pos!=attr_ids_.end())
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
shape_.dbf().add_attribute(*pos,*feature);//TODO optimize!!!
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
std::clog << "error processing attributes " << std::endl;
|
|
|
|
}
|
|
|
|
++pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return feature;
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
2005-09-08 15:09:04 +02:00
|
|
|
else
|
|
|
|
{
|
2006-11-19 18:13:33 +01:00
|
|
|
#ifdef MAPNIK_DEBUG
|
|
|
|
std::clog<<" total shapes read="<<count_<<"\n";
|
|
|
|
#endif
|
|
|
|
return feature_ptr();
|
2005-09-08 15:09:04 +02:00
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <typename filterT>
|
|
|
|
shape_featureset<filterT>::~shape_featureset() {}
|
|
|
|
|
|
|
|
template class shape_featureset<filter_in_box>;
|