mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
159 lines
4.9 KiB
Plaintext
159 lines
4.9 KiB
Plaintext
|
|
/** \ingroup core
|
|
* Perform transforms between map coordinates and device coordinates.
|
|
*
|
|
* This class can convert device coordinates to map coordinates and vice versa.
|
|
*/
|
|
class QgsMapToPixel
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsmaptopixel.h>
|
|
%End
|
|
|
|
public:
|
|
/**
|
|
* Constructor
|
|
* @param mapUnitsPerPixel Map units per pixel
|
|
* @param height Map canvas height, in pixels
|
|
* @param ymin Minimum y value of the map canvas
|
|
* @param xmin Minimum x value of the map canvas
|
|
* @deprecated in 2.8, use version with all parameters
|
|
*/
|
|
QgsMapToPixel( double mapUnitsPerPixel = 0, double height = 0, double ymin = 0, double xmin = 0 ) /Deprecated/;
|
|
|
|
/**
|
|
* Transform the point from map (world) coordinates to device coordinates
|
|
* @param p Point to transform
|
|
* @return QgsPoint in device coordinates
|
|
*/
|
|
QgsPoint transform( const QgsPoint& p ) const;
|
|
|
|
void transform( QgsPoint* p ) const;
|
|
|
|
/**
|
|
* Transform the point specified by x,y from map (world)
|
|
* coordinates to device coordinates
|
|
* @param x x cordinate o point to transform
|
|
* @param y y coordinate of point to transform
|
|
* @return QgsPoint in device coordinates
|
|
*/
|
|
QgsPoint transform( double x, double y ) const;
|
|
|
|
/**
|
|
* Transform device coordinates to map coordinates. Modifies the
|
|
* given coordinates in place. Intended as a fast way to do the
|
|
* transform.
|
|
*/
|
|
void transformInPlace( double& x, double& y ) const;
|
|
|
|
// @note not available in python bindings
|
|
// void transformInPlace( qreal& x, qreal& y ) const;
|
|
|
|
/**
|
|
* Transform device coordinates to map coordinates. Modifies the
|
|
* given coordinates in place. Intended as a fast way to do the
|
|
* transform.
|
|
* @note not available in python bindings
|
|
*/
|
|
// template <class T>
|
|
// void transformInPlace( QVector<double>& x, QVector<double>& y ) const;
|
|
|
|
QgsPoint toMapCoordinates( int x, int y ) const;
|
|
|
|
//! Transform device coordinates to map (world) coordinates
|
|
QgsPoint toMapCoordinatesF( double x, double y ) const;
|
|
|
|
/**
|
|
* Transform device coordinates to map (world) coordinates
|
|
* @param p Point to be converted to map cooordinates
|
|
* @return QgsPoint in map coorndiates
|
|
*/
|
|
QgsPoint toMapCoordinates( QPoint p ) const;
|
|
|
|
QgsPoint toMapPoint( double x, double y ) const;
|
|
|
|
/**
|
|
* Set map units per pixel
|
|
* @param mapUnitsPerPixel Map units per pixel
|
|
*/
|
|
void setMapUnitsPerPixel( double mapUnitsPerPixel );
|
|
|
|
//! Return current map units per pixel
|
|
double mapUnitsPerPixel() const;
|
|
|
|
/**
|
|
* Return current map width in pixels
|
|
* The information is only known if setRotation was used
|
|
* @note added in 2.8
|
|
*/
|
|
int mapWidth() const;
|
|
|
|
/**
|
|
* Return current map height in pixels
|
|
* @note added in 2.8
|
|
*/
|
|
int mapHeight() const;
|
|
|
|
/**
|
|
* Set map rotation in degrees (clockwise)
|
|
* @param degrees clockwise rotation in degrees
|
|
* @param cx X ordinate of map center in geographical units
|
|
* @param cy Y ordinate of map center in geographical units
|
|
* @note added in 2.8
|
|
*/
|
|
void setMapRotation( double degrees, double cx, double cy );
|
|
|
|
/**
|
|
* Return current map rotation in degrees
|
|
* @note added in 2.8
|
|
*/
|
|
double mapRotation() const;
|
|
|
|
/**
|
|
* Set maximum y value
|
|
* @deprecated in 2.8, use setParameters
|
|
* @note this really sets the viewport height, not ymax
|
|
*/
|
|
void setYMaximum( double ymax ) /Deprecated/;
|
|
|
|
/**
|
|
* Set minimum y value
|
|
* @deprecated in 2.8, use setParameters
|
|
*/
|
|
void setYMinimum( double ymin ) /Deprecated/;
|
|
|
|
/**
|
|
* set minimum x value
|
|
* @deprecated in 2.8, use setParameters
|
|
*/
|
|
void setXMinimum( double xmin ) /Deprecated/;
|
|
|
|
/**
|
|
* Set parameters for use in transforming coordinates
|
|
* @param mapUnitsPerPixel Map units per pixel
|
|
* @param xmin Minimum x value
|
|
* @param ymin Minimum y value
|
|
* @param height Map height, in pixels
|
|
* @deprecated in 2.8, use the version with full parameters
|
|
* @note not available in python bindings
|
|
*/
|
|
// void setParameters( double mapUnitsPerPixel, double xmin, double ymin, double ymax ) /Deprecated/;
|
|
|
|
/**
|
|
* Set parameters for use in transforming coordinates
|
|
* @param mapUnitsPerPixel Map units per pixel
|
|
* @param xc X ordinate of map center, in geographical units
|
|
* @param yc Y ordinate of map center, in geographical units
|
|
* @param width Output width, in pixels
|
|
* @param height Output height, in pixels
|
|
* @param rotation clockwise rotation in degrees
|
|
* @note added in 2.8
|
|
*/
|
|
void setParameters( double mapUnitsPerPixel, double xc, double yc, int width, int height, double rotation );
|
|
|
|
//! String representation of the parameters used in the transform
|
|
QString showParameters() const;
|
|
|
|
QTransform transform() const;
|
|
};
|