config.yml
@@ -10,7 +10,7 @@ |
# The current version of your application. This will be advertised |
# through your REST API, and should take the form |
# "<major_version>.<minor_version>.<patch>". |
-version: 0.2.38 |
+version: 0.2.39 |
|
# The kind of application. Currently eRAMS supports two kinds of applications, `system` and `app`. |
# System apps have pre-configured installation and configurations, while all `app` applications are |
services.py
@@ -357,9 +357,11 @@ |
for prop in feature['properties']: |
value = feature['properties'][prop] |
if is_number(value): |
+ if float(value) < -999998: # Check for '-999999' representing null values and change them back |
+ value = 'No Data' |
if prop in indicator_lookup and indicator_lookup[prop]['unit'] is '%': |
value = value * 100 |
- value = round_number(value, 2) |
+ value = round_number(value, 3) |
table_row.update({prop: value}) |
|
# Store the associated HUC code |
static/package.json
@@ -1,6 +1,6 @@ |
{ |
"name": "er2_watershedpriority", |
- "version": "0.2.38", |
+ "version": "0.2.39", |
"target": "web", |
"module": "index.js", |
"license": "MIT", |