147 lines
5.5 KiB
C++
147 lines
5.5 KiB
C++
/*
|
|
* Copyright (C) 2012 Open Source Robotics Foundation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
*/
|
|
|
|
#ifndef _GAZEBO_DEM_HH_
|
|
#define _GAZEBO_DEM_HH_
|
|
|
|
#include <ignition/math/Vector3.hh>
|
|
#include <ignition/math/Angle.hh>
|
|
|
|
#include <gazebo/gazebo_config.h>
|
|
#include <gazebo/util/system.hh>
|
|
|
|
#ifdef HAVE_GDAL
|
|
# include <string>
|
|
# include <vector>
|
|
|
|
# include "gazebo/common/HeightmapData.hh"
|
|
# include "gazebo/math/Angle.hh"
|
|
|
|
namespace gazebo
|
|
{
|
|
namespace common
|
|
{
|
|
class DemPrivate;
|
|
|
|
/// \addtogroup gazebo_common Common
|
|
/// \{
|
|
|
|
/// \class DEM DEM.hh common/common.hh
|
|
/// \brief Encapsulates a DEM (Digital Elevation Model) file.
|
|
class GZ_COMMON_VISIBLE Dem : public HeightmapData
|
|
{
|
|
/// \brief Constructor.
|
|
public: Dem();
|
|
|
|
/// \brief Destructor.
|
|
public: virtual ~Dem();
|
|
|
|
/// \brief Load a DEM file.
|
|
/// \param[in] _filename the path to the terrain file.
|
|
/// \return 0 when the operation succeeds to open a file.
|
|
public: int Load(const std::string &_filename="");
|
|
|
|
/// \brief Get the elevation of a terrain's point in meters.
|
|
/// \param[in] _x X coordinate of the terrain.
|
|
/// \param[in] _y Y coordinate of the terrain.
|
|
/// \return Terrain's elevation at (x,y) in meters.
|
|
public: double GetElevation(double _x, double _y);
|
|
|
|
/// \brief Get the terrain's minimum elevation in meters.
|
|
/// \return The minimum elevation (meters).
|
|
public: float GetMinElevation() const;
|
|
|
|
/// \brief Get the terrain's maximum elevation in meters.
|
|
/// \return The maximum elevation (meters).
|
|
public: float GetMaxElevation() const;
|
|
|
|
/// \brief Get the georeferenced coordinates (lat, long) of the terrain's
|
|
/// origin in WGS84.
|
|
/// \param[out] _latitude Georeferenced latitude.
|
|
/// \param[out] _longitude Georeferenced longitude.
|
|
public: void GetGeoReferenceOrigin(ignition::math::Angle &_latitude,
|
|
ignition::math::Angle &_longitude) const;
|
|
|
|
/// \brief Get the terrain's height. Due to the Ogre constrains, this
|
|
/// value will be a power of two plus one. The value returned might be
|
|
/// different that the original DEM height because GetData() adds the
|
|
/// padding if necessary.
|
|
/// \return The terrain's height (points) satisfying the ogre constrains
|
|
/// (squared terrain with a height value that must be a power of two plus
|
|
/// one).
|
|
public: unsigned int GetHeight() const;
|
|
|
|
/// \brief Get the terrain's width. Due to the Ogre constrains, this
|
|
/// value will be a power of two plus one. The value returned might be
|
|
/// different that the original DEM width because GetData() adds the
|
|
/// padding if necessary.
|
|
/// \return The terrain's width (points) satisfying the ogre constrains
|
|
/// (squared terrain with a width value that must be a power of two plus
|
|
/// one).
|
|
public: unsigned int GetWidth() const;
|
|
|
|
/// \brief Get the real world width in meters.
|
|
/// \return Terrain's real world width in meters.
|
|
public: double GetWorldWidth() const;
|
|
|
|
/// \brief Get the real world height in meters.
|
|
/// \return Terrain's real world height in meters.
|
|
public: double GetWorldHeight() const;
|
|
|
|
/// \brief Create a lookup table of the terrain's height.
|
|
/// \param[in] _subsampling Multiplier used to increase the resolution.
|
|
/// Ex: A subsampling of 2 in a terrain of 129x129 means that the height
|
|
/// vector will be 257 * 257.
|
|
/// \param[in] _vertSize Number of points per row.
|
|
/// \param[in] _size Real dimmensions of the terrain in meters.
|
|
/// \param[in] _scale Vector3 used to scale the height.
|
|
/// \param[in] _flipY If true, it inverts the order in which the vector
|
|
/// is filled.
|
|
/// \param[out] _heights Vector containing the terrain heights.
|
|
public: void FillHeightMap(const int _subSampling,
|
|
const unsigned int _vertSize,
|
|
const ignition::math::Vector3d &_size,
|
|
const ignition::math::Vector3d &_scale,
|
|
const bool _flipY,
|
|
std::vector<float> &_heights);
|
|
|
|
/// \brief Get the georeferenced coordinates (lat, long) of a terrain's
|
|
/// pixel in WGS84.
|
|
/// \param[in] _x X coordinate of the terrain.
|
|
/// \param[in] _y Y coordinate of the terrain.
|
|
/// \param[out] _latitude Georeferenced latitude.
|
|
/// \param[out] _longitude Georeferenced longitude.
|
|
private: void GetGeoReference(double _x, double _y,
|
|
ignition::math::Angle &_latitude,
|
|
ignition::math::Angle &_longitude) const;
|
|
|
|
/// \brief Get the terrain file as a data array. Due to the Ogre
|
|
/// constrains, the data might be stored in a bigger vector representing
|
|
/// a squared terrain with padding.
|
|
/// \return 0 when the operation succeeds to open a file.
|
|
private: int LoadData();
|
|
|
|
/// internal
|
|
/// \brief Pointer to the private data.
|
|
private: DemPrivate *dataPtr;
|
|
};
|
|
/// \}
|
|
}
|
|
}
|
|
#endif
|
|
#endif
|