2

我正在尝试编写一个基于邮政编码、纬度和 lng 计算某个公式的程序。

我最初的想法是为每个邮政编码创建一个对象。

class destination():
def __init__(self, zipcode, count):
    self.zipcode = zipcode
    self.count = count

def getCount(self):
    return self.count

def getZip(self):
    return self.zipcode

def getLatitude(self):
    return self.lat 

def getLongitude(self):
    return self.lng 

def __str__(self):
    return "%s at %s , %s" % (self.zipcode, self.lat, self.lng)

def getCoords(self):
    '''
    Must be called before getLatitude or get Longitude
    '''
    self.place, (self.lat, self.lng) = gn.geocode(str(self.zipcode))  
    self.city = self.place.split(",",1)
    self.name =  self.city[0]
    self.value = str(count)+","+self.name

    return self.value

这很好用,因为我可以成功地遍历列表并创建对象并从中提取必要的信息

zipList = ['54971','46383','90210']

for i in zipList:
    i = destination(i,count)
        count += 1

将返回

1,Ripon
-88.8359447
43.8422049
2,Valparaiso
-87.0611412
41.4730948
3,Beverly Hills
-118.4003563
34.0736204

我似乎无法理解的是如何设置程序,以便它遍历调用具有每个项目的正确信息的 hasrsine 函数的列表。

def haversine(latStart,lonStart,latEnd,lonEnd):

示例:如果我的列表是

zipList = ['54971','46383','90210']

然后它将对 54971 到 46383、54971 到 90210 和 46383 到 90210 进行计算

4

4 回答 4

4

询问列表中的所有邮政编码对,并使用它们:

import itertools

for start, stop in itertools.combinations(zipList, 2):
    print start, stop
    # now pass start, stop to your function
于 2013-01-24T23:44:24.517 回答
3

尝试使用 itertools,组合功能可能是您想要的。

于 2013-01-24T23:42:14.017 回答
0

您可以创建目标对象列表并获取创建列表的组合,并通过 hasrsine 函数迭代返回的生成器。

dests = []
for i in zipList:
    dests.append(destination(i,count))
    count += 1

dests_gen = itertools.combinations(dests, 2)
for dest_typle in dests_gen:
    pass
于 2013-01-24T23:50:20.127 回答
0

简短的回答:

for a, b in ( (a, b) for a in zipList for b in zipList):
    print (a, b, distance (a, b) )

一些评论:如果您将其设为类变量,则无需手动控制“计数”。您可以根据需要使用属性来定位您的点(即首次访问纬度或经度时)。如果属性是公开的(除非 API 要求这样做),您实际上并不需要 getter 方法。也许是这样的。

#! /usr/bin/python3.2

def haversine (latStart,lonStart,latEnd,lonEnd): return 42

class Destination():
    count = 0

    def __init__(self, zipcode):
        self.zipcode = zipcode
        self.count = self.__class__.count
        self.__class__.count += 1
        self.__coords = None

    @property
    def latitude (self):
        if not self.__coords: self.__locate ()
        return self.__coords [0]

    @property
    def longitude (self):
        if not self.__coords: self.__locate ()
        return self.__coords [1]

    def __str__(self):
        return "%s at %s , %s" % (self.zipcode, self.latitude, self.longitude)

    def __locate (self):
        '''
        Will be called automatically before getLatitude or get Longitude
        '''
        self.place, self.__coords = gn.geocode (str (self.zipcode) )  
        self.city = self.place.split (",",1)
        self.name =  self.city [0]

    def distance (self, other):
        return haversine (self.latitude, self.longitude, other.latitude, other.longitude)
于 2013-01-25T00:05:08.920 回答