Add some query links.
This commit is contained in:
parent
a5978c2289
commit
eb10695873
|
@ -102,6 +102,8 @@ def select_stations(conn, n):
|
|||
@api_app.route('/')
|
||||
def index():
|
||||
|
||||
path = config['Settings']['base_url']
|
||||
|
||||
# Get list of recent packets using API
|
||||
# TODO use relative path
|
||||
#frames = json.loads(requests.get(url_for("packets", _external=True)).text)['data']
|
||||
|
@ -150,7 +152,8 @@ def index():
|
|||
station_lon = config['Settings']['station_lon'],
|
||||
frames = frames,
|
||||
stations = stations,
|
||||
geojs = geojs)
|
||||
geojs = geojs,
|
||||
path = path)
|
||||
|
||||
@api_app.route('/map')
|
||||
def map():
|
||||
|
@ -209,7 +212,7 @@ class Packets(Resource):
|
|||
try:
|
||||
n = int(request.args.get('n'))
|
||||
except:
|
||||
n = 10
|
||||
n = 20
|
||||
|
||||
conn = get_db_connection()
|
||||
# Limit to number of records requested
|
||||
|
@ -224,7 +227,7 @@ class Stations(Resource):
|
|||
try:
|
||||
n = int(request.args.get('n'))
|
||||
except:
|
||||
n = 10
|
||||
n = 20
|
||||
|
||||
conn = get_db_connection()
|
||||
# Limit to number of records requested
|
||||
|
|
|
@ -11,7 +11,7 @@ base_url = https://digi.w1cdn.net/aprs_api
|
|||
keep_time = "2 days"
|
||||
|
||||
# KISS settings
|
||||
kiss_host = 192.168.0.30
|
||||
kiss_host = 192.168.0.100
|
||||
kiss_port = 8001
|
||||
|
||||
# Development settings (not operational yet)
|
||||
|
|
|
@ -79,6 +79,7 @@
|
|||
</div>
|
||||
|
||||
<h2> Recent RF Packets </h2>
|
||||
Query <a href="{{path}}/packets?n=10">10</a> | <a href="{{path}}/packets?n=50">50</a> | <a href="{{path}}/packets?n=100">100</a>
|
||||
<table>
|
||||
<tr>
|
||||
<th> from </th>
|
||||
|
@ -104,6 +105,7 @@
|
|||
|
||||
|
||||
<h2> Recent Stations </h2>
|
||||
Query <a href="{{path}}/stations?n=10">10</a> | <a href="{{path}}/stations?n=50">50</a> | <a href="{{path}}/stations?n=100">100</a>
|
||||
<table>
|
||||
<tr>
|
||||
<th> from </th>
|
||||
|
|
Loading…
Reference in New Issue
Block a user