7.5.1. geonlp.parse
テキストを geoparse します。
リクエストパラメータ
- sentencestr
変換したいテキスト
長さの上限なし
- optionsdict, optional
Parse オプション を参照
レスポンス
features
に GeoJSON Feature 形式の
地名語、非地名語、住所をリストとして含む
FeatureCollection 形式の GeoJSON を返します。
7.5.1.1. リクエストの例
{
"method": "geonlp.parse",
"params": {
"sentence": "NIIは神保町駅から徒歩7分です。"
},
"id": "test_parse"
}
7.5.1.2. レスポンスの例
{
"features": [
{
"geometry": null,
"properties": {
"morphemes": {
"conjugated_form": "*",
"conjugation_type": "*",
"original_form": "*",
"pos": "名詞",
"prononciation": "",
"subclass1": "固有名詞",
"subclass2": "組織",
"subclass3": "*",
"surface": "NII",
"yomi": ""
},
"node_type": "NORMAL",
"surface": "NII"
},
"type": "Feature"
},
{
"geometry": null,
"properties": {
"morphemes": {
"conjugated_form": "*",
"conjugation_type": "*",
"original_form": "は",
"pos": "助詞",
"prononciation": "ワ",
"subclass1": "係助詞",
"subclass2": "*",
"subclass3": "*",
"surface": "は",
"yomi": "ハ"
},
"node_type": "NORMAL",
"surface": "は"
},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
139.757665,
35.695975000000004
],
"type": "Point"
},
"properties": {
"geoword_properties": {
"body": "神保町",
"dictionary_id": 3,
"dictionary_identifier": "geonlp:ksj-station-N02",
"entry_id": "Iy2jnd",
"geolod_id": "AGGwyc",
"hypernym": [
"東京地下鉄",
"11号線半蔵門線"
],
"institution_type": "民営鉄道",
"latitude": "35.695975000000004",
"longitude": "139.757665",
"ne_class": "鉄道施設/鉄道駅",
"railway_class": "普通鉄道",
"suffix": [
"駅",
""
]
},
"morphemes": {
"conjugated_form": "*",
"conjugation_type": "*",
"original_form": "神保町駅",
"pos": "名詞",
"prononciation": "",
"subclass1": "固有名詞",
"subclass2": "地名語",
"subclass3": "AGGwyc:神保町駅",
"surface": "神保町駅",
"yomi": ""
},
"node_type": "GEOWORD",
"surface": "神保町駅"
},
"type": "Feature"
},
{
"geometry": null,
"properties": {
"morphemes": {
"conjugated_form": "*",
"conjugation_type": "*",
"original_form": "から",
"pos": "助詞",
"prononciation": "カラ",
"subclass1": "格助詞",
"subclass2": "一般",
"subclass3": "*",
"surface": "から",
"yomi": "カラ"
},
"node_type": "NORMAL",
"surface": "から"
},
"type": "Feature"
},
{
"geometry": null,
"properties": {
"morphemes": {
"conjugated_form": "*",
"conjugation_type": "*",
"original_form": "徒歩",
"pos": "名詞",
"prononciation": "トホ",
"subclass1": "一般",
"subclass2": "*",
"subclass3": "*",
"surface": "徒歩",
"yomi": "トホ"
},
"node_type": "NORMAL",
"surface": "徒歩"
},
"type": "Feature"
},
{
"geometry": null,
"properties": {
"morphemes": {
"conjugated_form": "*",
"conjugation_type": "*",
"original_form": "*",
"pos": "名詞",
"prononciation": "",
"subclass1": "数",
"subclass2": "*",
"subclass3": "*",
"surface": "7",
"yomi": ""
},
"node_type": "NORMAL",
"surface": "7"
},
"type": "Feature"
},
{
"geometry": null,
"properties": {
"morphemes": {
"conjugated_form": "*",
"conjugation_type": "*",
"original_form": "分",
"pos": "名詞",
"prononciation": "フン",
"subclass1": "接尾",
"subclass2": "助数詞",
"subclass3": "*",
"surface": "分",
"yomi": "フン"
},
"node_type": "NORMAL",
"surface": "分"
},
"type": "Feature"
},
{
"geometry": null,
"properties": {
"morphemes": {
"conjugated_form": "特殊・デス",
"conjugation_type": "基本形",
"original_form": "です",
"pos": "助動詞",
"prononciation": "デス",
"subclass1": "*",
"subclass2": "*",
"subclass3": "*",
"surface": "です",
"yomi": "デス"
},
"node_type": "NORMAL",
"surface": "です"
},
"type": "Feature"
},
{
"geometry": null,
"properties": {
"morphemes": {
"conjugated_form": "*",
"conjugation_type": "*",
"original_form": "。",
"pos": "記号",
"prononciation": "。",
"subclass1": "句点",
"subclass2": "*",
"subclass3": "*",
"surface": "。",
"yomi": "。"
},
"node_type": "NORMAL",
"surface": "。"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
}