Home
last modified time | relevance | path

Searched refs:geoloc (Results 1 – 25 of 169) sorted by relevance

1234567

/dports/net-im/psi/psi-1.5/src/
H A Dgeolocationdlg.cpp44 if(geoloc.isNull()) in GeoLocationDlg()
47 if (geoloc.alt().hasValue()) in GeoLocationDlg()
50 if (!geoloc.area().isEmpty()) in GeoLocationDlg()
62 if (!geoloc.datum().isEmpty()) in GeoLocationDlg()
68 if (geoloc.error().hasValue()) in GeoLocationDlg()
74 if (geoloc.lat().hasValue()) in GeoLocationDlg()
80 if (geoloc.lon().hasValue()) in GeoLocationDlg()
89 if (!geoloc.room().isEmpty()) in GeoLocationDlg()
95 if (!geoloc.text().isEmpty()) in GeoLocationDlg()
108 GeoLocation geoloc; in setGeoLocation() local
[all …]
H A Dgeolocation.cpp44 geoloc.appendChild(e); in toXml()
49 geoloc.appendChild(e); in toXml()
54 geoloc.appendChild(e); in toXml()
59 geoloc.appendChild(e); in toXml()
64 geoloc.appendChild(e); in toXml()
69 geoloc.appendChild(e); in toXml()
74 geoloc.appendChild(e); in toXml()
79 geoloc.appendChild(e); in toXml()
84 geoloc.appendChild(e); in toXml()
89 geoloc.appendChild(e); in toXml()
[all …]
/dports/net-im/coccinella/Coccinella-0.96.20Src/components/
H A DGeolocation.tcl103 variable geoloc
120 -attrlist [list var $xmlns(geoloc)]]
124 $jlibname caps register geoloc $E [list $xmlns(geoloc) $xmlns(geoloc+notify)]
134 -node $xmlns(geoloc)
328 ::Jabber::Jlib pep publish $xmlns(geoloc) $itemE
334 ::Jabber::Jlib pep retract $xmlns(geoloc) -notify 1
342 variable geoloc
348 set geoloc($from) $xmldata
355 variable geoloc
360 if {![info exists geoloc($mjid)]} {
[all …]
/dports/net-im/tkabber/tkabber-1.1.2/plugins/pep/
H A Duser_location.tcl6 namespace eval geoloc { namespace
9 variable geoloc
153 variable geoloc
171 catch {unset geoloc($f,$xlib,$jid)}
183 variable geoloc
191 $geoloc(lat,$xlib,$jid) \
192 $geoloc(lon,$xlib,$jid)]
204 variable geoloc
243 set geoloc($f,$xlib,$jid) [set $f]
248 catch {unset geoloc($f,$xlib,$jid)}
[all …]
/dports/net-im/py-slixmpp/slixmpp-1.7.1/slixmpp/plugins/xep_0080/
H A Dgeoloc.py86 geoloc = Geoloc()
87 geoloc.values = kwargs
89 return self.xmpp['xep_0163'].publish(geoloc,
100 geoloc = Geoloc()
101 return self.xmpp['xep_0163'].publish(geoloc,
/dports/net/p5-Net-Whois-RIPE/Net-Whois-RIPE-2.008001/t/
H A D140-Inet6Num.t53 # Test 'geoloc'
54 $tested{'geoloc'}++;
55 is( $object->geoloc(), '[-90,90]', 'geoloc properly parsed' );
56 $object->geoloc('[-90,91]');
57 is( $object->geoloc(), '[-90,91]', 'geoloc properly set' );
151 geoloc: [-90,90]
H A D135-InetNum.t63 # Test 'geoloc'
64 $tested{'geoloc'}++;
65 is( $object->geoloc(), '[-90,90]', 'geoloc properly parsed' );
66 $object->geoloc('[-90,91]');
67 is( $object->geoloc(), '[-90,91]', 'geoloc properly set' );
155 geoloc: [-90,90]
H A D190-Organisation.t76 # Test 'geoloc'
77 $tested{'geoloc'}++;
78 is( $object->geoloc(), 'OTHER', 'geoloc properly parsed' );
79 $object->geoloc('IANA');
80 is( $object->geoloc(), 'IANA', 'geoloc properly set' );
171 geoloc: OTHER
/dports/graphics/darktable38/darktable-3.8.0/src/common/
H A Dgpx.c150 gboolean dt_gpx_get_location(struct dt_gpx_t *gpx, GDateTime *timestamp, dt_image_geoloc_t *geoloc) in dt_gpx_get_location() argument
166 geoloc->longitude = tp->longitude; in dt_gpx_get_location()
167 geoloc->latitude = tp->latitude; in dt_gpx_get_location()
168 geoloc->elevation = tp->elevation; in dt_gpx_get_location()
181 geoloc->longitude = tp->longitude; in dt_gpx_get_location()
182 geoloc->latitude = tp->latitude; in dt_gpx_get_location()
183 geoloc->elevation = tp->elevation; in dt_gpx_get_location()
234 geoloc->latitude = lat; in dt_gpx_get_location()
235 geoloc->longitude = lon; in dt_gpx_get_location()
239 geoloc->elevation = NAN; in dt_gpx_get_location()
[all …]
H A Dimage_cache.c84 img->geoloc.longitude = sqlite3_column_double(stmt, 19); in dt_image_cache_allocate()
86 img->geoloc.longitude = NAN; in dt_image_cache_allocate()
88 img->geoloc.latitude = sqlite3_column_double(stmt, 20); in dt_image_cache_allocate()
90 img->geoloc.latitude = NAN; in dt_image_cache_allocate()
92 img->geoloc.elevation = sqlite3_column_double(stmt, 21); in dt_image_cache_allocate()
94 img->geoloc.elevation = NAN; in dt_image_cache_allocate()
281 DT_DEBUG_SQLITE3_BIND_DOUBLE(stmt, 19, img->geoloc.longitude); in dt_image_cache_write_release()
282 DT_DEBUG_SQLITE3_BIND_DOUBLE(stmt, 20, img->geoloc.latitude); in dt_image_cache_write_release()
283 DT_DEBUG_SQLITE3_BIND_DOUBLE(stmt, 21, img->geoloc.elevation); in dt_image_cache_write_release()
H A Dimage.h246 dt_image_geoloc_t geoloc; member
334 void dt_image_set_location(const int32_t imgid, const dt_image_geoloc_t *geoloc,
337 void dt_image_set_locations(const GList *img, const dt_image_geoloc_t *geoloc,
343 void dt_image_get_location(const int32_t imgid, dt_image_geoloc_t *geoloc);
H A Dimage.c494 geoloc->longitude = img->geoloc.longitude; in dt_image_get_location()
495 geoloc->latitude = img->geoloc.latitude; in dt_image_get_location()
496 geoloc->elevation = img->geoloc.elevation; in dt_image_get_location()
505 memcpy(&image->geoloc, geoloc, sizeof(dt_image_geoloc_t)); in _set_location()
531 _set_location(undogeotag->imgid, geoloc); in _pop_undo()
613 _set_location(imgid, geoloc); in _image_set_location()
644 dt_image_set_locations(imgs, geoloc, undo_on); in dt_image_set_location()
667 _set_location(imgid, geoloc); in _image_set_images_locations()
1770 img->geoloc.latitude = NAN; in dt_image_init()
1771 img->geoloc.longitude = NAN; in dt_image_init()
[all …]
/dports/graphics/darktable/darktable-3.6.1/src/common/
H A Dgpx.c154 gboolean dt_gpx_get_location(struct dt_gpx_t *gpx, GDateTime *timestamp, dt_image_geoloc_t *geoloc) in dt_gpx_get_location() argument
170 geoloc->longitude = tp->longitude; in dt_gpx_get_location()
171 geoloc->latitude = tp->latitude; in dt_gpx_get_location()
172 geoloc->elevation = tp->elevation; in dt_gpx_get_location()
180 geoloc->longitude = tp->longitude; in dt_gpx_get_location()
181 geoloc->latitude = tp->latitude; in dt_gpx_get_location()
182 geoloc->elevation = tp->elevation; in dt_gpx_get_location()
H A Dimage_cache.c84 img->geoloc.longitude = sqlite3_column_double(stmt, 19); in dt_image_cache_allocate()
86 img->geoloc.longitude = NAN; in dt_image_cache_allocate()
88 img->geoloc.latitude = sqlite3_column_double(stmt, 20); in dt_image_cache_allocate()
90 img->geoloc.latitude = NAN; in dt_image_cache_allocate()
92 img->geoloc.elevation = sqlite3_column_double(stmt, 21); in dt_image_cache_allocate()
94 img->geoloc.elevation = NAN; in dt_image_cache_allocate()
281 DT_DEBUG_SQLITE3_BIND_DOUBLE(stmt, 19, img->geoloc.longitude); in dt_image_cache_write_release()
282 DT_DEBUG_SQLITE3_BIND_DOUBLE(stmt, 20, img->geoloc.latitude); in dt_image_cache_write_release()
283 DT_DEBUG_SQLITE3_BIND_DOUBLE(stmt, 21, img->geoloc.elevation); in dt_image_cache_write_release()
H A Dimage.h235 dt_image_geoloc_t geoloc; member
323 void dt_image_set_location(const int32_t imgid, const dt_image_geoloc_t *geoloc,
326 void dt_image_set_locations(const GList *img, const dt_image_geoloc_t *geoloc,
332 void dt_image_get_location(const int32_t imgid, dt_image_geoloc_t *geoloc);
H A Dimage.c459 geoloc->longitude = img->geoloc.longitude; in dt_image_get_location()
460 geoloc->latitude = img->geoloc.latitude; in dt_image_get_location()
461 geoloc->elevation = img->geoloc.elevation; in dt_image_get_location()
470 memcpy(&image->geoloc, geoloc, sizeof(dt_image_geoloc_t)); in _set_location()
496 _set_location(undogeotag->imgid, geoloc); in _pop_undo()
578 _set_location(imgid, geoloc); in _image_set_location()
609 dt_image_set_locations(imgs, geoloc, undo_on); in dt_image_set_location()
632 _set_location(imgid, geoloc); in _image_set_images_locations()
1728 img->geoloc.latitude = NAN; in dt_image_init()
1729 img->geoloc.longitude = NAN; in dt_image_init()
[all …]
/dports/net-im/telepathy-gabble/telepathy-gabble-0.18.4/tests/twisted/
H A Dtest-location.py132 geoloc = xpath.queryForNodes("/iq/pubsub/publish/item/geoloc", event.stanza)[0]
133 assertEquals(geoloc.getAttribute((ns.XML, 'lang')), 'en')
134 lon = xpath.queryForNodes('/geoloc/lon', geoloc)[0]
136 lat = xpath.queryForNodes('/geoloc/lat', geoloc)[0]
138 timestamp = xpath.queryForNodes('/geoloc/timestamp', geoloc)[0]
140 country = xpath.queryForNodes('/geoloc/country', geoloc)[0]
142 lat = xpath.queryForNodes('/geoloc/accuracy', geoloc)[0]
/dports/graphics/py-gdal/gdal-3.3.3/doc/source/programs/
H A Dgdallocationinfo.rst20 [-l_srs srs_def] [-geoloc] [-wgs84]
61 .. option:: -geoloc
80 coordinate system is pixel/line unless -l_srs, -wgs84 or -geoloc supplied.
85 coordinate system is pixel/line unless -l_srs, -wgs84 or -geoloc supplied.
102 However with use of the :option:`-geoloc`, :option:`-wgs84`, or :option:`-l_srs` switches it is pos…
151 $ cat coordinates.txt | gdallocationinfo -geoloc utmsmall.tif
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/doc/source/programs/
H A Dgdallocationinfo.rst20 [-l_srs srs_def] [-geoloc] [-wgs84]
61 .. option:: -geoloc
80 coordinate system is pixel/line unless -l_srs, -wgs84 or -geoloc supplied.
85 coordinate system is pixel/line unless -l_srs, -wgs84 or -geoloc supplied.
102 However with use of the :option:`-geoloc`, :option:`-wgs84`, or :option:`-l_srs` switches it is pos…
151 $ cat coordinates.txt | gdallocationinfo -geoloc utmsmall.tif
/dports/graphics/gdal/gdal-3.3.3/doc/source/programs/
H A Dgdallocationinfo.rst20 [-l_srs srs_def] [-geoloc] [-wgs84]
61 .. option:: -geoloc
80 coordinate system is pixel/line unless -l_srs, -wgs84 or -geoloc supplied.
85 coordinate system is pixel/line unless -l_srs, -wgs84 or -geoloc supplied.
102 However with use of the :option:`-geoloc`, :option:`-wgs84`, or :option:`-l_srs` switches it is pos…
151 $ cat coordinates.txt | gdallocationinfo -geoloc utmsmall.tif
/dports/deskutils/meteo/meteo-6bd48892ec86d7208cb4ad1dd8baf74ba72df68f/src/Utils/
H A DGeoLocate.vala77 var geoloc = GeoLoc ();
90 geoloc.city = mygeoloc.get_string_member ("city");
91 geoloc.state = mygeoloc.get_string_member ("state");
92 geoloc.country = mygeoloc.get_string_member ("country_code").up ();
96 return geoloc;
/dports/net-mgmt/librenms/librenms-21.5.1/app/ApiClients/
H A DBingApi.php61 $api_key = Config::get('geoloc.api_key');
63 throw new Exception('Bing API key missing, set geoloc.api_key');
H A DMapquestApi.php61 $api_key = Config::get('geoloc.api_key');
63 throw new Exception('MapQuest API key missing, set geoloc.api_key');
H A DGoogleMapsApi.php75 $api_key = Config::get('geoloc.api_key');
77 throw new Exception('Google Maps API key missing, set geoloc.api_key');
/dports/www/googler/googler-4.3.2/auto-completion/bash/
H A Dgoogler-completion.bash21 -g --geoloc
49 -g --geoloc

1234567