2009-01-28 21:16:31 +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$
|
|
|
|
|
|
|
|
#ifndef OGR_DATASOURCE_HPP
|
|
|
|
#define OGR_DATASOURCE_HPP
|
|
|
|
|
2009-01-29 05:20:34 +01:00
|
|
|
// mapnik
|
2009-01-28 21:16:31 +01:00
|
|
|
#include <mapnik/datasource.hpp>
|
2009-01-29 05:20:34 +01:00
|
|
|
#include <mapnik/feature.hpp>
|
|
|
|
#include <mapnik/feature_layer_desc.hpp>
|
2009-01-28 21:16:31 +01:00
|
|
|
|
2009-01-29 05:20:34 +01:00
|
|
|
// boost
|
|
|
|
#include <boost/shared_ptr.hpp>
|
2009-01-28 21:16:31 +01:00
|
|
|
|
2009-01-29 05:20:34 +01:00
|
|
|
// ogr
|
|
|
|
#include <ogrsf_frmts.h>
|
2009-01-28 21:16:31 +01:00
|
|
|
|
2009-01-29 05:20:34 +01:00
|
|
|
class ogr_datasource : public mapnik::datasource
|
2009-01-28 21:16:31 +01:00
|
|
|
{
|
|
|
|
public:
|
2009-01-29 05:20:34 +01:00
|
|
|
ogr_datasource(mapnik::parameters const& params);
|
2009-01-28 21:16:31 +01:00
|
|
|
virtual ~ogr_datasource ();
|
|
|
|
int type() const;
|
|
|
|
static std::string name();
|
2009-01-29 05:20:34 +01:00
|
|
|
mapnik::featureset_ptr features(mapnik::query const& q) const;
|
|
|
|
mapnik::featureset_ptr features_at_point(mapnik::coord2d const& pt) const;
|
|
|
|
mapnik::Envelope<double> envelope() const;
|
|
|
|
mapnik::layer_descriptor get_descriptor() const;
|
2009-01-28 21:16:31 +01:00
|
|
|
private:
|
2009-01-29 05:20:34 +01:00
|
|
|
mapnik::Envelope<double> extent_;
|
|
|
|
int type_;
|
2009-03-30 22:19:57 +02:00
|
|
|
std::string dataset_name_;
|
2009-05-12 00:06:48 +02:00
|
|
|
std::string index_name_;
|
2009-01-28 21:16:31 +01:00
|
|
|
OGRDataSource* dataset_;
|
|
|
|
OGRLayer* layer_;
|
2009-01-29 17:20:30 +01:00
|
|
|
std::string layerName_;
|
2009-01-29 05:20:34 +01:00
|
|
|
mapnik::layer_descriptor desc_;
|
|
|
|
bool multiple_geometries_;
|
2009-05-12 00:06:48 +02:00
|
|
|
bool indexed_;
|
2009-01-28 21:16:31 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // OGR_DATASOURCE_HPP
|