Repair 'Convex hull' operation
This commit is contained in:
parent
d46dca1df1
commit
9d7379f3f8
3 changed files with 13 additions and 13 deletions
|
@ -863,13 +863,18 @@ def chop_largest_or_farthest():
|
|||
def draw_hull():
|
||||
if config.READONLY:
|
||||
abort(405)
|
||||
name = request.args.get('name').encode('utf-8')
|
||||
cur = g.conn.cursor()
|
||||
cur.execute('select ST_NumGeometries(geom) from {} where name = %s;'.format(config.TABLE), (name,))
|
||||
res = cur.fetchone()
|
||||
border_id = int(request.args.get('id'))
|
||||
cursor = g.conn.cursor()
|
||||
table = config.TABLE
|
||||
cursor.execute(f"""
|
||||
SELECT ST_NumGeometries(geom) FROM {table} WHERE id = %s
|
||||
""", (border_id,))
|
||||
res = cursor.fetchone()
|
||||
if not res or res[0] < 2:
|
||||
return jsonify(status='border should have more than one outer ring')
|
||||
cur.execute('update {} set geom = ST_ConvexHull(geom) where name = %s;'.format(config.TABLE), (name,))
|
||||
cursor.execute(f"""
|
||||
UPDATE {table} SET geom = ST_ConvexHull(geom)
|
||||
WHERE id = %s""", (border_id,))
|
||||
g.conn.commit()
|
||||
return jsonify(status='ok')
|
||||
|
||||
|
|
|
@ -1049,13 +1049,8 @@ function bHull() {
|
|||
if( !selectedId || !(selectedId in borders) )
|
||||
return;
|
||||
$.ajax(getServer('hull'), {
|
||||
data: { 'name': selectedId },
|
||||
success: function(answer) {
|
||||
if (answer.status !== 'ok')
|
||||
alert(answer.status);
|
||||
else
|
||||
updateBorders();
|
||||
}
|
||||
data: { 'id': selectedId },
|
||||
success: makeAnswerHandler(updateBorders)
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -122,7 +122,7 @@
|
|||
<button onclick="bJoin()">Склеить</button><br>
|
||||
<button onclick="bJoinToParent()">Склеить всё до родителя</button><br>
|
||||
<button onclick="bLargest()">Выделить острова</button>
|
||||
<button disabled onclick="bHull()">Единый контур</button><br>
|
||||
<button onclick="bHull()">Единый контур</button><br>
|
||||
<button id="b_divide" onclick="bDivide()">Заменить регионами</button><br>
|
||||
</div>
|
||||
<div id="info">
|
||||
|
|
Loading…
Add table
Reference in a new issue