Skip to content

Commit cb622af

Browse files
committed
preparing for v 1.6.0
1 parent 75d7d8f commit cb622af

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ Latest news will be published on Anita's blog: http://anitagraser.com/tag/time-m
1111

1212
The aim of '''Time Manager plugin for QGIS''' is to provide comfortable browsing through temporal geodata. A dock widget provides a time slider and a configuration dialog for your layers to manage.
1313

14+
## Newest features
15+
16+
As of version 1.6.0 TimeManager provides support for linear interpolation between point geometries. Please try it out and give feedback.
17+
1418
## What Time Manager currently does
1519

1620
Time Manager filters your datasets and displays only features with timestamps in the user specified time frame. Timestamps have to be in one of the following formats:

metadata.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
[general]
22
name=TimeManager
33
description=TimeManager adds time controls to QGIS. Using these time controls, you can animate vector features based on a time attribute. There is also an experimental raster layer support. You can create animations directly in the map window and export image series.
4-
version=1.5.2
4+
version=1.6.0
55
qgisMinimumVersion=2.3
66
author=Anita Graser, Karolina Alexiou (aka carolinux)
77
email=anitagraser@gmx.at, carolinegr@gmail.com
8-
changelog=1.5.2
8+
changelog=1.6.0
9+
- added interpolation
10+
- added ability to not export empty frames
11+
- misc bugfixes
12+
1.5.2
913
- fixed #103 (critical)
1014
- fixed #102 (metadata formatting)
1115
- fixed #99 label options now work

test/within_qgis_script.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -208,16 +208,8 @@ def set_time_frame_type(gui,typ):
208208
assert(ls.getSettingsFromLayer(tlm.getTimeLayerList()[0]).interpolationEnabled == True)
209209
assert(len(get_all_layer_names())==3)
210210
tmp_file = get_temp_file().name
211-
tmp_file = "/tmp/foo"
212211
save_project_to_file(tmp_file)
213212
new_project()
214213
load_project(tmp_file)
215214
assert(len(get_all_layer_names())==3)
216215

217-
218-
219-
220-
221-
222-
223-

timevectorinterpolatedlayer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#TODO: What about toTimeAttribute and interpolation? Right now it's ignored
2020

2121
# Cleaning up
22-
#TODO(v1.6) delete logging msgs when done (beta) testing
22+
#TODO(v1.6.1) delete logging msgs when done (beta) testing
2323

2424
class TimeVectorInterpolatedLayer(TimeVectorLayer):
2525

0 commit comments

Comments
 (0)