memo.xight.org

日々のメモ

カテゴリ : WebService

2ページ目 / 全2ページ

Google Toolbar Spell Check API

Reference

Google Toolbar Spell Check API
http://weblogs.asp.net/pwelter34/archive/2005/07/19/419838.aspx
amix.dk : GoogieSpell - Gmail like spell checker
http://amix.dk/googiespell

via

[戯] Google Toolbar Spell Check API とは
http://cl.pocari.org/2006-02-14-2.html
[戯] Ajax と Google Toolbar Spell Check API を使ったスペルチェッカー
http://cl.pocari.org/2006-02-14-1.html

Weather Hacks - livedoorによる天気情報 Webサービス

Summary

Perl からは WebService::Livedoor::Weather
PHP からは Services/Livedoor/Weather で利用できる.

地震,津波,火山,警報・注意報なども RSS 配信している.

Reference

Weather Hacks - livedoor 天気情報
http://weather.livedoor.com/weather_hacks/
お天気Webサービス仕様 - Weather Hacks - livedoor 天気情報
http://weather.livedoor.com/weather_hacks/webservice.html
RSSフィード一覧 - Weather Hacks - livedoor 天気情報
http://weather.livedoor.com/weather_hacks/rss_feed_list.html#bousai

p4lifeのメモ - PHP で Livedoor のお天気Webサービスを使う
http://d.hatena.ne.jp/p4life/20060210/1139512547
blog.nomadscafe.jp - WebService::Livedoor::Weather
http://blog.nomadscafe.jp/archives/000603.html

hostip.info - IPアドレスから国名や緯度,経度を取得するWebサービスAPI

Summary

hostip.infoのAPIを使ってIPアドレスから国名,緯度,経度を取得可能.

アクセス元の国名を取得する.

http://api.hostip.info/country.php

JP


指定したIPアドレスの国情報を取得する

http://api.hostip.info/get_html.php?ip=12.215.42.19

Country: UNITED STATES (US)
City: Sugar Grove, IL


指定したIPアドレスの国情報を取得する (緯度,経度付)

http://api.hostip.info/get_html.php?ip=12.215.42.19&position=true

Country: UNITED STATES (US)
City: Sugar Grove, IL
Latitude: 41.7696
Longitude: -88.4588


XMLで取得する

http://api.hostip.info/?ip=12.215.42.19
<HostipLookupResultSet 
	version="1.0.0"
	xmlns="http://www.hostip.info/api"
	xmlns:gml="http://www.opengis.net/gml"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.hostip.info/api/hostip-1.0.0.xsd"
>
	<gml:description>
		This is the Hostip Lookup Service
	</gml:description>
	<gml:name>
		hostip
	</gml:name>
	<gml:boundedBy>
		<gml:Null>
			inapplicable
		</gml:Null>
	</gml:boundedBy>
	<gml:featureMember>
		<Hostip>
			<gml:name>
				Sugar Grove, IL
			</gml:name>
			<countryName>
				UNITED STATES
			</countryName>
			<countryAbbrev>
				US
			</countryAbbrev>
			<!-- Co-ordinates are available as lng,lat -->
			<ipLocation>
				<gml:PointProperty>
					<gml:Point srsName="http://www.opengis.net/gml/srs/epsg.xml#4326">
						<gml:coordinates>
							-88.4588,41.7696
						</gml:coordinates>
					</gml:Point>
				</gml:PointProperty>
			</ipLocation>
		</Hostip>
	</gml:featureMember>
</HostipLookupResultSet>


Reference

Using the Database - IP Address Lookup - Community Geotarget IP Addresses Project
http://www.hostip.info/use.html

via

phpspot開発日誌 - 2006-01-20 - IPアドレスから国名や経緯度を得る方法
http://phpspot.org/blog/archives/2006/01/ip.html
オレンジニュース - 2006-01-20
http://secure.ddo.jp/~kaku/tdiary/20060120.html#p10