Stuartlab-UCSC / hexmap-view

MIT License
3 stars 3 forks source link

Cartesian Product Doesn't Work With Two Binaries having No NA values. #49

Closed mrJeppard closed 7 years ago

mrJeppard commented 7 years ago

Easiest way to re-create is a cartesian product of two dynamic binaries.

The colormap is not generated in this case:

image

mrJeppard commented 7 years ago

ended up being a problem with using parseFloat to identify strings in layers.js

parseFloat("1, 0") === 1.0

changing to Number("1, 0") seems to have worked