I am trying to import a text file containing latitudes and longitudes into R
, which all have different degrees of precision (i.e. points after the decimal). When I try to use read.table
, the data imports but cuts off at 5 decimal places. Is there a way around this? I have not found anything in the documentation that worked.
An example of data from the text file:
35.326354762000001 91.761496755
35.512443542 92.356571172
35.319078183999999 92.233513991
35.315654623 91.912230315
35.293864976999998 92.442997238
35.435569418 92.231860894
Thanks.