HEX
Server: Apache
System: Linux srv13.cpanelhost.cl 3.10.0-962.3.2.lve1.5.38.el7.x86_64 #1 SMP Thu Jun 18 05:28:41 EDT 2020 x86_64
User: cca63905 (4205)
PHP: 7.3.20
Disabled: NONE
Upload Files
File: //home/cca63905/public_html/guiaweb/htdocs/includes/geoPHP/lib/adapters/GeoAdapter.class.php
<?php
/*
 * (c) Patrick Hayes 2011
 *
 * This code is open-source and licenced under the Modified BSD License.
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

/**
 * GeoAdapter : abstract class which represents an adapter
 * for reading and writing to and from Geomtry objects
 *
 */
abstract class GeoAdapter
{
	/**
	 * Read input and return a Geomtry or GeometryCollection
	 *
	 * @return Geometry|GeometryCollection
	 */
	abstract public function read($input);

	/**
	 * Write out a Geomtry or GeometryCollection in the adapter's format
	 *
	 * @return mixed
	 */
	abstract public function write(Geometry $geometry);
}