public function Geometry::coordinateDimension in geoPHP 8
Same name and namespace in other branches
- 7 geoPHP/lib/geometry/Geometry.class.php \Geometry::coordinateDimension()
File
- geoPHP/
lib/ geometry/ Geometry.class.php, line 332
Class
- Geometry
- Geometry abstract class
Code
public function coordinateDimension() {
// geoPHP only supports 2-dimentional space
return 2;
}