SimplePointLayer layerB = sdb.createSimplePointLayer("my-points-B", "xb", "yb", "bbox_b");
Coordinate[] coords = makeCoordinateDataFromTextFile("NEO4J-SPATIAL.txt", testOrigin);
try (Transaction tx = db.beginTx()) {
for (Coordinate coordinate : coords) {
Node n = db.createNode();
n.setProperty("xa", coordinate.x);
n.setProperty("ya", coordinate.y);
n.setProperty("xb", coordinate.x + x_offset);
n.setProperty("yb", coordinate.y + y_offset);