本文整理汇总了Python中map.Map.get_map_id方法的典型用法代码示例。如果您正苦于以下问题:Python Map.get_map_id方法的具体用法?Python Map.get_map_id怎么用?Python Map.get_map_id使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类map.Map
的用法示例。
在下文中一共展示了Map.get_map_id方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_existing_map
# 需要导入模块: from map import Map [as 别名]
# 或者: from map.Map import get_map_id [as 别名]
def test_existing_map(self):
db = MongoClient().geo_example
db.drop_collection('disasters')
db.disasters.create_index([("loc", GEOSPHERE)])
result = db.disasters.insert_many([{"loc": { 'type': "Point", 'coordinates': [ -73, 40 ] }, "name": "blah1.44", "start_datetime": datetime.now()}])
print result.inserted_ids
m = Map(db)
m.get_map_id(datetime.now(), [0, 0])
示例2: do_upload_from_app
# 需要导入模块: from map import Map [as 别名]
# 或者: from map.Map import get_map_id [as 别名]
def do_upload_from_app():
picture = request.forms.get('picture')
lat = request.forms.get('latitude')
lng = request.forms.get('longitude')
raw = decodestring(picture)
now = datetime.now()
date_filename = now.strftime("%Y%m%d-%H%M%S") + '.jpg'
print date_filename
grid_db = connection['grid_files']
fs = gridfs.GridFS(grid_db)
fs.put(raw, filename=date_filename)
# Insert the filename and other data in the pictures db
hack_db = connection['hackathon']
hack_db.pictures.insert_one(
{'filename': date_filename,
'datetime': now,
'latitude': lat,
'longitude': lng,
'disaster': 0}
)
m = Map(hack_db)
map_id = m.get_map_id(now, [float(lng), float(lat)])
hack_db.pictures.update_one({"filename": date_filename}, {"$set": {"disaster": map_id}})
# Get the image back out
image = fs.get_last_version(filename=date_filename)
bottle.response.content_type = 'image/jpeg'
return image