Some locations well in the middle of a country return no result.
Here is an example in Colombia. This two locations that are in the middle of the country, one returns no result while the other returns the right country.
.
import gazetteer
g = gazetteer.Gazetteer()
In : list(g.search([(-74.0695256592229, 4.59801912633948)])) # Bogota, capital of Colombia
Out: [GeocoderResultBaseModel(lat=4.59801912633948, lon=-74.0695256592229, result=None)]
In : list(g.search([(-74.46824202447863, 4.8758402063754325)])) # West of Bogota
Out: [GeocoderResultBaseModel(lat=4.8758402063754325, lon=-74.46824202447863, result=LocationBaseModel(lat=4.879418006313469, lon=-74.4822558677673, name='Guayabal De Síquima', admin1='Colombia', admin2='Cundinamarca'))]
Some locations well in the middle of a country return no result.
Here is an example in Colombia. This two locations that are in the middle of the country, one returns no result while the other returns the right country.
.