PHP Class WkbPolyline, google-map-polyline-encoding-tool
An example class to convert well-known binary files to Google encoded strings
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see
.
Mostrar archivo
Open project: emcconville/google-map-polyline-encoding-tool
Protected Properties
Public Methods
Protected Methods
Method |
Description |
|
chunk ( integer $size = 1 ) : string |
Pulls data directly from file descriptor by given length. |
|
parseWkb ( ) : array |
Extract points from well-known binary |
|
readByte ( ) : integer |
Read single byte from file descriptor. |
|
readDouble ( ) : double |
Read 8 bytes and cast to double. Respects file endianness. |
|
readU32 ( ) : integer |
Read 4 bytes and cast to unsigned integer. Respects file endianness. |
|
Method Details
Pulls data directly from file descriptor by given length.
encodeFromBlob()
public method
This method will copy the given blob to memory descriptor. There's better
ways to do this.
encodeFromFile()
public method
Parse binary file & converts WKB to google encoded string.
parseWkb()
protected method
Extract points from well-known binary
readByte()
protected method
Read single byte from file descriptor.
readDouble()
protected method
Read 8 bytes and cast to double. Respects file endianness.
readU32()
protected method
Read 4 bytes and cast to unsigned integer. Respects file endianness.
Property Details
$cursor protected_oe property
$endianness protected_oe property
$fd protected_oe property