Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Float array elements are sometimes converted to integers #104

Open
MartinNowak opened this issue Jan 14, 2015 · 3 comments
Open

Float array elements are sometimes converted to integers #104

MartinNowak opened this issue Jan 14, 2015 · 3 comments

Comments

@MartinNowak
Copy link

[30.0, 27.2, -2.0].mongoize returns [30, 27.2, -2.0]
and
[30.0, 27.2, -2.0].mongoize.map{|e| e.class} returns [Fixnum, Float, Fixnum]

@MartinNowak
Copy link
Author

I found this while storing geo coordinates using a Mongoid model. Some of the coordinates are now Integers while others are Floats.

Apparently it's done deliberately (see here and here), but it makes no sense to convert floats to integers, just because the fractional part is zero.

@arthurnn
Copy link
Contributor

I think this was added to fix another issue, see 701a8f7

So when you have "2." it would convert to 2... but 2.0 should be a Float IMO.

@MartinNowak want try to fix this and send a PR?
thanks

@MartinNowak
Copy link
Author

Sure will do.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants