diff --git a/tomcat/webapps/Trawl/map.jsp b/tomcat/webapps/Trawl/map.jsp index ab0c63eb64b4b2a1bb9a49de3fe24bc1d8d27cfd..d71ef0f55082e757c451b4a4a1dbae80474125a5 100644 --- a/tomcat/webapps/Trawl/map.jsp +++ b/tomcat/webapps/Trawl/map.jsp @@ -6,11 +6,14 @@ <% // Sample result data containing an iterable of records TrawlExpert te = (TrawlExpert)request.getServletContext().getAttribute("trawl"); - BasicSearchResult result = te.rangeSearch(2, 1960, 2016); - - - JSONParser parser = new JSONParser(); + JSONObject req = (JSONObject) parser.parse(request.getReader().readLine()); + + Integer taxonId = (int) (long) req.get("taxId"); + Integer yearLo = (int) (long) req.get("yearF"); + Integer yearHi = (int) (long) req.get("yearT"); + + BasicSearchResult result = te.rangeSearch(taxonId, yearLo, yearHi); // Initialize JSON Object and Arrays JSONObject js = new JSONObject(); @@ -30,7 +33,6 @@ dateobj.put("year",r.getDate().getYear()); dateobj.put("month",r.getDate().getMonth()); dateobj.put("day",r.getDate().getDay()); - date.add(r.getDate()); count.add(r.getCount()); }