|
|
@@ -379,4 +379,9 @@ class EpsgConversion {
|
|
|
$epsg2180 = self::Wgs84ToEpsg2180($x, $y);
|
|
|
return self::GetZByEpsg2180($epsg2180->x, $epsg2180->y);
|
|
|
}
|
|
|
+
|
|
|
+ public static function GetZByPuwg2000($x, $y) {
|
|
|
+ $wgs84 = self::Puwg2000ToWgs84($x, $y);
|
|
|
+ return self::GetZByWgs84($wgs84->x, $wgs84->y);
|
|
|
+ }
|
|
|
}
|