|
|
|
|
|
by nonethewiser
1225 days ago
|
|
This is a total aside from someone who doesn't know Java... But why design Point so that you have to do: `Point point = new Point.Builder()
.latitude(25.2012544)
.longitude(55.2569389)
.build();` Instead of: `Point point = new Point(25.2012544,55.2569389)` Cool project btw... working with geospatial data can be fun. |
|
Although agreed it's used when you start to get to more parameters. I didn't check but it's possible there are a lot of null/default values like projection or something.