I have followed single object that represents location from csv and json:
"value_location1": {
"json_lat": "-118.3844000",
"csv_lat": "-118.3844"
},
"value_location2": {
"json_lat": "-117.933122",
"csv_lat": "-117.933122"
},
Actually i have array of 145k (importent) of these objects and I need find good way to make value_location.csv_lat
and value_location.json_lat
to be equal.
As you see json_lat
provides -118.3844000
when csv_lat
- -118.3844
.
Both have the same value as double but not as String,
What should be, high performance, way to do that?
Thanks,