Search in sources :

Example 6 with Tiny

use of gov.usgs.cida.coastalhazards.model.summary.Tiny in project coastal-hazards by USGS-CIDA.

the class ShorelineTest method testGenerateSLDInfoSelected.

/**
 * Test of generateSLDInfo method, of class Shoreline with an overriding
 * selected item.
 */
@Test
public void testGenerateSLDInfoSelected() {
    Item item = new Item();
    Item selectedItem = new Item();
    item.setAttr("Date_");
    item.setId("abcd");
    item.setType(Item.Type.historical);
    selectedItem.setAttr("Date_");
    selectedItem.setId("efg");
    selectedItem.setType(Item.Type.historical);
    selectedItem.setItemType(Item.ItemType.aggregation);
    List<Service> services = new LinkedList<>();
    Service wmsService = new Service();
    wmsService.setEndpoint("http://test");
    wmsService.setServiceParameter("0");
    wmsService.setType(ServiceType.source_wms);
    services.add(wmsService);
    item.setServices(services);
    selectedItem.setServices(services);
    Summary summary = new Summary();
    Tiny tiny = new Tiny();
    tiny.setText("Shoreline");
    summary.setTiny(tiny);
    item.setSummary(summary);
    selectedItem.setSummary(summary);
    SLDGenerator shoreline = new SLDGenerator(item, selectedItem.getId(), null, Shorelines.shorelines);
    Response response = shoreline.generateSLDInfo();
    String json = (String) response.getEntity();
    Map<String, Object> sldInfo = new Gson().fromJson(json, HashMap.class);
    List<Object> bins = (List) sldInfo.get("bins");
    Map<String, Object> bin = (Map) bins.get(0);
    Double year0 = ((List<Double>) bin.get("years")).get(0);
    String color = (String) bin.get("color");
    assertEquals(year0, 0.0f, 0.01f);
    assertEquals(color, "#ff0000");
}
Also used : Tiny(gov.usgs.cida.coastalhazards.model.summary.Tiny) Service(gov.usgs.cida.coastalhazards.model.Service) Gson(com.google.gson.Gson) LinkedList(java.util.LinkedList) Response(javax.ws.rs.core.Response) Item(gov.usgs.cida.coastalhazards.model.Item) Summary(gov.usgs.cida.coastalhazards.model.summary.Summary) List(java.util.List) LinkedList(java.util.LinkedList) HashMap(java.util.HashMap) Map(java.util.Map) Test(org.junit.Test)

Example 7 with Tiny

use of gov.usgs.cida.coastalhazards.model.summary.Tiny in project coastal-hazards by USGS-CIDA.

the class ShorelineTest method testGenerateSLD.

@Test
public void testGenerateSLD() {
    Item item = new Item();
    item.setAttr("DATE_");
    item.setId("abcde");
    item.setType(Item.Type.historical);
    List<Service> services = new LinkedList<>();
    Service wmsService = new Service();
    wmsService.setEndpoint("http://test");
    wmsService.setServiceParameter("0");
    wmsService.setType(ServiceType.source_wms);
    services.add(wmsService);
    item.setServices(services);
    Summary summary = new Summary();
    Tiny tiny = new Tiny();
    tiny.setText("Shoreline");
    summary.setTiny(tiny);
    item.setSummary(summary);
    SLDGenerator shoreline = new SLDGenerator(item, item.getId(), null, Shorelines.shorelines);
    Response response = shoreline.generateSLD();
    Viewable sld = (Viewable) response.getEntity();
}
Also used : Response(javax.ws.rs.core.Response) Item(gov.usgs.cida.coastalhazards.model.Item) Tiny(gov.usgs.cida.coastalhazards.model.summary.Tiny) Viewable(org.glassfish.jersey.server.mvc.Viewable) Service(gov.usgs.cida.coastalhazards.model.Service) Summary(gov.usgs.cida.coastalhazards.model.summary.Summary) LinkedList(java.util.LinkedList) Test(org.junit.Test)

Example 8 with Tiny

use of gov.usgs.cida.coastalhazards.model.summary.Tiny in project coastal-hazards by USGS-CIDA.

the class StormUtil method buildTinyText.

private static Tiny buildTinyText(Map<String, String> titleParts) {
    Tiny tiny = new Tiny();
    tiny.setText(titleParts.get("name") + " Assessment of Potential Coastal-Change Impacts: NHC Adv. " + titleParts.get("advNum"));
    return tiny;
}
Also used : Tiny(gov.usgs.cida.coastalhazards.model.summary.Tiny)

Aggregations

Tiny (gov.usgs.cida.coastalhazards.model.summary.Tiny)8 Summary (gov.usgs.cida.coastalhazards.model.summary.Summary)7 Item (gov.usgs.cida.coastalhazards.model.Item)6 Service (gov.usgs.cida.coastalhazards.model.Service)6 LinkedList (java.util.LinkedList)6 Response (javax.ws.rs.core.Response)6 Test (org.junit.Test)6 Gson (com.google.gson.Gson)3 HashMap (java.util.HashMap)3 List (java.util.List)3 Map (java.util.Map)3 Viewable (org.glassfish.jersey.server.mvc.Viewable)3 Full (gov.usgs.cida.coastalhazards.model.summary.Full)1 Legend (gov.usgs.cida.coastalhazards.model.summary.Legend)1 Medium (gov.usgs.cida.coastalhazards.model.summary.Medium)1 Document (org.w3c.dom.Document)1