|
@@ -1,62 +1,7 @@
|
|
|
[
|
|
|
{
|
|
|
- "query_type": "land_site_selection",
|
|
|
- "query": "帮我在杭州市推荐一宗50亩左右的工业用地",
|
|
|
- "sql_code": "select id, name, county, location,total_price,unit_price, area, comprehensive_score, st_astext(st_centroid(geom)) as center_wkt from nrllm.land_public_sale where city = '杭州市' and planned_land_use = '工业用地' and abs(area * 0.0015 - 50) <= 5 order by abs(area * 0.0015 - 50), comprehensive_score desc nulls last limit 10"
|
|
|
- },
|
|
|
- {
|
|
|
- "query_type": "land_site_selection",
|
|
|
- "query": "请帮我在杭州市找几块在开发区内,园区主导产业为汽车制造业的工业用地",
|
|
|
- "sql_code": "select id, name, county, location, total_price, unit_price, area, park_name, park_primary_industry, comprehensive_score, st_astext(st_centroid(geom)) as center_wkt from nrllm.land_public_sale where city = '杭州市' and in_industrial_park = '是' and park_primary_industry like '%汽车制造业%' and planned_land_use = '工业用地' order by comprehensive_score desc nulls last limit 10"
|
|
|
- },
|
|
|
- {
|
|
|
- "query_type": "land_site_selection",
|
|
|
- "query": "帮我在杭州市滨江区推荐一宗50亩左右的工业用地",
|
|
|
- "sql_code": "select id, name, county, location,total_price,unit_price, area, comprehensive_score , st_astext(st_centroid(geom)) as center_wkt from nrllm.land_public_sale where city = '杭州市' and county = '滨江区' and planned_land_use = '工业用地' and abs(area * 0.0015 - 50) <= 5 order by abs(area * 0.0015 - 50), comprehensive_score desc nulls last limit 10"
|
|
|
- },
|
|
|
- {
|
|
|
- "query_type": "land_site_selection",
|
|
|
- "query": "帮我在杭州市滨江区正泰大厦附近推荐一宗50亩左右的工业用地",
|
|
|
- "sql_code": "select id, name, county, location,total_price,unit_price, area, comprehensive_score, round(st_distance(st_geometryfromtext('POINT (40520795.286336236 3343271.716593298)', 4528), st_transform(geom, 4528))::numeric,0) distance, st_astext(st_centroid(geom)) as center_wkt from nrllm.land_public_sale where city = '杭州市' and county = '滨江区' and planned_land_use = '工业用地' and abs(area * 0.0015 - 50) <= 5 and distance <= 5000 order by distance, abs(area * 0.0015 - 50) asc, comprehensive_score desc nulls last limit 10"
|
|
|
- },
|
|
|
- {
|
|
|
- "query_type": "land_site_selection",
|
|
|
- "query": "帮我在杭州市萧山机场附近推荐一宗50亩左右的工业用地",
|
|
|
- "sql_code": "select id, name, county, location,total_price,unit_price, area, comprehensive_score, round(st_distance(st_geometryfromtext('POINT (40536500.157731295 3344173.678146237)', 4528), st_transform(geom, 4528))::numeric,0) distance, st_astext(st_centroid(geom)) as center_wkt from nrllm.land_public_sale where city = '杭州市' and county = '滨江区' and planned_land_use = '工业用地' and abs(area * 0.0015 - 50) <= 5 and distance <= 5000 order by distance, abs(area * 0.0015 - 50) asc, comprehensive_score desc nulls last limit 10"
|
|
|
- },
|
|
|
- {
|
|
|
- "query_type": "land_site_selection",
|
|
|
- "query": "在杭州市萧山机场附近推荐几块总价不超过2000万的工业用地",
|
|
|
- "sql_code": "select id, name, county, location,total_price,unit_price, area, comprehensive_score, round(st_distance(st_geometryfromtext('POINT (40536500.157731295 3344173.678146237)', 4528), st_transform(geom, 4528))::numeric,0) as distance, st_astext(st_centroid(geom)) as center_wkt from nrllm.land_public_sale where city = '杭州市' and county = '滨江区' and planned_land_use = '工业用地' and total_price <= 2000 and round(st_distance(st_geometryfromtext('POINT (40536500.157731295 3344173.678146237)', 4528), st_transform(geom, 4528))::numeric,0) <= 5000 order by distance, abs(area * 0.0015 - 50) asc, comprehensive_score desc nulls last limit 10"
|
|
|
- },
|
|
|
- {
|
|
|
- "query_type": "land_site_selection",
|
|
|
- "query": "帮我在杭州市西湖区土地协会附近推荐一宗50亩左右的工业用地",
|
|
|
- "sql_code": "select id, name, county, location,total_price,unit_price, area, comprehensive_score, round(st_distance(st_geometryfromtext('POINT (40513914.94028399 3350070.761533372)', 4528), st_transform(geom, 4528))::numeric,0) distance, st_astext(st_centroid(geom)) as center_wkt from nrllm.land_public_sale where city = '杭州市' and county = '西湖区' and planned_land_use = '工业用地' and abs(area * 0.0015 - 50) <= 5 and distance <= 5000 order by distance, abs(area * 0.0015 - 50) asc, comprehensive_score desc nulls last limit 10"
|
|
|
- },
|
|
|
- {
|
|
|
- "query_type": "land_site_selection",
|
|
|
- "query": "帮我在杭州市滨江区推荐一宗交通便利的50亩左右的工业用地",
|
|
|
- "sql_code": "select id, name, county, location,total_price,unit_price, area, comprehensive_score, st_astext(st_centroid(geom)) center_wkt from nrllm.land_public_sale where city = '杭州市' and county = '滨江区' and planned_land_use = '工业用地' and abs(area * 0.0015 - 50) <= 5 order by abs(area * 0.0015 - 50) asc, comprehensive_score desc nulls last limit 10"
|
|
|
- },
|
|
|
- {
|
|
|
- "query_type": "land_site_selection",
|
|
|
- "query": "帮我在杭州市西湖区推荐一宗30亩到50亩的工业用地",
|
|
|
- "sql_code": "select id, name, county, location,total_price,unit_price, area, comprehensive_score, st_astext(st_centroid(geom)) center_wkt from nrllm.land_public_sale where city = '杭州市' and county = '滨江区' and planned_land_use = '工业用地' and area * 0.0015 >= 30 and area * 0.0015 <= 50 order by abs(area * 0.0015 - 50) asc, comprehensive_score desc nulls last limit 10"
|
|
|
- },
|
|
|
- {
|
|
|
- "query_type": "land_site_selection",
|
|
|
- "query": "请帮我在杭州市余杭区找几块面积在50亩左右,总价不超过3000万,周边5公里内有地铁站的地块",
|
|
|
- "sql_code": "select id, name, county, location,total_price,unit_price, area, comprehensive_score, st_astext(st_centroid(geom)) center_wkt from nrllm.land_public_sale where city = '杭州市' and county = '余杭区' and total_price <= 3000 and abs(area * 0.0015 - 50) <= 5 order by abs(area * 0.0015 - 50) asc, comprehensive_score desc nulls last limit 10"
|
|
|
- },
|
|
|
- {
|
|
|
- "query_type": "land_site_selection",
|
|
|
- "query": "请在杭州市杭州东站附近8公里范围内推荐几块工业用地",
|
|
|
- "sql_code": "select id, name, county, location, total_price, unit_price, area, comprehensive_score, st_astext(st_centroid(geom)) as center_wkt from nrllm.land_public_sale where city = '杭州市' and planned_land_use = '工业用地' and round(st_distance(st_geometryfromtext('POINT (40519226.78670315 3352109.7250877074)', 4528), st_transform(geom, 4528))::numeric, 0) <= 8000 order by comprehensive_score desc nulls last"
|
|
|
- },
|
|
|
- {
|
|
|
- "query_type": "land_site_selection",
|
|
|
- "query": "帮我杭州市找几块面积在30~40亩,周边有新能源产业的工业用地",
|
|
|
- "sql_code": "select id, name, county, location, total_price, unit_price, area, comprehensive_score, st_astext(st_centroid(geom)) as center_wkt, string_agg(distinct en_name, ',') as 五公里内新能源产业企业名称 from (select a.id, a.name, a.county, location, total_price, unit_price, area, comprehensive_score, a.geom, b.name as en_name from nrllm.land_public_sale a, (select name, geom from nrllm.layer_poi_industry_enterprise where industry like '%新能源%') b where city = '杭州市' and planned_land_use = '工业用地' and area * 0.0015 >= 30 and area * 0.0015 <= 40 and st_dwithin(a.geom::geography, b.geom::geography, 5000)) t group by id, name, county, location, total_price, unit_price, area, comprehensive_score, center_wkt"
|
|
|
+ "query_type": "land_site_selection",
|
|
|
+ "query": "帮我在萧山区推荐一宗50亩左右的工业用地",
|
|
|
+ "sql_code": "select id, xzqmc, name, address, dkmj, tdyt, st_astext(st_centroid(shape)) as center_wkt from sde.ecgap_klyzy where xzqmc = '萧山区' and tdyt = '工业用地' and abs(dkmj - 50) <= 5 order by dkmj nulls last limit 10"
|
|
|
}
|
|
|
]
|