setMinMax($linestring); } /** * Adds to the PNG image object, the data related to a row in the GIS dataset. * * @param string $spatial GIS POLYGON object * @param string $label Label for the GIS POLYGON object * @param int[] $color Color for the GIS POLYGON object * @param mixed[] $scaleData Array containing data related to scaling */ public function prepareRowAsPng( string $spatial, string $label, array $color, array $scaleData, ImageWrapper $image, ): ImageWrapper { // allocate colors $black = $image->colorAllocate(0, 0, 0); $lineColor = $image->colorAllocate(...$color); // Trim to remove leading 'LINESTRING(' and trailing ')' $lineString = mb_substr($spatial, 11, -1); $pointsArr = $this->extractPoints1d($lineString, $scaleData); foreach ($pointsArr as $point) { if (isset($tempPoint)) { // draw line section $image->line( (int) round($tempPoint[0]), (int) round($tempPoint[1]), (int) round($point[0]), (int) round($point[1]), $lineColor, ); } $tempPoint = $point; } // print label if applicable if ($label !== '') { $image->string( 1, (int) round($pointsArr[1][0]), (int) round($pointsArr[1][1]), $label, $black, ); } return $image; } /** * Adds to the TCPDF instance, the data related to a row in the GIS dataset. * * @param string $spatial GIS LINESTRING object * @param string $label Label for the GIS LINESTRING object * @param int[] $color Color for the GIS LINESTRING object * @param mixed[] $scaleData Array containing data related to scaling * * @return TCPDF the modified TCPDF instance */ public function prepareRowAsPdf(string $spatial, string $label, array $color, array $scaleData, TCPDF $pdf): TCPDF { $line = ['width' => 1.5, 'color' => $color]; // Trim to remove leading 'LINESTRING(' and trailing ')' $linestring = mb_substr($spatial, 11, -1); $pointsArr = $this->extractPoints1d($linestring, $scaleData); foreach ($pointsArr as $point) { if (isset($tempPoint)) { // draw line section $pdf->Line($tempPoint[0], $tempPoint[1], $point[0], $point[1], $line); } $tempPoint = $point; } // print label if ($label !== '') { $pdf->setXY($pointsArr[1][0], $pointsArr[1][1]); $pdf->setFontSize(5); $pdf->Cell(0, 0, $label); } return $pdf; } /** * Prepares and returns the code related to a row in the GIS dataset as SVG. * * @param string $spatial GIS LINESTRING object * @param string $label Label for the GIS LINESTRING object * @param int[] $color Color for the GIS LINESTRING object * @param mixed[] $scaleData Array containing data related to scaling * * @return string the code related to a row in the GIS dataset */ public function prepareRowAsSvg(string $spatial, string $label, array $color, array $scaleData): string { $lineOptions = [ 'name' => $label, 'id' => $label . $this->getRandomId(), 'class' => 'linestring vector', 'fill' => 'none', 'stroke' => sprintf('#%02x%02x%02x', ...$color), 'stroke-width' => 2, ]; // Trim to remove leading 'LINESTRING(' and trailing ')' $linestring = mb_substr($spatial, 11, -1); $pointsArr = $this->extractPoints1d($linestring, $scaleData); $row = ' $val) { $row .= ' ' . $option . '="' . $val . '"'; } $row .= '/>'; return $row; } /** * Prepares JavaScript related to a row in the GIS dataset * to visualize it with OpenLayers. * * @param string $spatial GIS LINESTRING object * @param int $srid Spatial reference ID * @param string $label Label for the GIS LINESTRING object * @param int[] $color Color for the GIS LINESTRING object * * @return string JavaScript related to a row in the GIS dataset */ public function prepareRowAsOl(string $spatial, int $srid, string $label, array $color): string { $strokeStyle = ['color' => $color, 'width' => 2]; $style = 'new ol.style.Style({' . 'stroke: new ol.style.Stroke(' . json_encode($strokeStyle) . ')'; if ($label !== '') { $textStyle = ['text' => $label]; $style .= ', text: new ol.style.Text(' . json_encode($textStyle) . ')'; } $style .= '})'; // Trim to remove leading 'LINESTRING(' and trailing ')' $wktCoordinates = mb_substr($spatial, 11, -1); $olGeometry = $this->toOpenLayersObject( 'ol.geom.LineString', $this->extractPoints1d($wktCoordinates, null), $srid, ); return $this->addGeometryToLayer($olGeometry, $style); } /** * Generate the WKT with the set of parameters passed by the GIS editor. * * @param mixed[] $gisData GIS data * @param int $index Index into the parameter object * @param string|null $empty Value for empty points * * @return string WKT with the set of parameters passed by the GIS editor */ public function generateWkt(array $gisData, int $index, string|null $empty = ''): string { $noOfPoints = $gisData[$index]['LINESTRING']['no_of_points'] ?? 2; if ($noOfPoints < 2) { $noOfPoints = 2; } $wkt = 'LINESTRING('; for ($i = 0; $i < $noOfPoints; $i++) { $wkt .= (isset($gisData[$index]['LINESTRING'][$i]['x']) && trim((string) $gisData[$index]['LINESTRING'][$i]['x']) != '' ? $gisData[$index]['LINESTRING'][$i]['x'] : $empty) . ' ' . (isset($gisData[$index]['LINESTRING'][$i]['y']) && trim((string) $gisData[$index]['LINESTRING'][$i]['y']) != '' ? $gisData[$index]['LINESTRING'][$i]['y'] : $empty) . ','; } $wkt = mb_substr($wkt, 0, -1); return $wkt . ')'; } /** * Generate coordinate parameters for the GIS data editor from the value of the GIS column. * * @param string $wkt Value of the GIS column * * @return mixed[] Coordinate params for the GIS data editor from the value of the GIS column */ protected function getCoordinateParams(string $wkt): array { // Trim to remove leading 'LINESTRING(' and trailing ')' $linestring = mb_substr($wkt, 11, -1); $pointsArr = $this->extractPoints1d($linestring, null); $noOfPoints = count($pointsArr); $coords = ['no_of_points' => $noOfPoints]; for ($i = 0; $i < $noOfPoints; $i++) { $coords[$i] = ['x' => $pointsArr[$i][0], 'y' => $pointsArr[$i][1]]; } return $coords; } }