Skip to content

Commit

Permalink
[processing] Use null instead of nan for invalid stat values in join …
Browse files Browse the repository at this point in the history
…by location summary
  • Loading branch information
nyalldawson committed Apr 1, 2019
1 parent 7bf9279 commit 39a255c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/plugins/processing/algs/qgis/SpatialJoinSummary.py
Expand Up @@ -26,6 +26,7 @@
__revision__ = '$Format:%H$'

import os
import math

from collections import defaultdict

Expand Down Expand Up @@ -338,7 +339,8 @@ def addField(original, stat, type):
stat.finalize()
for s in numeric_fields:
if s[0] in summaries:
attrs.append(getattr(stat, s[2])())
val = getattr(stat, s[2])()
attrs.append(val if not math.isnan(val) else NULL)
elif field_type == 'datetime':
stat = QgsDateTimeStatisticalSummary()
stat.calculate(attribute_values)
Expand Down

0 comments on commit 39a255c

Please sign in to comment.