Skip to content
Snippets Groups Projects
Commit a53ad789 authored by Tor-Einar Skog's avatar Tor-Einar Skog
Browse files

Removed unused imports

parent 19de9027
No related branches found
No related tags found
1 merge request!17Develop
...@@ -39,8 +39,6 @@ import java.util.HashMap; ...@@ -39,8 +39,6 @@ import java.util.HashMap;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.TimeZone; import java.util.TimeZone;
import java.util.logging.Level;
import java.util.logging.Logger;
import no.nibio.vips.entity.ModelConfiguration; import no.nibio.vips.entity.ModelConfiguration;
import no.nibio.vips.entity.PointWeatherObservationList; import no.nibio.vips.entity.PointWeatherObservationList;
import no.nibio.vips.entity.Result; import no.nibio.vips.entity.Result;
...@@ -170,22 +168,24 @@ public class MetNoThreddsDataParserTest { ...@@ -170,22 +168,24 @@ public class MetNoThreddsDataParserTest {
System.out.println("Total memory used:\n" + GraphLayout.parseInstance(result).toFootprint()); System.out.println("Total memory used:\n" + GraphLayout.parseInstance(result).toFootprint());
} }
//@Test @Test
public void testGetGridData() public void testGetGridData()
{ {
try { try {
System.out.println("testGetGridData"); System.out.println("testGetGridData");
Coordinate[] coords = new Coordinate[5]; Coordinate[] coords = new Coordinate[5];
/*coords[0] = new Coordinate(8.31,63.91); coords[0] = new Coordinate(8.31,63.91);
coords[1] = new Coordinate(11.07,63.91); coords[1] = new Coordinate(11.07,63.91);
coords[2] = new Coordinate(11.07,59.52); coords[2] = new Coordinate(11.07,59.52);
coords[3] = new Coordinate(8.31,59.52); coords[3] = new Coordinate(8.31,59.52);
coords[4] = new Coordinate(8.31,63.91);*/ coords[4] = new Coordinate(8.31,63.91);
/*
coords[0] = new Coordinate(-14.4103,71.8152); coords[0] = new Coordinate(-14.4103,71.8152);
coords[1] = new Coordinate(48.7212,71.8152); coords[1] = new Coordinate(48.7212,71.8152);
coords[2] = new Coordinate(48.7212,51.7262); coords[2] = new Coordinate(48.7212,51.7262);
coords[3] = new Coordinate(-14.4103,51.7262); coords[3] = new Coordinate(-14.4103,51.7262);
coords[4] = new Coordinate(-14.4103,71.8152); coords[4] = new Coordinate(-14.4103,71.8152);
*/
GeometryFactory gFac = new GeometryFactory(); GeometryFactory gFac = new GeometryFactory();
Polygon pol = gFac.createPolygon(coords); Polygon pol = gFac.createPolygon(coords);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment