2021-06-17 21:58:25 +02:00
|
|
|
#include <QFileInfo>
|
|
|
|
#include <QDir>
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QImageReader>
|
|
|
|
#include "image.h"
|
|
|
|
#include "gcs.h"
|
|
|
|
#include "prjfile.h"
|
|
|
|
#include "wldfile.h"
|
|
|
|
#include "worldfilemap.h"
|
|
|
|
|
|
|
|
|
|
|
|
WorldFileMap::WorldFileMap(const QString &fileName, const Projection &proj,
|
|
|
|
QObject *parent) : Map(fileName, parent), _projection(proj), _img(0),
|
|
|
|
_ratio(1.0), _hasPRJ(false), _valid(false)
|
|
|
|
{
|
|
|
|
QFileInfo fi(fileName);
|
|
|
|
QDir dir(fi.absoluteDir());
|
2021-06-21 23:34:29 +02:00
|
|
|
QString basename(fi.completeBaseName());
|
2021-06-17 21:58:25 +02:00
|
|
|
|
|
|
|
|
2021-06-17 22:13:31 +02:00
|
|
|
// Get the transformation from the WLD file
|
2021-06-17 21:58:25 +02:00
|
|
|
WLDFile wld(fileName);
|
|
|
|
if (wld.transform().isValid())
|
|
|
|
_transform = wld.transform();
|
|
|
|
else {
|
|
|
|
_errorString = wld.errorString();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-06-17 22:13:31 +02:00
|
|
|
// Get the projection from the corresponding PRJ file (if any)
|
2021-06-17 21:58:25 +02:00
|
|
|
QString prjFile(basename + ".prj");
|
|
|
|
if (dir.exists(prjFile)) {
|
|
|
|
PRJFile prj(dir.filePath(prjFile));
|
|
|
|
if (prj.projection().isValid()) {
|
|
|
|
_projection = prj.projection();
|
|
|
|
_hasPRJ = true;
|
|
|
|
} else {
|
|
|
|
_errorString = prjFile + ": " + prj.errorString();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find the corresponding image file
|
|
|
|
QList<QByteArray> formats(QImageReader::supportedImageFormats());
|
|
|
|
QString imgFile;
|
|
|
|
|
|
|
|
for (int i = 0; i < formats.size(); i++) {
|
|
|
|
imgFile = basename + "." + formats.at(i);
|
|
|
|
if (dir.exists(imgFile)) {
|
|
|
|
_imgFile = dir.filePath(imgFile);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_imgFile.isNull()) {
|
|
|
|
_errorString = "image file not found";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QImageReader ir(_imgFile);
|
|
|
|
if (!ir.canRead()) {
|
|
|
|
_errorString = imgFile + ": unsupported/invalid image file";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
_size = ir.size();
|
|
|
|
|
|
|
|
_valid = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
WorldFileMap::~WorldFileMap()
|
|
|
|
{
|
|
|
|
delete _img;
|
|
|
|
}
|
|
|
|
|
|
|
|
QPointF WorldFileMap::ll2xy(const Coordinates &c)
|
|
|
|
{
|
|
|
|
return QPointF(_transform.proj2img(_projection.ll2xy(c))) / _ratio;
|
|
|
|
}
|
|
|
|
|
|
|
|
Coordinates WorldFileMap::xy2ll(const QPointF &p)
|
|
|
|
{
|
|
|
|
return _projection.xy2ll(_transform.img2proj(p * _ratio));
|
|
|
|
}
|
|
|
|
|
|
|
|
QRectF WorldFileMap::bounds()
|
|
|
|
{
|
|
|
|
return QRectF(QPointF(0, 0), _size / _ratio);
|
|
|
|
}
|
|
|
|
|
|
|
|
void WorldFileMap::draw(QPainter *painter, const QRectF &rect, Flags flags)
|
|
|
|
{
|
|
|
|
if (_img)
|
|
|
|
_img->draw(painter, rect, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
void WorldFileMap::setDevicePixelRatio(qreal deviceRatio, qreal mapRatio)
|
|
|
|
{
|
|
|
|
Q_UNUSED(deviceRatio);
|
|
|
|
|
|
|
|
_ratio = mapRatio;
|
|
|
|
if (_img)
|
|
|
|
_img->setDevicePixelRatio(_ratio);
|
|
|
|
}
|
|
|
|
|
|
|
|
void WorldFileMap::load()
|
|
|
|
{
|
|
|
|
if (!_img)
|
|
|
|
_img = new Image(_imgFile);
|
|
|
|
}
|
|
|
|
|
|
|
|
void WorldFileMap::unload()
|
|
|
|
{
|
|
|
|
delete _img;
|
|
|
|
_img = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WorldFileMap::setInputProjection(const Projection &projection)
|
|
|
|
{
|
2023-04-13 08:39:33 +02:00
|
|
|
if (_hasPRJ || !projection.isValid() || projection == _projection)
|
2021-06-17 21:58:25 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
_projection = projection;
|
|
|
|
}
|
2022-04-29 23:16:10 +02:00
|
|
|
|
|
|
|
Map *WorldFileMap::create(const QString &path, const Projection &proj,
|
|
|
|
bool *isDir)
|
|
|
|
{
|
|
|
|
if (isDir)
|
|
|
|
*isDir = false;
|
|
|
|
|
|
|
|
return new WorldFileMap(path, proj);
|
|
|
|
}
|