felt / geo

A collection of GIS functions for Elixir
MIT License
649 stars 88 forks source link

Use a custom string_to_float/1 function instead of plain String.to_float for ensure_numeric #221

Closed IceDragon200 closed 2 months ago

IceDragon200 commented 2 months ago

String.to_float will not handle integer representations, instead Float.parse can be used, I almost wanted to roll something myself until I remembered Float.parse exists.

Related

220

IceDragon200 commented 2 months ago

Okay everything should be in order now