public function Geometry::coordinateDimension in geoPHP 7
Same name and namespace in other branches
- 8 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-dimensional space
return 2;
}