mapnik/plugins/input/raster/raster_datasource.cpp

91 lines
2.5 KiB
C++
Raw Normal View History

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.
2005-06-14 17:06:59 +02:00
*
2006-03-31 12:32:02 +02:00
* 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
//$Id: raster_datasource.cc 44 2005-04-22 18:53:54Z pavlenko $
2005-09-21 22:27:37 +02:00
#include "raster_datasource.hpp"
#include "image_reader.hpp"
#include "raster_featureset.hpp"
#include "raster_info.hpp"
#include <boost/lexical_cast.hpp>
2005-06-14 17:06:59 +02:00
DATASOURCE_PLUGIN(raster_datasource)
2005-06-14 17:06:59 +02:00
using std::clog;
2005-09-21 22:27:37 +02:00
using std::endl;
using boost::lexical_cast;
using boost::bad_lexical_cast;
raster_datasource::raster_datasource(const parameters& params)
2005-09-21 22:27:37 +02:00
: desc_(params.get("name"))
2005-06-14 17:06:59 +02:00
{
filename_=params.get("file");
format_=params.get("format");
2005-09-21 22:27:37 +02:00
try
{
double lox=lexical_cast<double>(params.get("lox"));
double loy=lexical_cast<double>(params.get("loy"));
double hix=lexical_cast<double>(params.get("hix"));
double hiy=lexical_cast<double>(params.get("hiy"));
extent_.init(lox,loy,hix,hiy);
}
catch (bad_lexical_cast& ex)
{
clog << ex.what() << endl;
2005-09-21 22:27:37 +02:00
}
2005-06-14 17:06:59 +02:00
}
raster_datasource::~raster_datasource()
{
}
int raster_datasource::type() const
{
return datasource::Raster;
}
2005-09-21 22:27:37 +02:00
std::string raster_datasource::name_="raster";
2005-06-14 17:06:59 +02:00
std::string raster_datasource::name()
{
return name_;
}
const mapnik::Envelope<double>& raster_datasource::envelope() const
{
return extent_;
}
2005-09-21 22:27:37 +02:00
layer_descriptor const& raster_datasource::get_descriptor() const
2005-06-14 17:06:59 +02:00
{
2005-09-21 22:27:37 +02:00
return desc_;
2005-06-14 17:06:59 +02:00
}
2005-09-21 22:27:37 +02:00
featureset_ptr raster_datasource::features(query const& q) const
2005-06-14 17:06:59 +02:00
{
2005-09-21 22:27:37 +02:00
raster_info info(filename_,format_,extent_);
2005-06-14 17:06:59 +02:00
single_file_policy policy(info); //todo: handle different policies!
2005-09-21 22:27:37 +02:00
return featureset_ptr(new raster_featureset<single_file_policy>(policy,q));
2005-06-14 17:06:59 +02:00
}