2007-04-25 21:15:38 +02:00
|
|
|
/*****************************************************************************
|
2011-11-14 04:37:50 +01:00
|
|
|
*
|
2007-04-25 21:15:38 +02:00
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2015-06-16 12:49:16 +02:00
|
|
|
* Copyright (C) 2015 Artem Pavlenko
|
2007-04-25 21:15:38 +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,
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef GDAL_DATASOURCE_HPP
|
|
|
|
#define GDAL_DATASOURCE_HPP
|
|
|
|
|
2010-11-14 15:54:28 +01:00
|
|
|
// mapnik
|
2007-04-25 21:15:38 +02:00
|
|
|
#include <mapnik/datasource.hpp>
|
2012-07-25 04:21:55 +02:00
|
|
|
#include <mapnik/params.hpp>
|
|
|
|
#include <mapnik/query.hpp>
|
|
|
|
#include <mapnik/feature.hpp>
|
|
|
|
#include <mapnik/box2d.hpp>
|
|
|
|
#include <mapnik/coord.hpp>
|
|
|
|
#include <mapnik/feature_layer_desc.hpp>
|
2010-11-14 15:54:28 +01:00
|
|
|
|
|
|
|
// boost
|
2012-07-25 04:21:55 +02:00
|
|
|
#include <boost/optional.hpp>
|
|
|
|
|
|
|
|
// stl
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
2010-11-14 15:54:28 +01:00
|
|
|
|
|
|
|
// gdal
|
2007-04-25 21:15:38 +02:00
|
|
|
#include <gdal_priv.h>
|
|
|
|
|
2011-11-14 04:37:50 +01:00
|
|
|
class gdal_datasource : public mapnik::datasource
|
2007-04-25 21:15:38 +02:00
|
|
|
{
|
2011-10-22 02:46:29 +02:00
|
|
|
public:
|
2012-12-17 19:03:07 +01:00
|
|
|
gdal_datasource(mapnik::parameters const& params);
|
2011-10-22 02:46:29 +02:00
|
|
|
virtual ~gdal_datasource();
|
2012-01-17 07:09:46 +01:00
|
|
|
mapnik::datasource::datasource_t type() const;
|
2012-07-21 03:34:41 +02:00
|
|
|
static const char * name();
|
2011-10-22 02:46:29 +02:00
|
|
|
mapnik::featureset_ptr features(mapnik::query const& q) const;
|
2012-09-28 15:12:10 +02:00
|
|
|
mapnik::featureset_ptr features_at_point(mapnik::coord2d const& pt, double tol = 0) const;
|
2011-10-22 02:46:29 +02:00
|
|
|
mapnik::box2d<double> envelope() const;
|
2015-03-24 12:13:31 +01:00
|
|
|
boost::optional<mapnik::datasource_geometry_t> get_geometry_type() const;
|
2011-10-22 02:46:29 +02:00
|
|
|
mapnik::layer_descriptor get_descriptor() const;
|
|
|
|
private:
|
2016-03-03 01:48:07 +01:00
|
|
|
std::unique_ptr<GDALDataset, decltype(&GDALClose)> dataset_;
|
2012-12-17 21:59:15 +01:00
|
|
|
mapnik::box2d<double> extent_;
|
2011-10-22 02:46:29 +02:00
|
|
|
std::string dataset_name_;
|
2012-12-17 21:59:15 +01:00
|
|
|
int band_;
|
2011-10-22 02:46:29 +02:00
|
|
|
mapnik::layer_descriptor desc_;
|
2012-12-17 21:59:15 +01:00
|
|
|
unsigned width_;
|
|
|
|
unsigned height_;
|
|
|
|
double dx_;
|
|
|
|
double dy_;
|
|
|
|
int nbands_;
|
|
|
|
bool shared_dataset_;
|
2012-04-04 01:06:36 +02:00
|
|
|
boost::optional<double> nodata_value_;
|
2014-01-18 04:13:53 +01:00
|
|
|
double nodata_tolerance_;
|
2007-04-25 21:15:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // GDAL_DATASOURCE_HPP
|