You are here

class GeoJSON in geoPHP 8

Same name and namespace in other branches
  1. 7 geoPHP/lib/adapters/GeoJSON.class.php \GeoJSON

GeoJSON class : a geojson reader/writer.

Note that it will always return a GeoJSON geometry. This means that if you pass it a feature, it will return the geometry of that feature strip everything else.

Hierarchy

Expanded class hierarchy of GeoJSON

1 string reference to 'GeoJSON'
geoPHP::getAdapterMap in geoPHP/geoPHP.inc

File

geoPHP/lib/adapters/GeoJSON.class.php, line 9

View source
class GeoJSON extends GeoAdapter {

  /**
   * Given an object or a string, return a Geometry
   *
   * @param mixed $input The GeoJSON string or object
   *
   * @return object Geometry
   */
  public function read($input) {
    if (is_string($input)) {
      $input = json_decode($input);
    }
    if (!is_object($input)) {
      throw new Exception('Invalid JSON');
    }
    if (!is_string($input->type)) {
      throw new Exception('Invalid JSON');
    }

    // Check to see if it's a FeatureCollection
    if ($input->type == 'FeatureCollection') {
      $geoms = array();
      foreach ($input->features as $feature) {
        $geoms[] = $this
          ->read($feature);
      }
      return geoPHP::geometryReduce($geoms);
    }

    // Check to see if it's a Feature
    if ($input->type == 'Feature') {
      return $this
        ->read($input->geometry);
    }

    // It's a geometry - process it
    return $this
      ->objToGeom($input);
  }
  private function objToGeom($obj) {
    $type = $obj->type;
    if ($type == 'GeometryCollection') {
      return $this
        ->objToGeometryCollection($obj);
    }
    $method = 'arrayTo' . $type;
    return $this
      ->{$method}($obj->coordinates);
  }
  private function arrayToPoint($array) {
    return new Point($array[0], $array[1]);
  }
  private function arrayToLineString($array) {
    $points = array();
    foreach ($array as $comp_array) {
      $points[] = $this
        ->arrayToPoint($comp_array);
    }
    return new LineString($points);
  }
  private function arrayToPolygon($array) {
    $lines = array();
    foreach ($array as $comp_array) {
      $lines[] = $this
        ->arrayToLineString($comp_array);
    }
    return new Polygon($lines);
  }
  private function arrayToMultiPoint($array) {
    $points = array();
    foreach ($array as $comp_array) {
      $points[] = $this
        ->arrayToPoint($comp_array);
    }
    return new MultiPoint($points);
  }
  private function arrayToMultiLineString($array) {
    $lines = array();
    foreach ($array as $comp_array) {
      $lines[] = $this
        ->arrayToLineString($comp_array);
    }
    return new MultiLineString($lines);
  }
  private function arrayToMultiPolygon($array) {
    $polys = array();
    foreach ($array as $comp_array) {
      $polys[] = $this
        ->arrayToPolygon($comp_array);
    }
    return new MultiPolygon($polys);
  }
  private function objToGeometryCollection($obj) {
    $geoms = array();
    if (empty($obj->geometries)) {
      throw new Exception('Invalid GeoJSON: GeometryCollection with no component geometries');
    }
    foreach ($obj->geometries as $comp_object) {
      $geoms[] = $this
        ->objToGeom($comp_object);
    }
    return new GeometryCollection($geoms);
  }

  /**
   * Serializes an object into a geojson string
   *
   *
   * @param Geometry $obj The object to serialize
   *
   * @return string The GeoJSON string
   */
  public function write(Geometry $geometry, $return_array = FALSE) {
    if ($return_array) {
      return $this
        ->getArray($geometry);
    }
    else {
      return json_encode($this
        ->getArray($geometry));
    }
  }
  public function getArray($geometry) {
    if ($geometry
      ->getGeomType() == 'GeometryCollection') {
      $component_array = array();
      foreach ($geometry->components as $component) {
        $component_array[] = array(
          'type' => $component
            ->geometryType(),
          'coordinates' => $component
            ->asArray(),
        );
      }
      return array(
        'type' => 'GeometryCollection',
        'geometries' => $component_array,
      );
    }
    else {
      return array(
        'type' => $geometry
          ->getGeomType(),
        'coordinates' => $geometry
          ->asArray(),
      );
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
GeoJSON::arrayToLineString private function
GeoJSON::arrayToMultiLineString private function
GeoJSON::arrayToMultiPoint private function
GeoJSON::arrayToMultiPolygon private function
GeoJSON::arrayToPoint private function
GeoJSON::arrayToPolygon private function
GeoJSON::getArray public function
GeoJSON::objToGeom private function
GeoJSON::objToGeometryCollection private function
GeoJSON::read public function Given an object or a string, return a Geometry Overrides GeoAdapter::read
GeoJSON::write public function Serializes an object into a geojson string Overrides GeoAdapter::write