-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug fix related to large nodata values
- Loading branch information
1 parent
cf43137
commit b63fd87
Showing
6 changed files
with
138 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,4 @@ VectorFieldCalc is a QGIS plugin for calculating physical parameters (e.g., dive | |
|
||
Contacts: | ||
|
||
Mauro Alberti - [email protected] | ||
Mauro Alberti - [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,11 +5,15 @@ | |
<link href="style.css" rel="stylesheet" type="text/css" /> | ||
</head> | ||
<body> | ||
<h2>VectorFieldCalc v. 1.6</h2> | ||
<h2>VectorFieldCalc v. 1.5.3</h2> | ||
<p> | ||
This plugin for Quantum GIS allows to calculate physical parameters (e.g., divergence, curl module, pathlines), given a 2D, steady vector field, | ||
such as the velocity field of glacial flows. | ||
</p> | ||
<p> | ||
IT IS STRONGLY ADVISED TO WORK WITH PROJECTED DATASETS (e.g., Polar, Lambert, UTM), NOT POLAR ONES (i.e., Lat-Long), | ||
SINCE THE CALCULATIONS ARE PERFORMED IN A CARTESIAN COORDINATE FRAME. | ||
</p> | ||
|
||
<div> | ||
In details, the calculated parameters are summarized below: | ||
|
@@ -166,7 +170,7 @@ <h4>Pathlines</h4> | |
<div style="font-size: 85%; font-style: italic;"> | ||
----- | ||
<br /><br /> | ||
Doc version 2018-08-16, by Mauro Alberti - <a href="mailto:[email protected]">[email protected]</a> | ||
Doc version 2019-06-30, by Mauro Alberti - <a href="mailto:[email protected]">[email protected]</a> | ||
</div> | ||
|
||
<br /><br /> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,8 @@ | |
|
||
from __future__ import absolute_import | ||
|
||
|
||
from builtins import str | ||
from builtins import zip | ||
import os, webbrowser | ||
|
||
from osgeo import ogr | ||
|
||
from qgis.PyQt.QtCore import * | ||
|
@@ -16,7 +14,6 @@ | |
|
||
from .vfc_utils import * | ||
|
||
from .pygsf.libs_utils.gdal.gdal import * | ||
from .qgis_utils.qgs import * | ||
from .pygsf.spatial.rasters.geoarray import * | ||
from .pygsf.spatial.rasters.io import * | ||
|
@@ -39,7 +36,6 @@ def __init__(self): | |
|
||
self.adjustSize() | ||
|
||
|
||
def setup_help_widget(self): | ||
|
||
help_widget = QTextBrowser() | ||
|
@@ -495,7 +491,7 @@ def calculate_vectorfieldops(self): | |
"No output layer defined") | ||
return | ||
|
||
### PROCESSINGS | ||
# PROCESSINGS | ||
|
||
# create velocity geoarray | ||
|
||
|
@@ -1056,11 +1052,11 @@ def about(self): | |
|
||
QMessageBox.about(self, "About VectorFieldCalc", | ||
""" | ||
<p>VectorFieldCalc version 1.5.1<br />License: GPL v. 3</p> | ||
<p>VectorFieldCalc version 1.5.3<br />License: GPL v. 3</p> | ||
<p>Mauro Alberti</p> | ||
<p>This application calculates vector field parameters (e.g., divergence, curl module, gradients) | ||
and pathlines. | ||
</p> | ||
<p>Please report any bug to <a href="mailto:[email protected]">[email protected]</a></p> | ||
<p>Please report any bug to <a href="mailto:[email protected]">[email protected]</a></p> | ||
""") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
[general] | ||
name=VectorFieldCalc | ||
email=[email protected] | ||
email=[email protected] | ||
author=Mauro Alberti | ||
qgisMinimumVersion=3.0 | ||
description=Calculation of vector field parameters | ||
about=This plugin calculates vector field parameters (e.g., magnitude, divergence, curl) and pathlines, given two rasters representing x- and y- velocities | ||
version=1.5.2 | ||
version=1.5.3 | ||
tracker=https://github.com/mauroalberti/VectorFieldCalc/issues | ||
repository=https://github.com/mauroalberti/VectorFieldCalc/releases | ||
; end of mandatory metadata | ||
|
||
; start of optional metadata | ||
category=Plugins | ||
changelog= | ||
1.5.3 - {2019-06-30} fixed bug .... | ||
1.5.2 - fixed bug with missing asc extension in file names | ||
1.5.1: - fixed problem with help in Windows | ||
1.5: - based on pygsf | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters