Home
last modified time | relevance | path

Searched refs:null (Results 101 – 125 of 5084) sorted by last modified time

12345678910>>...204

/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DGoogleGeocode.php49 public function read($address, $apiKey = null, $returnType = 'point', $bounds = false, $returnMultiple = false)
94 return null;
120 * @return string|Object[]|null A formatted address or array of address components
123 public function write(Geometry $geometry, $apiKey = null, $returnType = 'string', $language = null)
H A DGpxTypes.php92 * @param array|null $allowedElements Which elements can be used in each GPX type
95 * eg.: ['wptType' => ['ele', 'name'], 'trkptType' => ['ele'], 'metadataType' => null]
97 public function __construct($allowedElements = null)
H A DKML.php87 /** @var Geometry|null $geometry */
88 $geometry = null;
141 (isset($coordinates[0][2]) ? $coordinates[0][2] : null),
142 (isset($coordinates[0][3]) ? $coordinates[0][3] : null)
160 ($hasZ ? (isset($set[2]) ? $set[2] : 0) : null),
161 ($hasM ? (isset($set[3]) ? $set[3] : 0) : null)
H A DTWKB.php55 /** @var Point|null */
56 private $lastPoint = null;
224 ) : null;
228 ) : null;
282 * @return MultiGeometry|null
314 return null;
326 * @param null $decimalDigitsXY Coordinate precision of X and Y. Default is 5 decimals
327 * @param null $decimalDigitsZ Coordinate precision of Z. Default is 0 decimal
328 * @param null $decimalDigitsM Coordinate precision of M. Default is 0 decimal
334 public function write(Geometry $geometry, $writeAsHex = false, $decimalDigitsXY = null,
[all...]
H A DWKB.php41 protected $SRID = null;
110 $SRID = null;
121 $geometryType = null;
145 $geometry = null;
183 $point = null;
192 $point = new Point($coordinates[0], $coordinates[1], null, $coordinates[2]);
248 $component->setSRID(null);
261 return null;
H A DWKT.php55 $srid = null;
91 * @return Geometry|null
120 $z = $m = null;
H A DBinaryReader.php75 * @return int|null
80 return $char !== '' ? current(unpack("c", $char)) : null;
85 * @return int|null
90 return $char !== '' ? current(unpack("C", $char)) : null;
95 * @return int|null
100 return $int32 !== '' ? current(unpack($this->endianness == self::LITTLE_ENDIAN ? 'V' : 'N', $int32)) : null;
H A DGPX.php44 protected $trackFromRoute = null;
50 * @param array|null $allowedElements Which elements can be read from each GPX type
53 * eg.: ['wptType' => ['ele', 'name'], 'trkptType' => ['ele'], 'metadataType' => null]
57 public function read($gpx, $allowedElements = null)
87 $caller = isset($backtrace[1]['function']) ? $backtrace[1]['function'] : null;
133 if ($geometry->getData() !== null && $metadata !== null) {
161 $elevation = null;
262 * @param string[]|null $tagList
265 protected static function parseNodeProperties($node, $tagList = null)
[all...]
/plugin/geophp/vendor/composer/
H A DClassLoader.php48 /** @var string|null */
95 /** @var string|null */
104 * @param string|null $vendorDir
106 public function __construct($vendorDir = null)
361 * @param string|null $apcuPrefix
367 $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
371 * The APCu prefix in use, or null if APCu caching is not enabled.
373 * @return string|null
391 if (null === $this->vendorDir) {
412 if (null !
[all...]
H A Dautoload_real.php21 if (null !== self::$loader) {
H A DInstalledVersions.php30 * @var mixed[]|null
31 * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
36 * @var bool|null
42 * @psalm-var array<string, array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
117 * @param string|null $constraint A version constraint to check for, if you pass one you have to make sure composer/semver is required by your package
166 * @return string|null If the package is being replaced or provided but is not really installed, null wil
[all...]
H A Dautoload_static.php34 }, null, ClassLoader::class);
/plugin/geophp/vendor/funiq/geophp/src/Exception/
H A DUnsupportedMethodException.php16 * @param string|null $message Additional message
18 public function __construct($method, $code = 0, $message = null)
/plugin/geophp/vendor/funiq/geophp/src/Geometry/
H A DCollection.php109 $this->setGeos(null);
116 return null;
144 if ($componentBoundingBox === null) {
197 * @return Geometry|null
201 return isset($this->components[$n - 1]) ? $this->components[$n - 1] : null;
328 $this->setGeos(null);
340 $distance = null;
346 if ($checkDistance === null) {
347 return null;
349 if ($distance === null) {
[all...]
H A DCurve.php26 protected $startPoint = null;
28 protected $endPoint = null;
98 return null;
103 return null;
108 return null;
H A DGeometry.php61 /** @var int|null $srid Spatial Reference System Identifier (http://en.wikipedia.org/wiki/SRID) */
62 protected $srid = null;
65 * @var mixed|null Custom (meta)data
70 * @var \GEOSGeometry|null|false
72 private $geos = null;
143 * @return float|null
148 * @return float|null
153 * @return float|null
158 * @return float|null
163 * @return int|null
[all...]
H A DGeometryCollection.php45 * @return null
49 return null;
141 return null;
H A DLineString.php60 * @return Point|null
91 $previousPoint = null;
126 $previousPoint = null;
143 $previousPoint = null;
158 * @param float|null $radius Earth radius
281 return null; // not converging
305 return $min < PHP_INT_MAX ? $min : null;
317 return $max > ~PHP_INT_MAX ? $max : null;
325 return null;
332 * @param int|float|null
[all...]
H A DMultiGeometry.php21 * @return bool|null
104 * @param float|null $radius Default is the semi-major axis of WGS84
134 return $min < PHP_INT_MAX ? $min : null;
146 return $max > ~PHP_INT_MAX ? $max : null;
156 return null;
162 $gain = null;
171 $loss = null;
187 return $min < PHP_INT_MAX ? $min : null;
199 return $max > ~PHP_INT_MAX ? $max : null;
206 return null;
[all...]
/plugin/yalist/
H A Dsyntax.php670 $renderer->getODTProperties($properties, 'div', 'dokuwiki dt', null);
/plugin/spatialhelper/helper/
H A Dsitemap.php44 if ($indexer !== null) {
155 if (auth_aclcheck($id, '', null) < AUTH_READ) {
H A Dsearch.php55 if (plugin_load('helper', 'geophp', false, true) === null) {
89 * @param Point|null $p
94 final public function findNearby(string $geohash, Point $p = null): array
/plugin/spatialhelper/
H A Daction.php124 if ($indexer !== null) {
154 if (($helper = plugin_load('helper', 'spatialhelper_sitemap')) !== null) {
207 if (($helper = plugin_load('helper', 'spatialhelper_search')) !== null) {
270 useHeading('navigation') ? null :
341 if ($indexer !== null) {
362 if ($indexer !== null) {
/plugin/acknowledge/
H A Dhelper.php29 if ($this->db === null) {
552 'user' => null,
553 'ack' => null,
559 if ($ack['user'] !== null) {
/plugin/backlinks/
H A Dsyntax.php86 if($INFO != null) {

12345678910>>...204