I have thousands of company records I need to import in a Drupal site. I created a content type Business Directory with fields

-AddressField - Field type: Postal address, Widget type: Dynamic address form

-Location field - Field type: Geofield, Widget type: Geocode from another field

-Position - Field type: Geofield, Widget type: Latitude / Longitude

In Manage Display,
-AddressField - Format: Default

-Location field - Format: Latitude/Longitude

-Position - Format: Well Known Text (WKT)

For Location, it is geocoded from AddressField. After importing a csv file with data, business locations are being mapped correctly but latitude and longitude are not filled for the Position field. It can be filled if I enter the latitude and longitude myself, but we are talking about thousands of records that need to be added in. Is it possible to get the Latitude / Longitude data transferred over to the Position geofield instead of entering the latitude and longitude myself for the Position geofield?

Like on https://www.drupal.org/node/1452616, do I need a feeds tamper module? Do I need a custom converter? If so, where?

NOTE: The reason why I have it like this is because I am attempting to create a proximity search similar to what is on https://www.drupal.org/node/1944648. I was able to successfully create a map for this also. When I enter the latitude and longitude for a business in myself for the Position geofield, it appears on the map. When I have nothing in the Position geofield, it does not appear on the map.

Any help will be greatly appreciated. Thank you.