-
Notifications
You must be signed in to change notification settings - Fork 13
/
utils.py
53 lines (42 loc) · 1.76 KB
/
utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
"""
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""
import os.path
from PyQt5.QtCore import qDebug
from qgis.core import QgsProject
# constants for saving data inside QGS
SETTINGS_KEY = "FreehandRasterGeoreferencer"
SETTING_BROWSER_RASTER_DIR = "browseRasterDir"
def toRelativeToQGS(imagePath):
qgsPath = QgsProject.instance().fileName()
if qgsPath and os.path.isabs(imagePath):
# Make it relative to current project if image below QGS
imageFolder, imageName = os.path.split(imagePath)
qgsFolder, _ = os.path.split(qgsPath)
imageFolder = os.path.abspath(imageFolder)
qgsFolder = os.path.abspath(qgsFolder)
if imageFolder.startswith(qgsFolder):
# relative
imageFolderRelPath = os.path.relpath(imageFolder, qgsFolder)
imagePath = os.path.join(imageFolderRelPath, imageName)
qDebug(imagePath.encode())
return imagePath
def tryfloat(strF):
try:
f = float(strF)
return f
except ValueError:
return None
def imageFormat(path):
_, extension = os.path.splitext(path)
extension = extension.lstrip(".").lower()
if extension == "tiff":
extension = "tif"
return extension