-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
4115 lines (4099 loc) · 228 KB
/
CHANGELOG
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Changelog for version 3.3.2
================================
afed399 (HEAD -> master, upstream/master) Merge pull request #2727 from Gustry/timeout
9645fef Merge pull request #2729 from ismailsunni/fix_2720
45eae08 Fix issue #2720
96f3c24 fix if the request is cancelled, the http response is none
8b44d90 handle HTTP 509 if the overpass is busy
e820ad7 manage a timeout error from the overpass in the OSM Downloader
431c4a4 Merge pull request #2722 from Gustry/fix-network-master
bafaca7 fix delete network reply after a download
9f610ef Merge pull request #2708 from timlinux/master
24b79c3 (libby/master) Merge pull request #2701 from timlinux/master
Changelog for version 3.3.1
================================
c3211e6 (HEAD -> master) ###Problem Peta Jakarta delivering python error
Changelog for version 3.3.0
================================
28318d2 (HEAD -> master, origin/master) Updated changelog for 3.3.0 to include tsunami on roads changes
988a12b (upstream/master) Merge pull request #2694 from Gustry/unit-master
2894f66 fix metadata tsunami on roads IF
9fc441c Merge pull request #2693 from timlinux/master
0b3fa7a unit in road postprocessor
6981387 Fix PetaJakarta flood style to be consistent with PJ website
c9697b2 Merge pull request #2692 from ismailsunni/translation-3.3.1
c6d9649 compile translation.
654c50c Update translation from transifex.
5f6bda5 Merge pull request #2680 from Gustry/tsunami-if
4351c9c Merge branch 'master' into tsunami-if
56a7ef1 add units on each rows, not on columns in the road report
c412d06 Merge pull request #2688 from Gustry/backport-2361
9686bf0 update to "total affected" in the road type postprocessor
a7a734d fix #2361 count roads length in post processing instead of features
2db13f1 call mixin init in IF
bcc8508 add flag for add unaffected column in the road report
0df0558 disable Flood On Raster IF for a tsunami hazard
a7a1b0d fix tests tsunami on roads IF
d85be58 fix roads which intersect partially the hazard raster
92459fc Merge pull request #2683 from Gustry/fix-exposure-layer
3e272d6 commit to the output every 1000 features
fd59cc5 fix hide exposure layer after an IF
f4533b7 impact report tsunami IF
6d6df96 update tsunami on buildings IF
b8d057b Merge pull request #2678 from Gustry/fix-unicode-exceptions
5a13373 add tsunami IF init
1e322e5 check if the excpetion got an exception parameter
c2abaf8 fix tests
333765d unicode error if layers do not overlap in French
5e58529 Merge pull request #2665 from Gustry/mistakes
ecaf13d Merge pull request #2667 from Gustry/fix-master-2663
30eb5aa fix 2663 in master
9b377e4 Typographicals errors
4e6d0e2 add missing bullets
cb21121 fix spaces in help
1a3d02f mistake
b695b9d mistakes in wizard dialog
91dc508 Merge pull request #2645 from timlinux/master
311820d Merge remote-tracking branch 'upstream/develop'
ab7f485 Merge pull request #2644 from ismailsunni/translation-3.3
3e3e866 Updated metadata.txt to final
748e78f Resolved merge conflicts with develop
ffe878a Compile translation strings.
0258e92 Update translation.
6941c8b Merge branch 'develop' of github.com:inasafe/inasafe into translation-3.3
a897f46 (develop) Merge pull request #2641 from ismailsunni/remove_death_code
169b645 Update string.
a777b48 Update translation from transifex.
d27bf4e Merge branch 'develop' of github.com:inasafe/inasafe into translation-3.3
5ea1cb3 Remove dead code. Styles.py.
a13105f Merge pull request #2640 from timlinux/develop
e4fb933 Small typo fix in petajakarta help
9c9e1e1 Fix issue with styles for flood on polygon pop when class field is an int
b4715a1 Merge pull request #2638 from timlinux/develop
21f77c0 Merge pull request #2639 from ismailsunni/update_data_test
3c1d3f5 Remove unused method. Trigerring travis.
a8c7f5e Update strings.
f37c3de Update translation from transifex
c32f659 Merge branch 'develop' of github.com:inasafe/inasafe into translation-3.3
2cdf084 Use FloatTuple for resolution in data test metadata xml.
d5a8f4f Merge pull request #2472 from timlinux/fix-2471
91771f1 (origin/fix-2471, fix-2471) Updated style and XML template for PetaJakarta
602577a Fixups for petajakarta flood styles
f1b8c82 Revert changes diverging from upstream
b01c57c Merge changes from upstream
4b9428d Metadata updates
b7b4d19 Update strings.
d1b6886 Update translation from transifex.
c2ed2c6 Merge remote-tracking branch 'inasafe/develop' into translation-3.3
6c30014 Merge pull request #2551 from Samweli/develop
8694c26 Merge pull request #2634 from ismailsunni/fix_2553_hair_loss
5656613 Fix docstring for classes.
4bdd1f5 Remove misleading comments.
3b3d1a4 Merge pull request #2635 from inasafe/issue-template-2
2d53e23 (upstream/issue-template-2) Create ISSUE_TEMPLATE.md
b208e96 PEP8
df05ca7 Add FloatTuple property for resolutions.
9c8c029 Update data test from tuple to float (resolution)
24d0880 Fix merged conflict.
3e7f60b Use resolution as float, not tuple.
40f8260 Add project for the issue.
1c84f91 Fix expected values.
4c67b81 Move test dock regression to separated file.
b2f20bb Remove unused test data.
5b3cc26 Merge pull request #2627 from Gustry/type-error
1afc59e Updated PJ downloader to work with new API. Removed date and area level options
9f75b4e Resolved merge conflicts
37d2e6e Resolved merge conflicts
e38f5da A little formatting change to wizard
5e70990 Merge pull request #2633 from ismailsunni/fix_2623_json_seriazible
d5db6ed Remove unused code.
81ab832 Move encoder to different file and pep8.
22bbf48 Add more cases for encoder.
a4b6c37 Make the metadata json work for date.
d2eb7ea Add case for QUrl for json metadata writing.
b261b60 Make metadata able to read datetime from json.
3cd36c2 Add more case for json write.
7ddb2ca Merge pull request #2601 from lucernae/develop_functionality
defefad Add special encoder class for inasafe metadata
121d57d Add url and date in the xml
6012e3c Merge branch 'develop' of https://github.com/AIFDR/inasafe into develop_functionality
c20625b fix #2626 be sure that we have unicode for unique values from a layer
6c7379b Merge pull request #2621 from Gustry/extent
d4cff80 Merge pull request #2622 from ismailsunni/fix_legend
2b80262 Merge branch 'develop' of https://github.com/AIFDR/inasafe into develop_functionality
121010f Major configuration update:
fdf22c9 Add Readme for InaSAFE-Headless
e0097f1 Uses python requests to download file
c0775e4 check if user_extent is None
7cdb135 Add more suitable data test.
56f94ac Fix legend to use greater number than preious range.
ccc0474 fix #2604 check if the user_extent is well defined
14c1fa0 Merge pull request #2620 from Gustry/osm
a3af306 Merge branch 'develop' into osm
1e6d414 Move celeryconfig declaration
9956c57 Merge branch 'develop' of https://github.com/AIFDR/inasafe into develop_functionality
0c188d4 Merge pull request #2616 from ismailsunni/fix_2603_update_LanguageCode
f61b724 Merge branch 'develop' of https://github.com/AIFDR/inasafe into develop_functionality
478a8c7 update keywords for the OSM tile layer
6806b19 updated test with new changes
eaf3e92 Merge pull request #2619 from Gustry/fix-2618-extent
0d5f06b fix 2618 : x min and x max in GUI
3585976 Merge branch 'develop' of github.com:AIFDR/inasafe into develop
1dafc0d impact layer now showing YES zone only
6b26997 Merge pull request #2608 from Gustry/network
a69537d (origin/inasafe-2553) Merge remote-tracking branch 'upstream/develop' into inasafe-2553
e178a69 Update string.
e361bb4 Update from transifex.
9f2110c Merge branch 'develop' of github.com:inasafe/inasafe into translation-3.3
00efde9 Merge pull request #2614 from ismailsunni/fix_2612
6815434 Merge pull request #2617 from ismailsunni/develop
940a74b Merge branch 'develop' of github.com:inasafe/inasafe into develop
1418f67 Fix typo.
f7d2a0b Update translation.
28481f5 Update translation from transifex.
da5980b Merge branch 'develop' of github.com:inasafe/inasafe into translation-3.3
24ad164 Add new end line if not exist in metadata.
c89a6f1 removed no zone featurea in impact layer
9d871d6 Merge pull request #2615 from Gustry/qgis_version
f81ea1c Update LanguageCode to English
a01e238 qgis version and language in osm downloader url
5da9d0e fix test for <2.11
2513c3e Merge branch 'develop' of https://github.com/AIFDR/inasafe into develop_functionality
efe9b1c fix empty environment variable cases
ba89edc fix test
8182d77 Change single to once, and reformat Tanzani minimum needs to be more readable.
093420a Add values to map legend. Fix #2612
0ba6fb9 Merge pull request #2611 from ismailsunni/fix_2609_target_field
56c6484 PEP8
f263dd2 Add missing keyword in IF Raster Tsunami #2609.
cd7c751 Merge pull request #2606 from ismailsunni/fix_2605
6f775c6 fix #2588 remove the URL request if we get the data
e73b809 Merged ismailsunni:Samweli-develop
53ee3fe returned test data state
38ddf93 returned deleted exposure.sqlite file
4ab8bd9 Merge branch 'develop' of github.com:AIFDR/inasafe into develop
8bc5d19 Fix typo that make the calculation weird.
98fafa2 Update test control.
73b2668 Merge remote-tracking branch 'ismail/Samweli-develop' into Samweli-develop
310c58e Update unit test.
3a9c82e Add Null value in the data test.
4e4ff92 Merge branch 'develop' of https://github.com/Samweli/inasafe into develop
a3435e4 Changed population to people
cdd472c Fix #2605. Read from xml first then from keywords.
d578633 Add invalid .keywords file for testing #2605. It will fail on test_dock.py:test_validate.
ed3b8f6 Fix misleading exception message.
0453e33 More change from population to people.
d7ae9bc For #2554 - explicitly test with resampling enabled and disabled
040ecb1 Merge branch 'develop' of github.com:ismailsunni/inasafe into develop
e8d1869 resolving conflicts
a9355d5 Working test for 2553 when resampling is off
dbec594 (inasafe-2553) Fix error trying to compare message in test because it is not text
c2570ad Added also test to check that keywords have not been sideloaded from another layer
b64f9f0 Merge remote-tracking branch 'upstream/develop' into inasafe-2553
669ab24 Updated test datasets to fix keywords and ensure allow resampling and not allow resampling are set properly
fab9718 Update test file metadata, add read iso metadata tasks
dee103c Change population to people.
86fbdac Add notes in the report about Null value
29bdf6b Add Null value in the data test.
6a3940f Accept Null as zero.
b2828e3 Merge branch 'develop' of github.com:inasafe/inasafe into Samweli-develop
ec0cd70 Merge pull request #2602 from Gustry/tr
b563201 remove translation in the OSM downloader test file
a6868b7 refactor analysis changes of inasafe 3.3
41549b0 Updated tests for 2553
0deea81 Merge pull request #2444 from lucernae/develop_functionality
df2ac50 Fix tests: update keyword file read tests
7c052e4 PEP8 in wizard.
8ca7245 Refactor variable name.
536f73f Add new string for wizard per #2596
7e087d1 Add more explanation for extra keywords.
de7d7b6 For #2596, fix missing constant question and add area in population.
0014ab6 Use title case for layer name.
e9e8f2f Merge branch 'develop' of https://github.com/Samweli/inasafe into Samweli-develop
60a9cf2 Merge branch 'develop' of https://github.com/AIFDR/inasafe into develop_functionality
ce9d08e Merge pull request #2536 from lucernae/realtime-flood
351ccd2 Merge branch 'realtime-flood' of github.com:lucernae/inasafe into realtime-flood
6c6d6e0 Merge branch 'develop' of http://github.com/AIFDR/inasafe into realtime-flood
0a0fe6e Merge pull request #2492 from timlinux/standards
da77d6c (origin/standards) Fix unintended indent
840f0de Fixed indentation error
0259dca Merge branch 'develop' of https://github.com/AIFDR/inasafe into develop_functionality
1e694c7 develop headless celery based task
7321b56 (standards) Merge remote-tracking branch 'upstream/develop' into standards
4c8c9aa Small typo fix
f0bc833 Merge remote-tracking branch 'upstream/develop' into inasafe-2553
b90ec4f Merge pull request #2597 from timlinux/develop
498856e Updates inasafe_data sha to use qmls tagged as version 2.8.1 Wien
476a9b6 Fix formatting in metadata.txt
313ffd2 Standardise style version in all qmls
2b16341 Merged changes from develop and resolved conflicts
759fde8 Merge pull request #2595 from ismailsunni/fix_failing_test
8485a67 PEP8
51bc9d8 Fix failed test.
42b4463 Merge pull request #2564 from Gustry/fix-2468
8ef57db (ismail/translation-3.3) Update translation strings.
6ffaa94 Update translation from transifex on 25 Jan 2016.
af41f83 (rizky/realtime-flood) Merge branch 'develop' of github.com:AIFDR/inasafe into realtime-flood
4de0caa Update keyword version to 3.3, and uses .xml keywords file
63e3696 (etienne/develop) Merge pull request #2542 from ismailsunni/tsunami_raster_building_if
b1dcf1c Merge pull request #2591 from ismailsunni/fix_2410_error_report
083c2b9 (ismail/tsunami_raster_building_if) Merge branch 'develop' of github.com:inasafe/inasafe into tsunami_raster_building_if
af9d701 (ismail/fix_2410_error_report) Better building usage count. Add categories as parameter.
791e402 Merge pull request #2590 from ismailsunni/fix_2235_huge_difference
4fe001e (ismail/fix_2235_huge_difference) Add more detail in unit test
1a6ef37 Add the matrix not the number of displacement. Fix #2235
9d904a0 Tidy up code.
320c0bc Moved #2553 test to dock
3aeef46 Merge remote-tracking branch 'upstream/develop' into inasafe-2553
0ba5f8f (ismail/develop) Merge pull request #2580 from ismailsunni/fix_2529_zero_transparent
35442b6 (ismail/fix_2529_zero_transparent) Merge branch 'develop' of github.com:inasafe/inasafe into fix_2529_zero_transparent
bfd5ef0 Merge pull request #2586 from ismailsunni/fix_2585_qdate
58803ea Fix typo that makes the problem before.
1a7ee4e (ismail/fix_2585_qdate) Show only date in keyword wizard date selection.
7806efa Show proper format of date in dock and wizard.
485d354 Add notify REST API when new shakemap is pushed
c438037 Add error checker for incomplete grid.xml
2cc1bc3 Merge branch 'realtime-flood' of github.com:lucernae/inasafe into realtime-flood
4672133 Merge branch 'develop' of http://github.com/AIFDR/inasafe into realtime-flood
868d5e5 issue #2438: add tests for issue
71ed12d Merge branch 'develop' of github.com:AIFDR/inasafe into develop
2a6692f corrected values in impact layer style
efda664 Fix merged conflict.
16b2ecf Merge pull request #2582 from Gustry/clip_parameters
e913246 changed the way of creating impact layer style
cbfc4e3 (etienne/clip_parameters) pep8
53a1fe6 store the viewport extent instead of the map canvas
58f8b8d Merge branch 'develop' of github.com:inasafe/inasafe into fix_2529_zero_transparent
67fe710 PEP8
faf9cfa Set all transparency to 0 if not value = 0
27d04f7 (etienne/fix-2468) add threshold to earthquake
4eacdb6 move var in base.py
bcf789d fix clip_parameters in analysis_handler
2a3331d Merge branch 'develop' of github.com:AIFDR/inasafe into develop
de7d7e3 changed impact layer style creation
6962546 revert wrong commit on test data
ea580ca fix aggregation layer setter
31c9616 fix errors
a34c7e0 move clip_parameters
bf69f4b Merge pull request #2581 from ismailsunni/fix_2530_no_unaffected
8ba064d added checker for population number
125395e fix DOCK test init
a70108e disable building threshold in earthquake
a14a6cb Merge branch 'develop' of github.com:AIFDR/inasafe into develop
358100f updated comment on the new function
f65cb35 fixed logic for querying hazard levels
7080c04 fix docstring and typo
16ed41a Merge pull request #2579 from Gustry/crs
d20904e Merge branch 'develop' of github.com:inasafe/inasafe into tsunami_raster_building_if
a3ff9d8 Update data test.
817a5b5 Fix failed test.
0fc7cb8 (ismail/fix_2530_no_unaffected) Add unaffected population in report in IF Flood polygon poppulation
394c622 Set transparent for raster value = 0. Per #2529.
c6cd621 move clip_parameters function in IF
1b47004 use QgsCoordinateReferenceSystem instead of integer EPSG code
a95bc0f Merge branch 'develop' of github.com:AIFDR/inasafe into develop
c55f123 refactored code in the new IF
4383b98 Merge pull request #2578 from Gustry/message
7faaeb8 move message prerun
4f54274 Merge pull request #2577 from ismailsunni/fix_2569_url_field
987a145 Merge pull request #2574 from Gustry/safelayers
f9c7879 (ismail/fix_2569_url_field) Clean up unused code in keyword_io.
9c6771e Only handle for QUrl object.
94186d3 Merge remote-tracking branch 'inasafe/develop' into fix_2569_url_field
cef1a5f fix test, change AggregationCategorical to BuildingType postprocessing
139a696 add building_report_threshold in every IF using building mixin
63506e4 add maximum value
66d2423 Merge branch 'develop' of github.com:AIFDR/inasafe into develop
88d555b changed new IF exposure unit to count
0d9e9fa Merge branch 'develop' into fix-2468
94f508f fix text : set self.building.report_threshold
62db93d use SafeLayer in Analysis
61a00a1 Merge pull request #2575 from ismailsunni/fix_2570_format_int
829acda Fix URL extra 'code' in keyword in dock.
9f67ced Merge pull request #2573 from ismailsunni/fix_apostrof
e68febc Merge pull request #2568 from ismailsunni/fix_2545_report_order_consistency
c6069f1 (ismail/fix_2570_format_int) Format number of pop in action list.
37411e7 setup IF function before layers
e30ff1d (ismail/fix_apostrof) Fix apostrof.
74306c4 Tidy up code.
5c35d43 Merge pull request #2566 from Gustry/self
2684934 (ismail/fix_2545_report_order_consistency) Reorder impact report in population IF .
6bdc67f use self.exposure and self.hazard in analysis
199b170 rename hazard, exposure and aggregation in Analysis.py
2859c86 add threshold parameter to the building postprocessor
28af506 set the threshold in self
707b667 Merge pull request #2563 from Gustry/space
ea4c0d5 fix missing space
d10d4d2 Merge pull request #2557 from Gustry/safe-layers
6852bef Update strings.
f011732 Pull translation from transifex.
3015911 fix missing spaces
5d861db downgrade versionadded in safe_layer
d5ae660 Merge pull request #2559 from Gustry/clip-param
2892bd7 Merge pull request #2556 from Gustry/tr
8fb7a82 Merge pull request #2561 from ismailsunni/value_mapping_key
ab7dfca (ismail/value_mapping_key) Fix test.
3b1e574 Use definition's key as key in value_map keyword not definition's name.
6f5745e clip_parameters : replace the list by a dictionary
661c68f Use unaligned clips for test data for 2553
39f90cd add docstrings to generate_insufficient_overlap_message
a763fac add methods to safeLayer
01c315e refactoring signals in safe
2879139 added minimum needs function in the IF
6e59f43 refactoring signals
5d059d7 use safe.utilities.i18n.tr() instead self.tr
df04100 Merge branch 'develop' of github.com:AIFDR/inasafe into develop
e5d3d91 removed usage of area_type in IF analysis
a06019a Merge pull request #2554 from Gustry/etienne
9dc1b85 add myself to travis
28fead4 fixed test_run in new IF
971a021 updated the test for IFCW
5db8f80 Merge pull request #2550 from ismailsunni/revert_deleted
d4fd93b (ismail/revert_deleted) Update data test.
7e460c3 Update data test.
68dbe88 Revert accidentally delete.
a8d0c81 fixed 5 travis fails
45da907 fixed conflicts with develop branch
4edc8e7 changes according to #2543
08960bc Merge pull request #2546 from ismailsunni/fix_2385_sorting_hazard_classification
d91ab1f (ismail/fix_2385_sorting_hazard_classification) Fix failed test in test_wizard_dialog.
edf8442 Change to High, Medium, Low Hazard Zone
c06291f PEP8
3c82cb8 Re-order tsunami depth in impact report in tsunami IF population.
d15f36a Use value mapping in volcano polygon IF population to sort the result.
e88ca1f Update test to make it pass.
1b01752 Update name to more human friendly.
c0a0121 Use value mapping in volcano IF building to sort the result.
230636a Fix merged conflict.
99ca67b Merge pull request #2548 from ismailsunni/backport_from_master_2527
7e34526 Merge pull request #2539 from ismailsunni/iso_keywords_3
c403903 Fix order by using Vector Classification in classified polygon population IF.
f31ecf8 Add get_qgis_app to avoid error running one test.
8424cb8 Fix failed test.
7974568 (ismail/backport_from_master_2527) Remove some more unneeded files from plugin installer and fix version number reference in release.sh script.
4e1d509 Small fix to nsis plugin exe generator logic
13de436 Use Vector Classification to sort the hazard level in report.
8eee33c Fix wrong refactor.
ddaf518 Pull out definition method from KeywordIO class.
2b207f5 Put the hazard order from high to low in flood and tsunami IF
44fcd7b Merge pull request #2544 from ismailsunni/fix_2425_IF_volcano_unit
9dc5063 (ismail/fix_2425_IF_volcano_unit) Move population breakdown to above total affected.
2e9f1fa Use radius in IF Volcano.
31c247c Set maximum number of distances to 8
f644853 PEP8
d0aebdf Use proper km in Volcano Point IF Population.
0dfa119 Use kilometers in Volcano IF Building.
9876400 Fix failed test.
7b9f196 Add a better notes and coding style.
e126a60 Update color and add dry zone.
01a110e (ismail/iso_keywords_3) Change keywrod version data test to 3.3
b37c63c Add better color style for impact layer and help in IF parameter.
ffda2a1 Fix failed test and remove tsunami from flood raster IF.
f759eba New IF works in test suite but not in QGIS (crash).
de2714b Add notes for tsunami raster building IF.
6280ea2 Merge pull request #2541 from ismailsunni/revert_modify_test_data
4cafeaf Add low, moderate, high threshold for tsunami raster building IF.
611d7b6 (ismail/revert_modify_test_data) Revert test data.
1cf6c99 Merge branch 'develop' of github.com:inasafe/inasafe into tsunami_raster_building_if
1a19e42 Merge pull request #2540 from ismailsunni/fix_2384_unaffected_column
e68429c Fix failed test.
19060c3 Register tsunami raster building IF.
281a8fb Add tsunami raster building IF based on flood one.
0fe1e91 (ismail/fix_2384_unaffected_column) Fix failed test.
1b6f260 Add unexpected column for IF road.
ca33fc0 If IF use custom affected categories, do not show unaffected column.
9b3cf79 Remove not affected handling from IF volcano point.
4513745 Remove not affected handling from IF volcano polygon.
61f02d4 Remove not affected handling from IF Eq
0596e37 Put handling for not affected building in mixin.
d330a34 Add unaffected column in earthquake_building IF.
790e50f Add unaffected column in volcano_polygon_building.
7f476be Add allow_resampling properties
f24a1b5 (ismail/fix_2384) Update gitignore
106219b Update gitignore
5e4f051 Fix set IF provenance order.
6e34250 (ismail/if_provenance) Add proper start_time.
751ecaa Put set_if_provenance before generating keywords for impact layer.
bf6e136 Add new keywords to classified polygon people IF.
36200ad Add IF provenance in all IF.
4ba700b Read also IF Provenance for ImpactLayerMetadata.
e42c31f Add test_core.py
26fc7ad Add provenance to impact layer in EQ IF before returning result.
8a3a4dc Make metadata able to write and read provenance in json and xml.
0298f65 Make metadata able to write IF provenance.
d4c46f6 Fix test due to update if provenance.
637ed81 Adding method to save provenance to metadata object from dictionary.
8dfd8d2 issue #2438: add tests for issue
f03600c issue #2438: fix location source to come from BMKG
5e8d555 Merge branch 'realtime-flood' of github.com:lucernae/inasafe into realtime-flood
0c3e8b7 fix tests and refactoring
6e81b69 Adding if provenance step.
2aeeb1b Merge branch 'iso_keywords_2' into if_provenance
6e9a9a3 Merge branch 'develop' of github.com:inasafe/inasafe into iso_keywords_2
ef0fd19 Merge branch 'iso_keywords_2' into if_provenance
8b12b37 Merge branch 'develop' of github.com:AIFDR/inasafe into realtime-flood
6dab88c Use clone layer also for another failed test.
3ee8147 Add new xml file for data test.
4c39bb9 Use clone layer to avoid modifying test data.
7205a47 (rizky/develop) Merge pull request #2535 from ismailsunni/fix_2532
15de8de (ismail/fix_2532) Fix #2532
cc4c9e3 Use clone layer to avoid failing test unexpectedly.
a8640bd Merge pull request #2525 from ismailsunni/fix_2523
92c5fc1 Alway set keyword version to the latest version.
7168ee4 Use different keyword version, not taking from metadata.txt
7e7ed0d Update test after updating version.
b01fb76 Change version to 3.3
8244279 Delete no longer needed compare_version method.
1c5052e Use is_keyword_version_supported in wizard.py
87a825a Use is_keyword_version_supported in dock.py
5b5e961 Add is_keyword_version_supported method.
6bad151 Merge branch 'develop' of github.com:inasafe/inasafe into iso_keywords_2
20ace8b Merge pull request #2534 from Gustry/fix-2532
f953ae6 (etienne/fix-2532) fix var name #2532
90d9eef Add provenance for EarthquakeBuildingFunction
14f71df Enable adding data to provenance step.
a6a4f15 Remove duplicate ignored directory
06f0218 Merge branch 'develop' of github.com:inasafe/inasafe into iso_keywords_2
374e111 Merge pull request #2526 from ismailsunni/tx_configuration
1811233 (ismail/tx_configuration) Merge branch 'develop' of github.com:inasafe/inasafe into tx_configuration
ca8ffa6 Update transifex configuration to match with new projects
0314803 Delete unused file
661aa8f Merge pull request #2524 from Gustry/analysis
7215857 (ismail/fix_2523) Fix some test so that it's able to run individually.
b68c2ce Use get_unicode for output path pdf.
77e6627 fix indent
c52bf68 Merge pull request #2522 from Gustry/style
7e218f0 move setup_IF inside setup_analysis
1243315 fix test
88df6df analysis refactoring : moving optimal_extent and insufficient_overlap_message
e0adfa0 set the floodprone in blue
1955610 Merge pull request #2516 from Gustry/proxy
3eb5730 Update hash value for inasafe_data
a676b53 Merge pull request #2520 from Gustry/network
0a18144 fix error message if the server is down
b7a70de (rizky/develop_functionality) add generate report function
a9d69b5 Skip test since it's not used anymore in the new metadata.
c8963a6 Merge branch 'develop' of github.com:inasafe/inasafe into iso_keywords_2
8ca8508 Merge pull request #2518 from ismailsunni/Charlotte-Morgan-develop
3570e18 Update xml after running tests.
248c318 Remove old xml metadata code.
0f9c87d Fix failed test after fixing template.
7e3663e more fixes
846b74e remove file not used
d9feee7 ISO template fixes first pass
2c4d918 Merge branch 'develop' of github.com:AIFDR/inasafe into develop_functionality
9cb1233 PEP8.
1970d54 (ismail/Charlotte-Morgan-develop) Update test for @Charlotte-Morgan's PR.
b02e1da Merge branch 'develop' of https://github.com/Charlotte-Morgan/inasafe into Charlotte-Morgan-develop
46f3364 Skip no longer needed test.
c7f5e39 Update json control file for test.
14c3fa7 Update date time format.
d77537a Add datetime to date property
510a89d update docstring versionchanged
b351e97 add styles to flood test data and fix data audit for censur
2ec2042 Convert to String for source URL (QUrl)
30f415a Fix merge conflict
35a7581 Merge pull request #2517 from borysiasty/develop
55720ed Update hash value for inasafe_data.
ec9c841 Un skip a test (previously done for testing).
b60c7a1 Update keyword version and layer_purpose for test data.
88e5cf6 Fix weak extenstion slicer.
4cfc9bb Add patch for aggregation keywords.
103a9e5 Update test regarding layer_purpose.
b03c12e Fix test regarding generated xml file.
6ff3a7c Update test data keywords.
60a0659 Fix test in test_message_viewer.py
96b8717 Fix failed test in test wizard.
0ab02ee Remove missleading error message.
639ee76 Add keyword version for data test.
74e1089 Add some new keywords to for census metadata.
6f775b9 Add prob_fatality_mag to new metadata.
188ece8 (borys/develop) [Wizard] Yet another fix for repeated use.
f70155c [Wizard] Use standard QDateTimeEdit instead of QgsDateTimeEdit. Fixes #2515
85cb82b Ensure the 'non-matching keywords' table uses strings imported from definitions. Fixes #2349.
fa0fbb9 Fix serializing classified raster values
b2e3b0d [Wizard] Clear old inputs on repeated use. Fixes #2514 and #2467
4b0c659 #667 Use the network manager provided by QGIS and move it to the file_downloader file
35b9b66 Fix merge conflict.
c857e8a Update hash value for inasafe_data
f7705ca Update file control for metadata test.
a1632b2 Update test keywords.
675cbc7 Revert changes related to new key for aggregation metadata.
4cf9fac Update expected value to make test pass.
3e384cc Update test keywords.
1490431 Update keyword path in test.
22b6cc8 (charlotte/develop) Update default road action checklist
42e920d Update default population action checklist
f906ec5 Update default buildings action checklist
8687961 Update keywords for datatest.
6208683 Add tuple property
a999120 Update keywords path.
cd5375a Set keyword to generate file because it's never been saved.
1a7aec1 Read keywords again after saving to a file.
1f84a73 Fix keywords version and exception
5bd5dda Update test data keywords
c07596c Update test data keywords
b69d529 Update test data keywords.
647536c Add ListProperty
8844920 Add layer_purpose and keyword_version.
9b4e06c Add layer_purpose for generated aggregation layer.
b879727 Add keyword version to metadata if not found.
cc8d440 Add duct type to for aggregation attribute to return None.
5ff7094 Use default value in metadata as None.
3191a00 Merge pull request #2512 from timlinux/less-noisy
0924aa2 Merge branch 'develop' of http://github.com/AIFDR/inasafe into realtime-flood
9e08a6a develop #2476: Update tests and push flood logic
c80b5e8 Merge pull request #2511 from Gustry/network
d8802d5 (origin/less-noisy, less-noisy) Comment out many debug messages that don't contribute much and add a lot of noise to travis logs
889a742 Update keyword for aggregation.
9a359e3 Fix keyword_io copy keywords method.
bf8c553 Use additional type of exception.
c2e8733 Use old aggregation key.
faf5a6d Add more verbose exception.
b2d3349 use read_iso19115 for reading metadata
5fec957 Update data test metadata.
503fd98 Use read_iso19115_metadata to read metadata.
2c2022e inform the user about the network status in the OSM downloader
69c18e4 Merge pull request #2510 from Gustry/evacuation-center
cceff90 Fix for changing key in aggregation.
71482d9 Add test for old .keywords.
5c0b317 Change key for aggregation keywords.
5805081 Update metadata for aggregstion layer.
14b3d90 Add FloatProperty for metadata.
2f68c30 Update keywords for aggregation.
9b94c60 Resolved merge conflicts
3db5354 replace potential IDP by evacuation center
04cee5d Merge remote-tracking branch 'origin/develop' into standards
0745de6 Added note about using date picker for date in keywords editor.
bbe7182 Merge pull request #2509 from borysiasty/develop
cef742d Added flood prone areas change to metadata
0fd0703 Merge pull request #2501 from Gustry/floodprone
e51122a Merge branch 'develop' of github.com:AIFDR/inasafe into realtime-flood
9219279 Resolved merge conflicts with master
da783ea Change key for metadata in test.
8ec2bce Add boolean property
3a03795 Merge branch 'develop' into standards
47e2099 Merge pull request #2498 from timlinux/develop
69ce4a5 Update data test keyword
6327e0a update metadata
3b2f212 Update test data.
0a82135 Update test data's metadata
5a3c676 Automatically add keyword version
b28012b Fix failing test in impact function manager tests caused by introduction of bayes EQ IF
b4de3aa [Wizard] Get rid of rest of eval() statements. Fixes #2329
8597c0e [Wizard] Replace evals with KeywordIO.definition
1022c91 Merge remote-tracking branch 'upstream/develop' into develop
bfccb16 Merge branch 'develop' into floodprone
d80a5e7 [KeywordWizard] Use QDateTimeEdit for date keyword. Fixes #2499
77300a4 Revert commit eb489403bf
9f560fd Merge branch 'develop' of github.com:AIFDR/inasafe into develop
5d9d5b3 Merge pull request #2508 from timlinux/fix-2504
e9f87db (origin/fix-2504, fix-2504) fix #2504 - exception raised when messaging cell contains nested table or bullet list due to slashes param not being accepted by table class to_html() method.
2e090c9 raise error if no xml for file based layer.
c477db4 Update rule to catch invalid xml metadata file.
6d8b182 Push tags to upstream rather than origin
969ef5b Add more verbose exception message.
b9fb102 Fix test_update_keywords in test_keyword_io
8e57bcf Remove custom failed test message.
9b138a6 Merge branch 'iso_keywords_2' of github.com:ismailsunni/inasafe into iso_keywords_2
160ffb4 Update keyword to make pass test in test_io.
7ecd164 Fix for test in test reports.
1c49d85 Add keyword version in test data
955f4c3 Add more verbose Exception message.
69220b2 Add obtain specific keyword.
c150fe2 Add integer property.
afe12ce Add layer_purpose value to old data test.
7fd251b Update test data in metadata module.
236fca1 Add .xml to clone method.
543b887 Add target_field to impact layer metadata.
1f7122f Add volcano_name_field to hazard layer metadata.
75e1819 Add road_class_field to exposure metadata.
c7eef29 Add generate impact layer's keywords function.
a8db253 Add more versose error message
eb48940 Fix #2504
d43d148 Merged master changes to develop
c7ed150 fix typo in OSM downloader
5914bb7 add flood prone to the OSM downloader
bebaee0 Add more versose error message
ebecbff Update metadata.
b5468e5 Use .xml instead of .keywords.
e83c6a4 Update metadata.
68f3f2a Add date to metadata migration verificaiton
e3b00c5 Remove date in keywords (for now).
355c812 Forget about date for now.
98cc63a Add better tester when migrating a metadata.
41064ca Add Dictionary Property in Metadata.
7733079 Add better message to find missing keywords.
ed9b0cd Update xml file to iso 19115 if not found.
bc28009 Fix for failing test with ITB Bayes eq function introduction
68235e3 Try to read .keywords file if the xml file is not compatible.
31eb225 Migrate to use ISO 19115 metadata.
6cffa60 Added ITB Bayesian IF to registry and changelog
9adae3a Refactor metadata utilities location.
7c2c56d Merge pull request #2350 from dynaryu/develop
2f21e24 Update keywords file.
de1f217 Merge pull request #2493 from ismailsunni/changelog-3.2.4
4739796 Fix unicode reading.
d4ee522 Nicer asserts for wizard dialog
3bdd18f Dont use message param for unittest builtins as you get better diagnostics if you leave it out
26ebea9 (ismail/changelog-3.2.4) Fix travis and pypi link in README.
cd29284 Add changelog: add new IF Classified polygon hazard on polygon people
3c3bed5 develop #2476: major proper refactor and add realtime flood
e29fb0e Formatting cleanups to wizard
fd68360 Merge pull request #2487 from borysiasty/develop
2cabd21 Merge pull request #2483 from timlinux/keywords
148acd5 Temporary skip unit test.
38aa237 Merge pull request #2442 from Samweli/develop
a7613d9 Fix unicode frustation.
4fd6416 Remove trailing space. Use Cmd+Alt+L to reformat the json file in PyCharm.
2e45b2e changed more methods accordingly to the standards
49c53c7 Change keyword version to string.
98637ed added comments on unit test
b3c3f6b Add datatype to iso metadata. Need to be reviewed later.
ad0b951 Update test file for test metadata.
f14ea0a Fix missing space in json file.
b90196b Change document_date to date.
f805cc7 Update existing_impact.json after changing document_date to date.
fb9fd86 Always return keyword version as string.
3e2b354 Omit None value in ISO metadata from dictionary representation.
24515dc Add read_iso19115_metadata method and test.
221f82a Add create_iso19115_metadata methods.
548edb5 Add update_from_dict method for metadata.
95254f1 Fix unit test.
31a1db5 Add unit test
0d1f4be develop #2476: refactor realtime
3839486 Comment --with-id that makes the problem in ubuntu nosetests.
9b1951d Fix tests for test_clip_vector_with_unicode
d67bac1 Fix failed test: test_read_keywordless_layer.
2c4b37d fixed accidentally edited test
51194c2 Merge branch 'develop' of github.com:AIFDR/inasafe into develop
9de3dcc formatted code accordingly to the standards
897f584 Merge branch 'develop' of github.com:inasafe/inasafe into develop
22c1fe1 Remove old xml metadata.
0459e99 Merge pull request #2486 from ismailsunni/wizard_additional_keywords
b4c711c develop #2476: support for PetaJakarta Floodmap
797aec1 [IFCW] After registering keywords in the KW sub-thread, don't display again the step from where it was called. Fixes #2347
0e1ba07 pep8 and Pylint fixes
6660f30 [Wizard] Add Keywords Creation Wizard confirmation step. Fixes #2422
ca08c97 Merge branch 'develop' of github.com:AIFDR/inasafe into develop
c3a093d passed pep8
db1d325 Dont crash PJ downloader when @charlotte-morgan says she does not wish to create the non-existing download directory.
e3dfead Refactor PetaJakarta downloader to accommodate requests from @charlotte-morgan. See https://github.com/inasafe/inasafe/pull/2472
bb849bf (ismail/wizard_additional_keywords) Merge branch 'develop' of github.com:inasafe/inasafe into wizard_additional_keywords
069fa03 Resolved merge conflicts
8c3ed16 Add test for additional keywords.
f611e13 Merge pull request #2478 from timlinux/fix-2475
fa49b9f (origin/keywords, keywords) Fix for failing keywords tests
fced60c Use wrap_slash for filename cells
b9e7942 Added wrap slash functions in messaging so that long filename cells can be wrapped
827771f Resolved merge conflicts
4a3e818 Updated metadata.txt
964917d Working implementation of on the fly projection for polygon flood on building points/polys. fix #2475
2d87c4d Merge branch 'develop' into fix-2475
fd925f9 Initial implementation for #2475 - support On the fly projection in IF
0acd4d5 Added an entry for PetaJakarta downloader to metadata.txt
a38e216 Implementation for #2471 - add support for loading PetaJakarta data in QGIS
c471a96 First order implementation prototype for adding petajakarta data to InaSAFE
dc2433e refactored run function in the new IF
489bbad added icon for area
1aead6b (ismail/master) Merge pull request #2466 from timlinux/master
9303622 Merge pull request #2465 from timlinux/fix-2464
ba88e79 (origin/fix-2464, fix-2464) Fixed failing test for #2464
922bc87 fix #2464 - support point buildings when doing polygon flood analysis
f81091f checked for None type geometry object
c6dcd77 modified analysis only from selected extent
a48b212 Merge branch 'develop' of github.com:AIFDR/inasafe into develop
36296e7 created new color symbology
97c0fbe Merge pull request #2447 from timlinux/inasafe-2446
4166ebf (origin/inasafe-2446) Merge branch 'develop' into inasafe-2446
fe3afdc Sort out more conflicts with master that were not merged properly
817fe82 Sort out more conflicts with master that were not merged properly
9d2df1f Merge remote-tracking branch 'origin/develop' into develop
754373e Resolved merge conflicts from master so develop is now in sync with master
13a6985 Merge pull request #2456 from lucernae/translation-3.2.2
5487cf1 Merge pull request #2458 from lucernae/update-raven
526ac85 (rizky/translation-3.2.2) Recompile and re add qm translation files
c6f2a5a Fix file attributes for qm files
c671446 (rizky/update-raven) Update sentry dsn for InaSAFE desktop and Realtime
e26efd5 Update translations
9248f6d Update strings.
21ab9f5 Update translation
2070618 Update translation strings.
1f1776d Exclude untranslatable strings from tr function.
973d0c8 Set version to alpha 3.2.2
ad1fafe Update strings translation.
de81ae4 Fix strings issues.
df5f474 Update translation.
7ac7137 Update strings.
c7f4ecc Merge branch 'develop' of github.com:AIFDR/inasafe into translation-3.2.2
cb81a44 Fix returning IF ids in list-function in inasafe
fe9c8c0 Modify inasafe-cli to return filtered IF list
6f40753 edited tests to comply with travis
95a53e1 a fix for one travis failure
c29bceb added check for area geometry before any calculation
355ff06 removed unused imports
6ff8aed Merge pull request #2454 from Charlotte-Morgan/develop
4513c5e using generic polygon for testing the new IF
8afe6fd modified new IF to use single and multiple events
c55ff94 Merge branch 'develop' of github.com:AIFDR/inasafe into develop
8f8887c intersected census with the current flood data
ab3b634 fixed the s
8bd0c2a tweaks to context help
4dde811 tweaks to context help
058829d refactored methods in area report mixing
6c2f40a Add test-translation for fr, es_ES, af
b59b27a Update strings.
be5b0b6 Update translation from transifex.
4a54602 set develop metadata to alpha mode
a1f3ada Merge branch 'master' into develop
558f0d6 Merge pull request #2450 from timlinux/gource
07b8ce7 (origin/gource) Updates for gource
adcff11 added % symbol to all percentages in report
b52fcc3 Merge branch 'develop' of github.com:AIFDR/inasafe into develop
56750c1 (inasafe-2446) Put the OSM layer always to the bottom of the legend.
00bd2e6 Added option to add OSM tile layer
f71c7e7 Move misplaced import
ed5340c Wrap function to read keyword file in KeywordIO
1c090af change on test layer legend index on dock
eb5cb4b updated test_run on the new IF
bfc2cef added licences for sample data
adbbe6b added realistic test data
c6d3229 Merge branch 'develop' of https://github.com/Samweli/inasafe into develop
54b8413 started code formatting
06e9228 Merge pull request #1 from timlinux/samweli-develop
ca48fcb (origin/samweli-develop) Code formatting and style tweaks
080bc65 cleared unwanted comment in test wizard
09b869d fixing classification failure
1e15abc a fix in test wizard
f2db14f fixed 1 error
a1c8656 fixed 2 failures in travis
c6297b9 fixed 6 failures
0886391 intergrated mixin usage in the new IF
0d95f25 Added area report mixin
d188b5f removed a large unwanted file
4e4d66d fixed merge conflicts after pulling from upstream/develop
df50234 fixed merge conflicts
ce9f0ef taking id & population from keywords
482a48d added the new IF
5ec6cca correct typo
a58dda6 change npy to csv for input
90c718b Merge branch 'develop' of https://github.com/AIFDR/inasafe into develop
d375b4f add itb bayesian fatality model
Changelog for version 3.2.0
================================
40c5ad2 (HEAD, upstream/develop, develop, 3.2-release-prep) Merge pull request #2394 from lucernae/translation
5d9cabb translation
cfbeaff Merge pull request #2391 from ismailsunni/develop
b597c15 Merge pull request #2386 from timlinux/inasafe-2265
0b14adb Merge branch 'develop' of git://github.com/AIFDR/inasafe into develop
635e327 All is translated.
2570d94 Update strings.
2f18f08 Update translation from transifex
513e334 New string to be translated.
4e941fb Composer template update for A3 Landscape - see #2265
00ecadf Commit missing template changes for #2265 fixes
1bcaa23 Merge pull request #2387 from ismailsunni/develop
e61cf6c Merge branch 'develop' of git://github.com/AIFDR/inasafe into develop
3d7d1b8 Merge pull request #2383 from ismailsunni/develop
6c598a0 fix for #2265 - improve map layout and fix inconsistencies
7b13a75 Fix typo.
8983f5c Put new string inside tr().
39b5474 PEP8.
3a1fd6a Rename Null name field in aggregation layer to Unnamed Area [feature.id()]
ccf512d Add handlers for Null in messaging item and abstract_list
b513b65 Rename Null value for attribute's value in aggregation layer.
2b0da22 (origin/develop, origin/HEAD) Merge pull request #2377 from timlinux/inasafe-2313
fff2e8c Merge pull request #2379 from ismailsunni/apidocs_2
06e9529 Merge pull request #2378 from timlinux/2210
2e85e93 (origin/2210, 2210) Fix syntax error in aggregator.py
e037939 (origin/inasafe-2313, inasafe-2313) Fix failing test in #2313 branch
34145a7 Further enhancements for #2313 - improve keyword display. Added if branches for cases when we want to show values from definitions.py rather than keyword literal.
d6bd562 Further improvements to keywords display in dock. See #2313
8357391 Merge pull request #2375 from lucernae/realtime
dd17599 fix #2210 - Use context based feedback during analysis to properly reflect what clipping behaviour is in place.
4ba88f2 Merge pull request #2374 from timlinux/3.2-release-prep
e96dcea fix #2342: change report message
f3d2c8d Removed stray comment in keywords_io
ea18d12 fix #2313 - Use sensible ordering for keywords in dock.
eca7688 (inasafe-1212) Merge pull request #2371 from lucernae/realtime
ae22d3d (origin/3.2-release-prep) Updated metadata for release
f6e4f9e Fix potential bug with realtime extract process:
b9758be Merge branch 'develop' of git://github.com/AIFDR/inasafe into apidocs_2
33ad557 More explanation for make target.
82d5254 Fix favicon path.
a457496 Update directory again.
476d781 Update conf.py and make target
5937bbc Move to proper directory
c4129d3 Merge pull request #2368 from timlinux/inasafe-2367
c4d1a6e Update make target for apidocs
f2d18db (origin/inasafe-2367, inasafe-2367) fix #2367 - regression caused by #2322
c25bbca (inasafe-2357) Merge pull request #2364 from timlinux/inasafe-2322
6a6ead5 Update directory for better separating.
0b26209 Generated file from sphinx-quickstart
b0d05a1 (origin/inasafe-2322, inasafe-2322) Fix docstring in add above layer method
240e33e Use single line for method signature in add_above_layer as per @ismailsunni's PR review for #2364
10ce427 Fixed failing test for add_above_layer method in dock
b64b590 Remove old api-docs
d58ef29 Add make target for apidocs
1e1eccb In progress added tests for add_above_layer for #2322 - still failing though
35a7846 fix #2322 - ensure impact and intermediate layers are added directly above exposure and aggregation layers respectively. I also made various other tweaks and optimisations to the related code paths in dock.
cdfcacc Merge pull request #2363 from ismailsunni/develop
63c8f41 Set legend title for generic and volcanic IFs
cef2158 Set legend title for road IF.
a135c14 Set legend title for population IF.
b7d9247 Set legend title for flood building.
e8c733f Merge pull request #2360 from cchristelis/bugfix/2318
f594d63 Merge branch 'develop' of github.com:AIFDR/inasafe into bugfix/2318
2a98cd6 Fixing removal of large numbers in postprocessors.
687878a In progress implementation for #2322 - layer inserts but not showing in legend.
8b3a63c Merge pull request #2358 from Samweli/develop
1abf7fa Fix syntax errors for #2322
8afe885 Merge remote-tracking branch 'upstream/develop' into inasafe-2322
d6d0243 Merge branch 'develop' of github.com:AIFDR/inasafe into develop
ce3f94b translated correctly the TZ minimum needs profile
e9c502d In progress fix for #2322
7740c52 Merge pull request #2356 from timlinux/parameters
81d2d9c (origin/parameters) Second part of fix #2355 - make checkboxes to the left of checkbox labels
4da2685 Part one of #2355 fix - make checkable group boxes formatting better and remove excess widget padding.
b3188dc Merge pull request #2352 from tomchadwin/develop
2be5e4f Travus: Move python-software-properties install from pip to addons
bc3107f Travis: Install python-software-properties via pip
d1f0be7 Travis: Avoid sudo for git install
fbd9562 Merge pull request #2351 from timlinux/pep8
4f23b5e Travis: Install packages via pip
ce5e333 (origin/pep8) Fix pylint
6c2672c Fix pep8 errors
7d889134 Merge pull request #2348 from borysiasty/develop
b225fef [Wizard] Fix main icon
c4a8929 Merge pull request #2345 from cchristelis/bugfix/2318
c529521 Merge pull request #2346 from borysiasty/develop
e7a67c6 Merge branch 'develop' of github.com:borysiasty/inasafe into develop
955e522 [IFCW] Fix the test
98932ef [IFCW] Try to fix the test
babe4b3 [IFCW] Embed the Extent Selector dialog in the wizard window.
14068ed Merge pull request #2344 from timlinux/osm-url
3cdfba0 [IFCW] Try to fix the test
bddf894 [IFCW] Embed the Extent Selector dialog in the wizard window.
0b46e81 (origin/osm-url) fix #2343 - Use InaSAFE uri for osm downloader
916a23c Merge pull request #2336 from ismailsunni/develop
1dce5a8 Compile translation.
bf6159f New translation.
f2a220a Translation file updates
4a31cd9 Add proper punctuations.
075c20f Fix merged conflict.
c67b271 Merge pull request #2341 from lucernae/indicator
cdc7311 fix pep8 & pylint
c040624 Merge branch 'develop' of github.com:AIFDR/inasafe into indicator
236f393 fix #2340: correct bug to clearly get the relevant shake id
b1d4812 Merge pull request #2339 from timlinux/3.2-release-prep
f7c31ad Updated changelog for release
185a1e4 Fix for #2260 - inasafe package is too big
26634c9 Merge pull request #2337 from lucernae/fix_pylint
d11b1f7 Merge pull request #2338 from timlinux/develop
0b6c86f fix timezone issues and bug in getting the last shake map
d231495 Fixes for broken wizard tests in PR #2333 in Charlottes branch
8b33087 Merge remote-tracking branch 'upstream/develop' into develop
0c92063 fix_pylint: with some tentative modificatin
fae4fa1 (ismail/develop, inasafe-2336) Compile translation.
645b449 Add Spanish in translation.
da8f076 Translation file updates. All strings are translated.
38f50bb Translation file updates
395b4e6 Pull translation.
5642ae8 PEP8
75a6d5e Merge pull request #2330 from lucernae/indicator
945ccc3 [Wizard] String update
ebfaee4 Merge branch 'develop' of github.com:AIFDR/inasafe into indicator
2a3b7a9 fix pep8
24959f3 Merge pull request #2335 from borysiasty/develop
068437a [Wizard] Fix #2327
62c5f7d [IFCW] Properly detect layers with mismatching keywords version
952accd (charlotte/develop) update user facing names in definitions.py - take 2
4c0deab update user facing names in definitions.py - take 2
1e41f51 update user facing names in definitions.py - take 2
a899285 Merge pull request #2295 from lucernae/fix_zero_impact_exception
1c8ecc8 Merge pull request #2331 from timlinux/inasafe-2253
2c3dc2c update user facing names in definitions.py - take 2
d012926 (origin/inasafe-2253) fix #2253 0 remove scalebar from map template
009bf1b Merge pull request #2328 from timlinux/inasafe-2313
fe7c355 Merge pull request #2324 from cchristelis/bugfix/2318
c6b29ed Merge pull request #2315 from timlinux/develop
bdc682e Merge pull request #2326 from Charlotte-Morgan/develop
901ebda Merge pull request #2323 from borysiasty/develop
a6f4354 Implementation for #2313 - let the keywords table keys be shown from definitions list rather. Also refactored the keywords table generation into keywords.io so that it can be re-used elsewhere...
eb9034a fix bug in notify shakemap push
ab6034d tweak wizard_dialogue.py replace "register" with "assign keywords"
88a0d18 Fixing tests
7ff29f6 add Realtime indicator features
eb46929 Merge branch 'develop' of github.com:AIFDR/inasafe into bugfix/2318
0c6a1be Hiding empty/'no data' columns
fae9eb3 [IFCW] Better explanation why a chosen layer has unsuitable keywords/type
7f87744 Merge branch 'develop' of github.com:AIFDR/inasafe into fix_zero_impact_exception
d93a3a6 Fix untranslatable strings
ce915b6 [IFCW] Don't list xml files in the browser + pep8 fixes
231c826 Merge pull request #2307 from cchristelis/bugfix/2276
e950d2c [IFCW] Properly disable the Next button when re-entering steps with browser. Fixes partially #2282
2e258b1 Merge pull request #2317 from borysiasty/develop
8925217 [Wizard] Better prevention from creating multiple wizard sessions. Fix some simple cases of #2075
9b7d51d Merge pull request #2316 from ismailsunni/develop
654ddd7 Change text in wizard. Fix #2312
cfa59a4 Merge pull request #2314 from ismailsunni/develop
b5cf220 Added sorter for grid.xml files
f885134 Updated minimum needs post processor to fix nan bug.
93dca6e All is translated. Not yet compiled.
8470a43 Update translation string.
730d90b Fix sentence.
07efec3 Update string translation after fixing typo.
c58e338 Fix typo. Fix #2310. Fix #2309.
1a89737 All strings translated. String freeze for version 3.2
8dea44e [Wizard] Make the dialog big enough to avoid scrollbars in KDE. Please revert if it breaks anything on Windows.
2ab0678 Merge pull request #2308 from borysiasty/develop
bb40275 [IFCW] Fix #2217
612b7e2 Bugfix: don't count unaffected buildings into total affected.
89924ea Merge branch 'develop' of github.com:AIFDR/inasafe into fix_zero_impact_exception
7ba27fe fix #2220: - Earthquake Building (Raster Hazard - Vector Exposure) - Generic IF Classified Polygon Building (Vector Hazard - Vector Exposure) - Flood Raster Road (Raster Hazard - Vector Exposure)
89a5671 Merge pull request #2304 from ismailsunni/develop
754d0c3 Translation file updates
d27152c Merge pull request #2297 from Charlotte-Morgan/develop
604c343 tweak wizard_strings.py
297adf1 Merge branch 'develop' of github.com:AIFDR/inasafe into fix_zero_impact_exception
2f9b30a Merge pull request #2303 from ismailsunni/fix_2301
8c3865c (ismail/fix_2301) Fix #2301
9911625 Merge pull request #5 from timlinux/charlotte-develop
1b637c1 (origin/charlotte-develop) Fix for unused argument error in wizard
54617e9 Merge pull request #2298 from timlinux/pycharm-in-readme
82448e5 fix #2288 to gracefully handle cases where zero impact occurs for flood polygons on buildings.
0b533ff fix #2221 - ensure override cursor is restored after an error occurs.
120b605 Give polygon flood on roads IF a better name. Handle zero impact better in latter IF. In progress fixes for #2288
83f31a8 Fix #2286 - Keyword wizard fails on to_text call
e368524 (origin/pycharm-in-readme) Updated README to include thank you to pycharm
51d4e0a tweak wizard_strings.py
0cd7c62 tweak wizard_strings.py
58d59f6 tweak wizard_strings.py
98c76c4 tweak wizard_strings.py
1dc7142 Merge branch 'develop' of github.com:AIFDR/inasafe into fix_zero_impact_exception
845dd52 fix #2220: raise ZeroImpactException when no roads intersected
4ce19d9 Merge pull request #2294 from timlinux/inasafe-2288
c4cf2e3 (origin/inasafe-2288) fix #2288 to gracefully handle cases where zero impact occurs for flood polygons on buildings.
40086c6 fix #2221 - ensure override cursor is restored after an error occurs.
e429958 (inasafe-2288) Merge remote-tracking branch 'upstream/develop' into inasafe-2288
365b67c Merge pull request #2287 from timlinux/inasafe-2286
c7f0e41 Give polygon flood on roads IF a better name. Handle zero impact better in latter IF. In progress fixes for #2288
894e706 tweak wizard_strings.py
82b4a39 tweak wizard_strings.py
6b54159 tweak wizard_strings.py
5b88db1 tweak wizard_strings.py
28dd12f tweak wizard_strings.py
6a02dee (origin/inasafe-2286, inasafe-2286) Fix #2286 - Keyword wizard fails on to_text call
01607c5 Merge pull request #2283 from ismailsunni/develop
526935a PEP8.
9461435 Fix #2279, typo.
e51a98c Merge pull request #2280 from Charlotte-Morgan/develop
7e38671 Merge pull request #2275 from cchristelis/bugfix/2228
97441ab Update disclaimer text in defaults.py
cb440cd Update text in wizard_strings.py