城市污染查询api,用于查询城市或附近的污染企业、污染物类型和污染物排放情况,此接口包括:
1.支持城市列表
2.污染源排放口列表
3.城市污染源列表
4.获取排口排放情况
详细接口情况请查询聚合数据平台城市污染查询:https://www.juhe.cn/docs/api/id/224
支持城市列表
接口地址:http://pollution.api.juhe.cn/jhapi/pollution/cityList
支持格式:json
请求方式:get
请求示例:http://pollution.api.juhe.cn/jhapi/pollution/cityList?key=您申请的KEY
JSON返回示例:
{ "error_code":0,"reason":"success","result":[ { "code":"110000","region":"北京市" },{ "code":"310000","region":"上海市" },{ "code":"120000","region":"天津市" },{ "code":"500000","region":"重庆市" } ] }
污染源排放口列表
接口地址:http://pollution.api.juhe.cn/jhapi/pollution/sites
支持格式:json
请求方式:get
请求示例:http://pollution.api.juhe.cn/jhapi/pollution/sites
接口备注:根据污染源编码获取排放口
JSON返回示例:
{ "error_code":0,"result":[ { "Stcode":8348,"Stname":"标排口","Type":"Gas" } ] }
城市污染源列表
接口地址:http://pollution.api.juhe.cn/jhapi/pollution/distribution
支持格式:json
请求方式:get
请求示例:http://pollution.api.juhe.cn/jhapi/pollution/distribution?city=支持城市编码&key=您申请的KEY
接口备注:根据城市编码获取城市污染源列表
JSON返回示例:
{ "error_code":0,"result":[ { "EntCode":9531,"EntName":"杭州中策橡胶有限公司下沙基地","GasStnums":1,"Lat":30,"Lon":120,"WaterStnums":0 },{ "EntCode":9532,"EntName":"杭州市半山发电有限公司","GasStnums":7,"WaterStnums":0 } ] }
获取排口排放情况
接口地址:http://pollution.api.juhe.cn/jhapi/pollution/loads
支持格式:json
请求方式:get
请求示例:http://pollution.api.juhe.cn/jhapi/pollution/loads?siteCode=排口编号&key=您申请的KEY
接口备注:根据排口编号获取排口的排放情况,废水废气的排口排放的因子不同
JSON返回示例:
{ "error_code":0,"result":[ { "Fume":"14.7","MonitorTime":"2015-09-1516:00:00","Nox":"76.5","So2":"48.7","Stcode":8348,"TYPE":"Gas" } ] }原文链接:https://www.f2er.com/javaschema/284178.html