def createChestnutGrove(self):
     place = PlaceDescription()
     place.id = u"KKK"
     place.latitude = 37.518304
     place.longitude = -76.984148
     place.names.append(TextValue(u"Chestnut Grove, New Kent, Virginia, United States"))
     return place
 def createMountVernon(self):
     place = PlaceDescription()
     place.id = u"999"
     place.latitude = 38.721144
     place.longitude = -77.109461
     place.names.append(TextValue(u"Mount Vernon, Fairfax County, Virginia, United States"))
     return place
 def createPopesCreek(self):
     place = PlaceDescription()
     place.id = u"888"
     place.latitude = 38.192353
     place.longitude = -76.904069
     place.names.append(TextValue(u"Pope's Creek, Westmoreland, Virginia, United States"))
     return place
Exemplo n.º 4
0
 def createChestnutGrove(self):
     place = PlaceDescription()
     place.id = u"KKK"
     place.latitude = 37.518304
     place.longitude = -76.984148
     place.names.append(
         TextValue(u"Chestnut Grove, New Kent, Virginia, United States"))
     return place
Exemplo n.º 5
0
 def createPopesCreek(self):
     place = PlaceDescription()
     place.id = u"888"
     place.latitude = 38.192353
     place.longitude = -76.904069
     place.names.append(
         TextValue(u"Pope's Creek, Westmoreland, Virginia, United States"))
     return place
Exemplo n.º 6
0
 def createMountVernon(self):
     place = PlaceDescription()
     place.id = u"999"
     place.latitude = 38.721144
     place.longitude = -77.109461
     place.names.append(
         TextValue(
             u"Mount Vernon, Fairfax County, Virginia, United States"))
     return place