Useful comment on WKT and bbox

This commit is contained in:
Alessia Bardi 2023-09-07 14:52:07 +02:00
parent 5175fde067
commit 1419401c9a
1 changed files with 7 additions and 2 deletions

View File

@ -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());
}
}