Useful comment on WKT and bbox
This commit is contained in:
parent
5175fde067
commit
1419401c9a
|
@ -5,7 +5,13 @@ import org.junit.Before;
|
|||
import org.junit.Test;
|
||||
|
||||
public class BulkUploadTest {
|
||||
|
||||
/*
|
||||
About BoundingBox and WKT:
|
||||
X = LONGITUDE; Y = LATITUDE
|
||||
bbox2wkt(minx = NA, miny = NA, maxx = NA, maxy = NA, bbox = NULL)
|
||||
bbox: MIN LONG, MIN LAT,MAX LONG, MAX LAT
|
||||
wkt <- "POLYGON((MINLONG MINLAT,MINLONG MAXLAT,MAXLON MAXLAT,MAXLON MINLAT,MINLON MINLAT))"
|
||||
*/
|
||||
private BulkUpload bu;
|
||||
|
||||
@Before
|
||||
|
@ -55,5 +61,4 @@ public class BulkUploadTest {
|
|||
System.out.println("Long: "+centroid.getLon()+", Lat: "+centroid.getLat());
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue