BlueGrey
calm
Elegant
Català-Valencià - Catalan
中文 - Chinese (Simplified)
中文 - Chinese (Traditional)
Česky - Czech
Dansk - Danish
Nederlands - Dutch
English - English
Suomi - Finnish
Français - French
Deutsch - German
עברית - Hebrew
हिंदी - Hindi
Magyar - Hungarian
Bahasa Indonesia - Indonesian
Italiano - Italian
日本語 - Japanese
한국어 - Korean
Македонски - Macedonian
मराठी - Marathi
Norsk - Norwegian
Polski - Polish
Português - Portuguese
Português - Portuguese (Brazil)
Русский - Russian
Slovenčina - Slovak
Slovenščina - Slovenian
Español - Spanish
Svenska - Swedish
Türkçe - Turkish
Українська - Ukrainian
Oëzbekcha - Uzbek
Subversion Repositories
public iLand
(root)
/
src
/
tools
/
climateconverter.cpp
- Rev 1222
Rev
Show changed files
|
Details
|
Compare with Previous
|
Blame
|
RSS feed
Filtering Options
From rev
To rev
Max revs
Search history for
Show All
Rev
Age
Author
Path
Log message
Diff
1222
2958d 05h
werner
/
public SVN
1221
2958d 05h
werner
/branches/
public SVN
1220
2958d 05h
werner
/branches/version1.0/
Version 1.0
1218
2958d 07h
werner
/
clean up repository - make 1.0 trunk again!
1217
2958d 07h
werner
/
clean up repository - make 1.0 trunk again!
1104
3246d 12h
werner
/branches/iland_regen/
Branch dedicated to playing around with establishment/regeneration.
Goals are:
(i) speed up
(ii) introduction of new features for Yellowstone
793
4106d 05h
werner
/branches/port_qt5_64bit/src/
Move from QScriptEngine to QJSEngine (=V8). Most of the stuff was quite smooth, but there are some open issues.
• Global functions (“print”, “include”, “alert”) are commented out (could be solved by moving functions to the “Globals” object and by creating alias JS-functions, i.e. function alert(x) {Globals.alert(x); } )
• Object creation: “new XXX”, XXX=ClimateConverter, CSVFile, … does not work now
possible solution: factory-pattern (i.e. var csv = Globals.newCSV())
779
4230d 07h
werner
/branches/port_qt5_64bit/
766
4409d 07h
werner
/trunk/src/
adding the rumple index calculation to iland. missing: script binding, ...
time to move the qtscript engine from management to the main model....
671
4813d 08h
werner
/trunk/src/
Necessary changes for GPL licence (i.e. headers in all source files)
639
4974d 05h
werner
/
move current content to the "trunk"
414
5323d 13h
werner
/src/
added minimum climate to the iLand climate file.
added the new field to the climateconverter javascript binding class
added a new button in the GUI to select a JavaScript file (downside: management must be active... and selected file overwrites management choice)
248
5552d 20h
werner
/src/
doxygen doc.
247
5552d 21h
werner
/src/
global script object (ScriptGlobal).
Doxygen documentation refinements.
245
5553d 04h
werner
/src/
CSVFile: changed API and made it available for script access.
244
5553d 17h
werner
/src/tools/
climateconverter: create a database connection (SQLite does not allow to do an update on a database while a query is still active (e.g. the query on the climate data).
added space-separated type to CSVFile.
243
5553d 20h
werner
/src/
created class for loading and parsing csv-styled text files. It is planned to expose the thing as scriptable Object. extended climateConverter to actually load text files and write database outputs.
242
5553d 21h
werner
/src/
added a scriptable object "ClimateConverter" that converts climate data sources to the built-in format. The scripting stuff is quite cool!