def get_width_at_latitude_m(self, lat):
"""
Returns the width of the bounding box at the given latitude, in meters.
"""
east = (lat, self.e_lng)
west = (lat, self.w_lng)
return vincenty(east, west).meters