2006-03-31 12:32:02 +02:00
|
|
|
/*****************************************************************************
|
2011-11-14 04:37:50 +01: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
|
|
|
*
|
2017-05-05 13:02:01 +02:00
|
|
|
* Copyright (C) 2017 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
|
|
|
|
2009-04-10 14:05:31 +02:00
|
|
|
#ifndef RASTER_INFO_HPP
|
|
|
|
#define RASTER_INFO_HPP
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2005-09-21 22:27:37 +02:00
|
|
|
#include "raster_datasource.hpp"
|
2011-10-23 16:31:25 +02:00
|
|
|
|
|
|
|
// stl
|
2005-06-14 17:06:59 +02:00
|
|
|
#include <string>
|
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
using mapnik::box2d;
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2005-09-21 22:27:37 +02:00
|
|
|
class raster_info
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2009-04-10 14:05:31 +02:00
|
|
|
public:
|
2012-09-03 19:27:48 +02:00
|
|
|
raster_info(std::string const& file,
|
|
|
|
std::string const& format,
|
2011-11-14 04:37:50 +01:00
|
|
|
const box2d<double>& extent,
|
|
|
|
unsigned width,
|
|
|
|
unsigned height);
|
|
|
|
raster_info(const raster_info& rhs);
|
|
|
|
raster_info& operator=(const raster_info& rhs);
|
|
|
|
inline box2d<double> const& envelope() const {return extent_;}
|
|
|
|
inline std::string const& file() const { return file_;}
|
|
|
|
inline std::string const& format() const {return format_;}
|
|
|
|
inline unsigned width() const { return width_;}
|
|
|
|
inline unsigned height() const { return height_;}
|
|
|
|
|
2005-06-14 17:06:59 +02:00
|
|
|
private:
|
2013-03-14 10:34:52 +01:00
|
|
|
void swap(raster_info& other);
|
2011-10-23 16:31:25 +02:00
|
|
|
|
2011-11-14 04:37:50 +01:00
|
|
|
std::string file_;
|
|
|
|
std::string format_;
|
|
|
|
box2d<double> extent_;
|
|
|
|
unsigned width_;
|
|
|
|
unsigned height_;
|
2005-06-14 17:06:59 +02:00
|
|
|
};
|
2009-04-10 14:05:31 +02:00
|
|
|
|
2011-10-23 16:31:25 +02:00
|
|
|
#endif // RASTER_INFO_HPP
|