経営耕地面積規模別の経営体割合
地域単位、年単位の経営耕地面積規模別の経営体の割合を返します。
GET api/v1/agriculture/land/Ratio
データ提供年
2005-2020年(5年毎)
RESAS対象マップ
産業構造マップ > 農業 > 農地分析
- ※ リンク先のグラフ表示の際のパラメータは、すべて初期設定の値を使用しています。
parameters
Name | Description | Required |
---|---|---|
prefCode | 都道府県コード | true |
cityCode |
市区町村コード 「すべての市区町村」を選択する場合は「-」を送ります。 |
true |
oldCityCode | 旧市区町村コード(現在、旧市区町村コードによるデータは取得できません) | |
matter |
表示内容 1:指定地域 2:都道府県内平均 3:全国平均 |
true |
addArea |
追加エリアコード 他地域と合算した値を取得する際に使用するパラメータです。 「addArea=都道府県コード_市区町村コード」の形式で指定します。 複数指定する場合は「addArea=1_01100,13_13101」などのように、「,」 で各地域のパラメータを区切ります。 都道府県単位で指定する場合、「addArea=1_,13_」の形式で指定します。 最大10個指定でき、11個以上送られてきた場合はステータスコード400を返します。 「cityCode」で「すべての市区町村」(-)を選択した場合、addAreaで合算されるのは、都道府県単位の数値となります。 また、「cityCode」でいずれかの市区町村(13101など)を選択した場合、addAreaで合算されるのは、市区町村単位の数値となります。 |
responses
Name | Description |
---|---|
/result/prefCode | 対象の県コード |
/result/prefName | 対象の県名 |
/result/cityCode | 対象の市町村コード |
/result/cityName | 対象の市町村名 |
/result/oldCityCode | 対象の旧市町村コード |
/result/oldCityName | 対象の旧市町村名 |
/result/matter | 表示内容 |
/result/legend/label | ラベル |
/result/legend/code |
コード 1:0.3ha未満 2:0.3ha以上1.0ha未満 3:1ha以上10ha未満 4:10ha以上30ha未満 5:30ha以上 |
/result/years/year | 年 |
/result/years/label | ラベル |
/result/years/data/label | ラベル |
/result/years/data/code | コード 1:0.3ha未満, 2:0.3ha以上1.0ha未満, 3:1ha以上10ha未満, 4:10ha以上30ha未満, 5:30ha以上 |
/result/years/data/value | 割合 |
sample
GET https://opendata.resas-portal.go.jp/api/v1/agriculture/land/Ratio?cityCode=11362&matter=3&prefCode=11
{
"message": null,
"result": {
"prefCode": "",
"prefName": "",
"cityCode": "",
"cityName": "",
"oldCityCode": "",
"oldCityName": "",
"matter": "3",
"legend": [{
"label": "0.3ha未満",
"code": "1"
}, {
"label": "0.3ha以上1.0ha未満",
"code": "2"
}, {
"label": "1ha以上10ha未満",
"code": "3"
}, {
"label": "10ha以上30ha未満",
"code": "4"
}, {
"label": "30ha以上",
"code": "5"
}],
"years": [{
"year": 2005,
"label": "全国平均",
"data": [{
"label": "0.3ha未満",
"code": "1",
"value": 3.05
}, {
"label": "0.3ha以上1.0ha未満",
"code": "2",
"value": 54.2
}, {
"label": "1ha以上10ha未満",
"code": "3",
"value": 40.59
}, {
"label": "10ha以上30ha未満",
"code": "4",
"value": 1.48
}, {
"label": "30ha以上",
"code": "5",
"value": 0.65
}]
}, {
"year": 2010,
"label": "全国平均",
"data": [{
"label": "0.3ha未満",
"code": "1",
"value": 3.18
}, {
"label": "0.3ha以上1.0ha未満",
"code": "2",
"value": 52.35
}, {
"label": "1ha以上10ha未満",
"code": "3",
"value": 41.51
}, {
"label": "10ha以上30ha未満",
"code": "4",
"value": 1.99
}, {
"label": "30ha以上",
"code": "5",
"value": 0.95
}]
}, {
"year": 2015,
"label": "全国平均",
"data": [{
"label": "0.3ha未満",
"code": "1",
"value": 3.55
}, {
"label": "0.3ha以上1.0ha未満",
"code": "2",
"value": 50.27
}, {
"label": "1ha以上10ha未満",
"code": "3",
"value": 42.33
}, {
"label": "10ha以上30ha未満",
"code": "4",
"value": 2.59
}, {
"label": "30ha以上",
"code": "5",
"value": 1.24
}]
}, {
"year": 2020,
"label": "全国平均",
"data": [{
"label": "0.3ha未満",
"code": "1",
"value": 4.91
}, {
"label": "0.3ha以上1.0ha未満",
"code": "2",
"value": 47.65
}, {
"label": "1ha以上10ha未満",
"code": "3",
"value": 42.3
}, {
"label": "10ha以上30ha未満",
"code": "4",
"value": 3.4
}, {
"label": "30ha以上",
"code": "5",
"value": 1.72
}]
}]
}
}