Esempio n. 1
0
def getLayer(id):
	c = CatalogModel()
	result = c.getLayerById(id)
	if result is None:
		abort(404)

	return jsonify({'result': result})