Repository: sshuair/coord-convert Branch: master Commit: ee2a78040fb6 Files: 39 Total size: 817.7 KB Directory structure: gitextract_dvyux3q3/ ├── .github/ │ └── workflows/ │ ├── pypi.yml │ └── test.yml ├── .gitignore ├── .pypic ├── LICENSE ├── README.md ├── coord_convert/ │ ├── __init__.py │ ├── coordconvert.py │ └── transform.py ├── requirements.txt ├── setup.py └── tests/ ├── __init__.py ├── data/ │ ├── Polyline/ │ │ └── polyline.geojson │ ├── multiPoint/ │ │ ├── multi-point.cpg │ │ ├── multi-point.dbf │ │ ├── multi-point.prj │ │ ├── multi-point.qpj │ │ ├── multi-point.shp │ │ └── multi-point.shx │ ├── multiPolygon/ │ │ ├── polygon_wgs.cpg │ │ ├── polygon_wgs.dbf │ │ ├── polygon_wgs.prj │ │ ├── polygon_wgs.qpj │ │ ├── polygon_wgs.shp │ │ └── polygon_wgs.shx │ ├── multiPolyline/ │ │ ├── polyline_wgs.cpg │ │ ├── polyline_wgs.dbf │ │ ├── polyline_wgs.prj │ │ ├── polyline_wgs.shp │ │ └── polyline_wgs.shx │ ├── point/ │ │ ├── point.cpg │ │ ├── point.dbf │ │ ├── point.geojson │ │ ├── point.prj │ │ ├── point.qpj │ │ ├── point.shp │ │ └── point.shx │ └── polygon/ │ └── polygon.geojson └── test_transform.py ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/workflows/pypi.yml ================================================ name: pypi on: [release] jobs: build: runs-on: ubuntu-latest strategy: max-parallel: 4 matrix: python-version: [3.6] steps: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt - name: Lint with flake8 run: | pip install flake8 # stop the build if there are Python syntax errors or undefined names flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test with pytest run: | pip install pytest pytest - name: build wheels run: | pip install setuptools wheel twine python setup.py sdist bdist_wheel python -m twine upload -r pypi --verbose -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} dist/* ================================================ FILE: .github/workflows/test.yml ================================================ name: pytest on: [push] jobs: build: runs-on: ubuntu-latest strategy: max-parallel: 4 matrix: python-version: [3.5, 3.6, 3.7] steps: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt - name: Lint with flake8 run: | pip install flake8 # stop the build if there are Python syntax errors or undefined names flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test with pytest run: | pip install pytest pytest ================================================ FILE: .gitignore ================================================ *.pyc .pytest_cache __pycache__ *.egg-info dist build ================================================ FILE: .pypic ================================================ [distutils] index-servers= pypi testpypi [pypi] repository = https://upload.pypi.org/legacy/ username = password = [testpypi] repository = https://test.pypi.org/legacy/ username = password = ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2018 sshuair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ # China Coordinate Convertor [![Actions Status](https://github.com/sshuair/coord-convert/workflows/pytest/badge.svg)](https://github.com/sshuair/coord-convert/actions) [![GitHub stars](https://img.shields.io/github/stars/sshuair/coord-convert)](https://github.com/sshuair/coord-convert/stargazers) [![GitHub forks](https://img.shields.io/github/forks/sshuair/coord-convert)](https://github.com/sshuair/coord-convert/network) [![GitHub license](https://img.shields.io/github/license/sshuair/coord-convert)](https://github.com/sshuair/coord-convert/blob/master/LICENSE) [中国火星坐标](https://en.wikipedia.org/wiki/Restrictions_on_geographic_data_in_China)转换命令行工具,用于`WGS-84`(未偏移坐标), `GCJ-02`(国家测绘局、高德、谷歌中国地图), `BD-09`(百度坐标系)三者之间的互相转换,支持文件格式: - ESRI Shapefile - GeoJSON 图片名称 ## 安装 推荐使用: `pip install coord-convert` 或者也可以从源码安装: ``` git clone https://github.com/sshuair/coord-convert.git pip install -r requirements.txt python setup.py install ``` ## 依赖 - python3 - fiona - tqdm - click ## 使用方法 >注意:火星坐标转换是针对经纬度的转换,因此在进行转换前需要将坐标转换成经纬度;比如web墨卡托(3857)等投影坐标系需要先转成经纬度坐标(4326) ### Python API调用 在python程序中调用相应的坐标转换接口 ```python from coord_convert.transform import wgs2gcj, wgs2bd, gcj2wgs, gcj2bd, bd2wgs, bd2gcj lon, lat = 120, 40 gcj_lon, gcj_lat = wgs2gcj(lon, lat) bd_lon, bd_lat = wgs2bd(lon, lat) print(gcj_lon, gcj_lat) # the result should be: 120.00567568355486 40.0013047896019 ``` ### 命令行调用 火星坐标转换还支持命令行直接对shp、geojson等文件进行转换,比如 ```bash ~/temp > coord_covert gcj2wgs tests/data/Polyline/polyline.geojson aa.geojson 100%|██████████████████████████████████████████████████████| 219/219 [00:00<00:00, 550.93it/s] ``` 更详细的用法: ``` convert input china coordinate to another. Arguments: convert_type {string} -- [coordinate convert type, e.g. wgs2bd] wgs2gcj : convert WGS-84 to GCJ-02 wgs2bd : convert WGS-84 to DB-09 gcj2wgs : convert GCJ-02 to WGS-84 gcj2bd : convert GCJ-02 to BD-09 bd2wgs : convert BD-09 to WGS-84 bd2gcj : convert BD-09 to GCJ-02 src_path {string} -- [source file path] dst_path {string} -- [destination file path] Example: coord_covert wgs2gcj ./tests/data/polygon/polygon_wgs.shp ~/temp/polygon_gcj.shp ``` ================================================ FILE: coord_convert/__init__.py ================================================ __version__ = '0.2.1' ================================================ FILE: coord_convert/coordconvert.py ================================================ # -*- coding: utf-8 -*- import fiona from tqdm import tqdm import click from coord_convert.transform import Transform def recur_map(f, data): """递归处理所有坐标 Arguments: f {function} -- [apply function] data {collection} -- [fiona collection] """ return[ not type(x) is list and f(x) or recur_map(f, x) for x in data ] @click.command() @click.argument('convert_type', type=click.STRING) @click.argument('src_path', type=click.Path(exists=True)) @click.argument('dst_path', type=click.Path(exists=False)) def convertor(src_path, dst_path, convert_type): """convert input china coordinate to another. \b Arguments: convert_type {string} -- [coordinate convert type, e.g. wgs2bd] \b wgs2gcj : convert WGS-84 to GCJ-02 wgs2bd : convert WGS-84 to DB-09 gcj2wgs : convert GCJ-02 to WGS-84 gcj2bd : convert GCJ-02 to BD-09 bd2wgs : convert BD-09 to WGS-84 bd2gcj : convert BD-09 to GCJ-02 src_path {string} -- [source file path] dst_path {string} -- [destination file path] Example: \b coord_covert wgs2gcj ./test/data/line/multi-polygon.shp ~/temp/qqqq.shp """ with fiona.open(src_path, 'r', encoding='utf-8') as source: source_schema = source.schema.copy() with fiona.open(dst_path, 'w', encoding='utf-8', **source.meta) as out: transform = Transform() f = lambda x: getattr(transform, convert_type)(x[0], x[1]) #dynamic call convert func for fea in tqdm(source): collections = fea['geometry']['coordinates'] if type(collections) is tuple: fea['geometry']['coordinates'] = f(collections) elif type(collections) is list: fea['geometry']['coordinates'] = recur_map(f, collections) else: raise TypeError("collection must be list or tuple") out.write(fea) ================================================ FILE: coord_convert/transform.py ================================================ # -*- coding: utf-8 -*- from math import sin, cos, sqrt, fabs, atan2 from math import pi as PI # define ellipsoid a = 6378245.0 f = 1 / 298.3 b = a * (1 - f) ee = 1 - (b * b) / (a * a) def outOfChina(lng, lat): """check weather lng and lat out of china Arguments: lng {float} -- longitude lat {float} -- latitude Returns: Bollen -- True or False """ return not (72.004 <= lng <= 137.8347 and 0.8293 <= lat <= 55.8271) def transformLat(x, y): ret = -100.0 + 2.0 * x + 3.0 * y + 0.2 * y * y + 0.1 * x * y + 0.2 * sqrt(fabs(x)) ret = ret + (20.0 * sin(6.0 * x * PI) + 20.0 * sin(2.0 * x * PI)) * 2.0 / 3.0 ret = ret + (20.0 * sin(y * PI) + 40.0 * sin(y / 3.0 * PI)) * 2.0 / 3.0 ret = ret + (160.0 * sin(y / 12.0 * PI) + 320.0 * sin(y * PI / 30.0)) * 2.0 / 3.0 return ret def transformLon(x, y): ret = 300.0 + x + 2.0 * y + 0.1 * x * x + 0.1 * x * y + 0.1 * sqrt(fabs(x)) ret = ret + (20.0 * sin(6.0 * x * PI) + 20.0 * sin(2.0 * x * PI)) * 2.0 / 3.0 ret = ret + (20.0 * sin(x * PI) + 40.0 * sin(x / 3.0 * PI)) * 2.0 / 3.0 ret = ret + (150.0 * sin(x / 12.0 * PI) + 300.0 * sin(x * PI / 30.0)) * 2.0 / 3.0 return ret def wgs2gcj(wgsLon, wgsLat): """wgs coord to gcj Arguments: wgsLon {float} -- lon wgsLat {float} -- lat Returns: tuple -- gcj coords """ if outOfChina(wgsLon, wgsLat): return wgsLon, wgsLat dLat = transformLat(wgsLon - 105.0, wgsLat - 35.0) dLon = transformLon(wgsLon - 105.0, wgsLat - 35.0) radLat = wgsLat / 180.0 * PI magic = sin(radLat) magic = 1 - ee * magic * magic sqrtMagic = sqrt(magic) dLat = (dLat * 180.0) / ((a * (1 - ee)) / (magic * sqrtMagic) * PI) dLon = (dLon * 180.0) / (a / sqrtMagic * cos(radLat) * PI) gcjLat = wgsLat + dLat gcjLon = wgsLon + dLon return (gcjLon, gcjLat) def gcj2wgs(gcjLon, gcjLat): g0 = (gcjLon, gcjLat) w0 = g0 g1 = wgs2gcj(w0[0], w0[1]) # w1 = w0 - (g1 - g0) w1 = tuple(map(lambda x: x[0]-(x[1]-x[2]), zip(w0,g1,g0))) # delta = w1 - w0 delta = tuple(map(lambda x: x[0] - x[1], zip(w1, w0))) while (abs(delta[0]) >= 1e-6 or abs(delta[1]) >= 1e-6): w0 = w1 g1 = wgs2gcj(w0[0], w0[1]) # w1 = w0 - (g1 - g0) w1 = tuple(map(lambda x: x[0]-(x[1]-x[2]), zip(w0,g1,g0))) # delta = w1 - w0 delta = tuple(map(lambda x: x[0] - x[1], zip(w1, w0))) return w1 def gcj2bd(gcjLon, gcjLat): z = sqrt(gcjLon * gcjLon + gcjLat * gcjLat) + 0.00002 * sin(gcjLat * PI * 3000.0 / 180.0) theta = atan2(gcjLat, gcjLon) + 0.000003 * cos(gcjLon * PI * 3000.0 / 180.0) bdLon = z * cos(theta) + 0.0065 bdLat = z * sin(theta) + 0.006 return (bdLon, bdLat) def bd2gcj(bdLon, bdLat): x = bdLon - 0.0065 y = bdLat - 0.006 z = sqrt(x * x + y * y) - 0.00002 * sin(y * PI * 3000.0 / 180.0) theta = atan2(y, x) - 0.000003 * cos(x * PI * 3000.0 / 180.0) gcjLon = z * cos(theta) gcjLat = z * sin(theta) return (gcjLon, gcjLat) def wgs2bd(wgsLon, wgsLat): gcj = wgs2gcj(wgsLon, wgsLat) return gcj2bd(gcj[0], gcj[1]) def bd2wgs(bdLon, bdLat): gcj = bd2gcj(bdLon, bdLat) return gcj2wgs(gcj[0], gcj[1]) class Transform(): def transformLat(self, x, y): return transformLat(x, y) def transformLon(self, x, y): return transformLon(x, y) def wgs2gcj(self, wgsLon, wgsLat): return wgs2gcj(wgsLon, wgsLat) def gcj2wgs(self, gcjLon, gcjLat): return gcj2wgs(gcjLon, gcjLat) def gcj2bd(self, gcjLon, gcjLat): return gcj2bd(gcjLon, gcjLat) def bd2gcj(self, bdLon, bdLat): return bd2gcj(bdLon, bdLat) def wgs2bd(self, wgsLon, wgsLat): return wgs2bd(wgsLon, wgsLat) def bd2wgs(self, bdLon, bdLat): return bd2wgs(bdLon, bdLat) ================================================ FILE: requirements.txt ================================================ click tqdm fiona ================================================ FILE: setup.py ================================================ #coding: --utf-8-- from setuptools import setup # version with open('coord_convert/__init__.py') as f: for line in f: if line.find('__version__') >= 0: version = line.split('=')[1].strip() version = version.strip('"') version = version.strip("'") break # install requirements with open('requirements.txt') as f: requirements = [x.strip() for x in f.readlines()] # readme with open('README.md', encoding='utf-8') as f: readme = f.read() setup( name='coord-convert', version = version, description = u'china mars coordinate convertor.', long_description = readme, long_description_content_type="text/markdown", classifiers=[ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Intended Audience :: Information Technology', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: MIT License', 'Programming Language :: C', 'Programming Language :: Cython', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3', 'Topic :: Multimedia :: Graphics :: Graphics Conversion', 'Topic :: Scientific/Engineering :: GIS'], keywords='coordinate vector china', author='sshuair', author_email='sshuair@gmail.com', url='https://github.com/sshuair/coord-convert', packages = ['coord_convert'], install_requires=requirements, entry_points=''' [console_scripts] coord_covert=coord_convert.coordconvert:convertor ''' ) ================================================ FILE: tests/__init__.py ================================================ ================================================ FILE: tests/data/Polyline/polyline.geojson ================================================ { "type": "FeatureCollection", "name": "polyline", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, "features": [ { "type": "Feature", "properties": { "gid": 4879861, "name": null, "pyname": null, "mapid": "466174", "id": "7484702", "kind_num": "2", "kind": "0802|0814", "width": "30", "direction": "3", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5798183", "enodeid": "5795360", "funcclass": "5", "length": "0.082", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": null, "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": null, "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.608071599999349, 31.299691099998224 ], [ 121.608921099999165, 31.299840299997921 ] ] } }, { "type": "Feature", "properties": { "gid": 4879862, "name": null, "pyname": null, "mapid": "466174", "id": "7484703", "kind_num": "1", "kind": "0802", "width": "30", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5798182", "enodeid": "5798184", "funcclass": "5", "length": "0.014", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": null, "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": null, "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.607951799999341, 31.299621199998263 ], [ 121.60810169999931, 31.299601099998217 ] ] } }, { "type": "Feature", "properties": { "gid": 12103831, "name": null, "pyname": null, "mapid": "466174", "id": "88272735", "kind_num": "1", "kind": "0601", "width": "30", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "74535586", "enodeid": "47608197", "funcclass": "5", "length": "0.318", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": "1", "lanenume2s": null, "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": null, "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611486199998495, 31.289029099996711 ], [ 121.611526199998465, 31.289079099996687 ], [ 121.611556099998467, 31.289148999996673 ], [ 121.611556299998483, 31.289838799996673 ], [ 121.611556299998469, 31.291058499996684 ], [ 121.611536499998479, 31.291578499996696 ], [ 121.61141659999852, 31.291858499996763 ] ] } }, { "type": "Feature", "properties": { "gid": 4881841, "name": null, "pyname": null, "mapid": "466174", "id": "7503570", "kind_num": "1", "kind": "0814", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5801040", "enodeid": "5763138", "funcclass": "5", "length": "0.029", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603190400147753, 31.292793100656844 ], [ 121.60333060016255, 31.292563400696558 ] ] } }, { "type": "Feature", "properties": { "gid": 12068510, "name": null, "pyname": null, "mapid": "466174", "id": "13148704", "kind_num": "1", "kind": "0601", "width": "30", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "10917045", "enodeid": "10917046", "funcclass": "5", "length": "0.106", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": "1", "lanenume2s": null, "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": null, "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611316699998582, 31.291858699996808 ], [ 121.611156799998597, 31.291568899996896 ], [ 121.611166699998577, 31.290938999996886 ] ] } }, { "type": "Feature", "properties": { "gid": 4913676, "name": null, "pyname": null, "mapid": "466174", "id": "14709350", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5771836", "enodeid": "12113223", "funcclass": "5", "length": "0.005", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.607061999999488, 31.291564199998525 ], [ 121.607111899999467, 31.291554099998503 ] ] } }, { "type": "Feature", "properties": { "gid": 4913031, "name": null, "pyname": null, "mapid": "466174", "id": "14484356", "kind_num": "1", "kind": "0801", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5771764", "enodeid": "12113057", "funcclass": "5", "length": "0.346", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611437999998515, 31.299007299996781 ], [ 121.612916699997982, 31.299835699995953 ], [ 121.613256499997846, 31.300015299995746 ], [ 121.613386299997785, 31.300105099995662 ], [ 121.613476299997728, 31.300175099995609 ], [ 121.613576199997709, 31.300274999995544 ], [ 121.613656099997655, 31.300344899995487 ], [ 121.613766099997605, 31.300414699995418 ], [ 121.614455499997305, 31.300713899994953 ] ] } }, { "type": "Feature", "properties": { "gid": 4913049, "name": null, "pyname": null, "mapid": "466174", "id": "14484407", "kind_num": "1", "kind": "0801", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113081", "enodeid": "12113082", "funcclass": "5", "length": "0.006", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603529300186878, 31.297050800757802 ], [ 121.603479300181093, 31.297020800743226 ] ] } }, { "type": "Feature", "properties": { "gid": 4913050, "name": null, "pyname": null, "mapid": "466174", "id": "14484408", "kind_num": "1", "kind": "0814", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113082", "enodeid": "12113080", "funcclass": "5", "length": "0.101", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603479300181093, 31.297020800743226 ], [ 121.603369300168652, 31.296970800711456 ], [ 121.603329200164254, 31.29693080069995 ], [ 121.60331930016315, 31.296880800697082 ], [ 121.603339300165302, 31.296820900702745 ], [ 121.603759700214439, 31.296291300825366 ] ] } }, { "type": "Feature", "properties": { "gid": 4913044, "name": null, "pyname": null, "mapid": "466174", "id": "14484399", "kind_num": "1", "kind": "0814", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113075", "enodeid": "12113077", "funcclass": "5", "length": "0.251", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.601407100028027, 31.299538400216115 ], [ 121.601106700019926, 31.299948000152 ], [ 121.601036700018568, 31.300017900137458 ], [ 121.600986700017714, 31.300037900127137 ], [ 121.600586300014314, 31.300007800047204 ], [ 121.600556300014276, 31.299957800041355 ], [ 121.600536700013805, 31.298718500035303 ] ] } }, { "type": "Feature", "properties": { "gid": 4913045, "name": null, "pyname": null, "mapid": "466174", "id": "14484400", "kind_num": "1", "kind": "0814", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113077", "enodeid": "12113078", "funcclass": "5", "length": "0.151", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.600536700013805, 31.298718500035303 ], [ 121.600576800013684, 31.298538600042672 ], [ 121.600626800013728, 31.298498600052284 ], [ 121.600696900013958, 31.298468700065953 ], [ 121.600746900014229, 31.298458700075827 ], [ 121.600917000015983, 31.298448800110105 ], [ 121.601897600048844, 31.29863910032725 ] ] } }, { "type": "Feature", "properties": { "gid": 4913046, "name": null, "pyname": null, "mapid": "466174", "id": "14484401", "kind_num": "1", "kind": "0814", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113078", "enodeid": "12113075", "funcclass": "5", "length": "0.112", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.601897600048844, 31.29863910032725 ], [ 121.601917600049916, 31.29867910033207 ], [ 121.60191760004993, 31.298709100332108 ], [ 121.601407100028027, 31.299538400216115 ] ] } }, { "type": "Feature", "properties": { "gid": 4913047, "name": null, "pyname": null, "mapid": "466174", "id": "14484402", "kind_num": "1", "kind": "0801", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113076", "enodeid": "12113079", "funcclass": "5", "length": "0.019", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.601687200038981, 31.29966850027947 ], [ 121.601517100031941, 31.299578400240666 ] ] } }, { "type": "Feature", "properties": { "gid": 4913048, "name": null, "pyname": null, "mapid": "466174", "id": "14484403", "kind_num": "1", "kind": "0814", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113079", "enodeid": "12113075", "funcclass": "5", "length": "0.011", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.601517100031941, 31.299578400240666 ], [ 121.601407100028027, 31.299538400216115 ] ] } }, { "type": "Feature", "properties": { "gid": 4913051, "name": null, "pyname": null, "mapid": "466174", "id": "14484412", "kind_num": "1", "kind": "0814", "width": "55", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113083", "enodeid": "12113085", "funcclass": "5", "length": "0.047", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "2", "lanenume2s": null, "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": null, "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603750200212616, 31.294872200821519 ], [ 121.60395040023846, 31.294932200882197 ], [ 121.604000400245141, 31.294962200897558 ], [ 121.604010300246486, 31.294992200900627 ], [ 121.6040103002465, 31.295032200900657 ], [ 121.603980200242518, 31.295152100891478 ] ] } }, { "type": "Feature", "properties": { "gid": 4913052, "name": null, "pyname": null, "mapid": "466174", "id": "14484413", "kind_num": "1", "kind": "0814", "width": "55", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113085", "enodeid": "12113086", "funcclass": "5", "length": "0.098", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "2", "lanenume2s": null, "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": null, "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603980200242518, 31.295152100891478 ], [ 121.603920100234618, 31.295312000873185 ], [ 121.603890100230743, 31.295441900864137 ], [ 121.603850100225571, 31.295511900852055 ], [ 121.603830100223036, 31.295541800846021 ], [ 121.603800100219217, 31.295561800836989 ], [ 121.603709900207932, 31.295581700809979 ], [ 121.603659800201783, 31.295571700795083 ], [ 121.603319600162564, 31.295461600695951 ] ] } }, { "type": "Feature", "properties": { "gid": 4913053, "name": null, "pyname": null, "mapid": "466174", "id": "14484414", "kind_num": "1", "kind": "0814", "width": "55", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113086", "enodeid": "12113083", "funcclass": "5", "length": "0.119", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "2", "lanenume2s": null, "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": null, "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603319600162564, 31.295461600695951 ], [ 121.603249600155053, 31.295421600676004 ], [ 121.603189700148732, 31.295361600659028 ], [ 121.603169700146665, 31.29533160065338 ], [ 121.603159600145617, 31.295291700650512 ], [ 121.603169700146623, 31.295231700653289 ], [ 121.603279900158071, 31.294891900684135 ], [ 121.603309900161264, 31.29486200069266 ], [ 121.603399900171155, 31.294822100718456 ], [ 121.603510100183669, 31.294822100750441 ], [ 121.603750200212616, 31.294872200821519 ] ] } }, { "type": "Feature", "properties": { "gid": 4913054, "name": null, "pyname": null, "mapid": "466174", "id": "14484415", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113084", "enodeid": "12113087", "funcclass": "5", "length": "0.014", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603860400226537, 31.294592400854551 ], [ 121.603810300220161, 31.294712300839475 ] ] } }, { "type": "Feature", "properties": { "gid": 4913055, "name": null, "pyname": null, "mapid": "466174", "id": "14484416", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113087", "enodeid": "12113083", "funcclass": "5", "length": "0.019", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603810300220161, 31.294712300839475 ], [ 121.603750200212616, 31.294872200821519 ] ] } }, { "type": "Feature", "properties": { "gid": 4913685, "name": null, "pyname": null, "mapid": "466174", "id": "14709362", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113227", "enodeid": "12113219", "funcclass": "5", "length": "0.008", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.607052099999493, 31.292024099998528 ], [ 121.60697219999949, 31.292024199998554 ] ] } }, { "type": "Feature", "properties": { "gid": 4913677, "name": null, "pyname": null, "mapid": "466174", "id": "14709351", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113223", "enodeid": "5763153", "funcclass": "5", "length": "0.677", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.607111899999467, 31.291554099998503 ], [ 121.607321599999452, 31.291533899998445 ], [ 121.607681199999405, 31.29149339999833 ], [ 121.607770999999374, 31.291473299998302 ], [ 121.607821099999356, 31.291433199998288 ], [ 121.60782109999937, 31.291323299998279 ], [ 121.60775109999939, 31.290653499998307 ], [ 121.607740999999422, 31.290513599998306 ], [ 121.607770999999374, 31.2904634999983 ], [ 121.607880799999364, 31.290423399998264 ], [ 121.60831029999926, 31.290362899998115 ], [ 121.610747299998707, 31.290169799997091 ], [ 121.610877099998675, 31.290199599997035 ], [ 121.610937099998665, 31.290259499996999 ], [ 121.610966899998658, 31.290649399996983 ], [ 121.610917299998661, 31.291979099997015 ] ] } }, { "type": "Feature", "properties": { "gid": 4913678, "name": null, "pyname": null, "mapid": "466174", "id": "14709353", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113219", "enodeid": "12113224", "funcclass": "5", "length": "0.039", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.60697219999949, 31.292024199998554 ], [ 121.606562699999543, 31.29203469999867 ] ] } }, { "type": "Feature", "properties": { "gid": 4913679, "name": null, "pyname": null, "mapid": "466174", "id": "14709354", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113224", "enodeid": "12113221", "funcclass": "5", "length": "0.018", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.606562699999543, 31.29203469999867 ], [ 121.606372799999576, 31.292034899998715 ] ] } }, { "type": "Feature", "properties": { "gid": 4913680, "name": null, "pyname": null, "mapid": "466174", "id": "14709356", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113225", "enodeid": "5771809", "funcclass": "5", "length": "0.016", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.606562699999543, 31.291764799998667 ], [ 121.606562499999526, 31.291624799998662 ] ] } }, { "type": "Feature", "properties": { "gid": 4913681, "name": null, "pyname": null, "mapid": "466174", "id": "14709357", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113224", "enodeid": "12113225", "funcclass": "5", "length": "0.030", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.606562699999543, 31.29203469999867 ], [ 121.606562699999543, 31.291764799998667 ] ] } }, { "type": "Feature", "properties": { "gid": 4913682, "name": null, "pyname": null, "mapid": "466174", "id": "14709358", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113222", "enodeid": "12113226", "funcclass": "5", "length": "0.132", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.607112099999483, 31.293213699998514 ], [ 121.607101999999458, 31.292023999998513 ] ] } }, { "type": "Feature", "properties": { "gid": 4913683, "name": null, "pyname": null, "mapid": "466174", "id": "14709359", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113226", "enodeid": "12113223", "funcclass": "5", "length": "0.052", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.607101999999458, 31.292023999998513 ], [ 121.607111899999467, 31.291554099998503 ] ] } }, { "type": "Feature", "properties": { "gid": 4913684, "name": null, "pyname": null, "mapid": "466174", "id": "14709361", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113226", "enodeid": "12113227", "funcclass": "5", "length": "0.005", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.607101999999458, 31.292023999998513 ], [ 121.607052099999493, 31.292024099998528 ] ] } }, { "type": "Feature", "properties": { "gid": 4913686, "name": null, "pyname": null, "mapid": "466174", "id": "14709363", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5774487", "enodeid": "12113228", "funcclass": "5", "length": "0.300", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "8", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "50", "spdlmte2s": "50", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.609139799999127, 31.294870699997812 ], [ 121.609179699999103, 31.294770699997805 ], [ 121.60919969999911, 31.294740699997792 ], [ 121.609229599999125, 31.294720699997779 ], [ 121.609279599999084, 31.294700599997757 ], [ 121.609359399999065, 31.294700499997724 ], [ 121.609569199999001, 31.294720199997641 ], [ 121.609968699998944, 31.294759699997467 ], [ 121.610108499998887, 31.294759499997408 ], [ 121.610328299998841, 31.294729299997311 ], [ 121.61050789999878, 31.294658999997225 ], [ 121.6108275999987, 31.29451869999707 ], [ 121.610887599998662, 31.294488599997049 ], [ 121.610917399998655, 31.294458499997027 ], [ 121.610957399998682, 31.294388499997005 ], [ 121.610967499998665, 31.294228499997004 ], [ 121.610977399998646, 31.293968599997001 ], [ 121.610967299998649, 31.293728699996997 ], [ 121.610957399998654, 31.293468699997 ] ] } }, { "type": "Feature", "properties": { "gid": 4913687, "name": null, "pyname": null, "mapid": "466174", "id": "14709364", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113228", "enodeid": "5763152", "funcclass": "5", "length": "0.112", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "8", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "50", "spdlmte2s": "50", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.610957399998654, 31.293468699997 ], [ 121.610927299998693, 31.292458999997013 ] ] } }, { "type": "Feature", "properties": { "gid": 4913688, "name": null, "pyname": null, "mapid": "466174", "id": "14709368", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113228", "enodeid": "12113230", "funcclass": "5", "length": "0.015", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.610957399998654, 31.293468699997 ], [ 121.611117099998609, 31.293468499996923 ] ] } }, { "type": "Feature", "properties": { "gid": 4913689, "name": null, "pyname": null, "mapid": "466174", "id": "14709369", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113230", "enodeid": "12113229", "funcclass": "5", "length": "0.018", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611117099998609, 31.293468499996923 ], [ 121.611306999998547, 31.293468299996825 ] ] } }, { "type": "Feature", "properties": { "gid": 4878533, "name": null, "pyname": null, "mapid": "466174", "id": "7472703", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5786588", "enodeid": "5786564", "funcclass": "5", "length": "0.023", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.601866900048307, 31.301167600323403 ], [ 121.601867000048202, 31.300957800323147 ] ] } }, { "type": "Feature", "properties": { "gid": 4878523, "name": null, "pyname": null, "mapid": "466174", "id": "7472678", "kind_num": "1", "kind": "0801", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5774245", "enodeid": "5786569", "funcclass": "5", "length": "0.195", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.602197900066642, 31.29888910040043 ], [ 121.603058500137152, 31.299209300626011 ], [ 121.603718700210692, 31.299459400815319 ], [ 121.604069000256487, 31.299599500921406 ] ] } }, { "type": "Feature", "properties": { "gid": 4878532, "name": null, "pyname": null, "mapid": "466174", "id": "7472702", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5786565", "enodeid": "5786588", "funcclass": "5", "length": "0.045", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.601866900048449, 31.30157740032395 ], [ 121.601866900048307, 31.301167600323403 ] ] } }, { "type": "Feature", "properties": { "gid": 4878534, "name": null, "pyname": null, "mapid": "466174", "id": "7472704", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5795362", "enodeid": "5786589", "funcclass": "5", "length": "0.021", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.609650099999001, 31.29875959999762 ], [ 121.60966989999902, 31.298569499997612 ] ] } }, { "type": "Feature", "properties": { "gid": 4878535, "name": null, "pyname": null, "mapid": "466174", "id": "7472705", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5786589", "enodeid": "5786570", "funcclass": "5", "length": "0.019", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.60966989999902, 31.298569499997612 ], [ 121.609679599999012, 31.29839939999761 ] ] } }, { "type": "Feature", "properties": { "gid": 4878536, "name": null, "pyname": null, "mapid": "466174", "id": "7472706", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5774486", "enodeid": "5786590", "funcclass": "5", "length": "0.019", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603220600150479, 31.291893700664556 ], [ 121.603200700148349, 31.291723800658755 ] ] } }, { "type": "Feature", "properties": { "gid": 4878537, "name": null, "pyname": null, "mapid": "466174", "id": "7472707", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5786590", "enodeid": "5786591", "funcclass": "5", "length": "0.132", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603200700148349, 31.291723800658755 ], [ 121.603170800145136, 31.291434000650021 ], [ 121.603070900134881, 31.291034100621587 ], [ 121.603080800135871, 31.291014200624328 ], [ 121.603100900137846, 31.291004200629949 ], [ 121.603431100172983, 31.290924400724155 ], [ 121.603601300192722, 31.290884500774094 ] ] } }, { "type": "Feature", "properties": { "gid": 4878875, "name": null, "pyname": null, "mapid": "466174", "id": "7473882", "kind_num": "1", "kind": "0801", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5780735", "enodeid": "5780736", "funcclass": "5", "length": "0.011", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.607471899999425, 31.296262499998409 ], [ 121.60747189999941, 31.296362499998406 ] ] } }, { "type": "Feature", "properties": { "gid": 4878876, "name": null, "pyname": null, "mapid": "466174", "id": "7473883", "kind_num": "1", "kind": "0801", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5780735", "enodeid": "5780737", "funcclass": "5", "length": "0.015", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.607471899999425, 31.296262499998409 ], [ 121.607312199999427, 31.296272799998459 ] ] } }, { "type": "Feature", "properties": { "gid": 7980774, "name": "俱进路", "pyname": "jjl", "mapid": "466174", "id": "88409003", "kind_num": "1", "kind": "0401", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5774246", "enodeid": "74616511", "funcclass": "4", "length": "0.006", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.600836200016047, 31.300947300098052 ], [ 121.600776200015488, 31.300957300086075 ] ] } }, { "type": "Feature", "properties": { "gid": 4879432, "name": null, "pyname": null, "mapid": "466174", "id": "7479023", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5801042", "enodeid": "5792811", "funcclass": "5", "length": "0.066", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.604891600379247, 31.293143701183737 ], [ 121.605541900496405, 31.293363901409023 ] ] } }, { "type": "Feature", "properties": { "gid": 4879433, "name": null, "pyname": null, "mapid": "466174", "id": "7479024", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5792811", "enodeid": "5801045", "funcclass": "5", "length": "0.006", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.605541900496405, 31.293363901409023 ], [ 121.605602000508028, 31.293383901430492 ] ] } }, { "type": "Feature", "properties": { "gid": 4879434, "name": null, "pyname": null, "mapid": "466174", "id": "7479025", "kind_num": "1", "kind": "0814", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5801040", "enodeid": "5792812", "funcclass": "5", "length": "0.038", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603190400147753, 31.292793100656844 ], [ 121.603180300146818, 31.293043000654233 ], [ 121.603180300146832, 31.293093000654277 ], [ 121.603170200145797, 31.293132900651468 ] ] } }, { "type": "Feature", "properties": { "gid": 4879435, "name": null, "pyname": null, "mapid": "466174", "id": "7479026", "kind_num": "1", "kind": "0814", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5792812", "enodeid": "5792813", "funcclass": "5", "length": "0.063", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603170200145797, 31.293132900651468 ], [ 121.603830800222084, 31.293163200844589 ] ] } }, { "type": "Feature", "properties": { "gid": 4879436, "name": null, "pyname": null, "mapid": "466174", "id": "7479027", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5763139", "enodeid": "5792814", "funcclass": "5", "length": "0.079", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603560700188723, 31.292803300763651 ], [ 121.603640800198278, 31.292813300787341 ], [ 121.603850800224535, 31.29284340085043 ], [ 121.604121000260761, 31.292903500933683 ], [ 121.604371200296768, 31.292973601012836 ] ] } }, { "type": "Feature", "properties": { "gid": 4879437, "name": null, "pyname": null, "mapid": "466174", "id": "7479028", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5792814", "enodeid": "5801042", "funcclass": "5", "length": "0.053", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.604371200296768, 31.292973601012836 ], [ 121.604761400357646, 31.293093701140187 ], [ 121.604891600379247, 31.293143701183737 ] ] } }, { "type": "Feature", "properties": { "gid": 4879438, "name": null, "pyname": null, "mapid": "466174", "id": "7479029", "kind_num": "1", "kind": "0814", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5792815", "enodeid": "5792814", "funcclass": "5", "length": "0.030", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.604241100277861, 31.293223400971591 ], [ 121.604371200296768, 31.292973601012836 ] ] } }, { "type": "Feature", "properties": { "gid": 4879439, "name": null, "pyname": null, "mapid": "466174", "id": "7479030", "kind_num": "1", "kind": "0814", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5792813", "enodeid": "5792815", "funcclass": "5", "length": "0.040", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603830800222084, 31.293163200844589 ], [ 121.604090900256722, 31.293183300924465 ], [ 121.604241100277861, 31.293223400971591 ] ] } }, { "type": "Feature", "properties": { "gid": 4879440, "name": null, "pyname": null, "mapid": "466174", "id": "7479031", "kind_num": "1", "kind": "0814", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5792815", "enodeid": "5792811", "funcclass": "5", "length": "0.148", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.604241100277861, 31.293223400971591 ], [ 121.605381700466239, 31.29360360135237 ], [ 121.605411800471828, 31.293593601362961 ], [ 121.605431800475586, 31.293583701370007 ], [ 121.605541900496405, 31.293363901409023 ] ] } }, { "type": "Feature", "properties": { "gid": 4879860, "name": null, "pyname": null, "mapid": "466174", "id": "7484701", "kind_num": "1", "kind": "0802", "width": "30", "direction": "3", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5798182", "enodeid": "5798183", "funcclass": "5", "length": "0.014", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": null, "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": null, "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.607951799999341, 31.299621199998263 ], [ 121.608071599999349, 31.299691099998224 ] ] } }, { "type": "Feature", "properties": { "gid": 4879863, "name": null, "pyname": null, "mapid": "466174", "id": "7484704", "kind_num": "2", "kind": "0802|0814", "width": "30", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5798184", "enodeid": "5795361", "funcclass": "5", "length": "0.082", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": null, "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": null, "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.60810169999931, 31.299601099998217 ], [ 121.608351499999259, 31.299640799998123 ], [ 121.608621399999222, 31.29968059999803 ], [ 121.608951099999146, 31.299740299997907 ] ] } }, { "type": "Feature", "properties": { "gid": 12071525, "name": "万安街", "pyname": "waj", "mapid": "466174", "id": "14484354", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "73261745", "enodeid": "12113056", "funcclass": "5", "length": "0.260", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611707099998426, 31.298446799996643 ], [ 121.612386399998201, 31.298465999996264 ], [ 121.613215299997862, 31.29848489999576 ], [ 121.613604799997702, 31.298484399995516 ], [ 121.61375459999762, 31.298494199995421 ], [ 121.614084199997492, 31.298493799995196 ], [ 121.614443799997304, 31.298523299994944 ] ] } }, { "type": "Feature", "properties": { "gid": 4880058, "name": null, "pyname": null, "mapid": "466174", "id": "7484973", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5760288", "enodeid": "5760287", "funcclass": "5", "length": "0.169", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.609519599999047, 31.297759599997672 ], [ 121.609269899999092, 31.297769899997775 ], [ 121.609030099999131, 31.297750199997864 ], [ 121.608720499999222, 31.297730599997987 ], [ 121.608670699999209, 31.297720699998006 ], [ 121.608610699999232, 31.29769079999803 ], [ 121.608570799999228, 31.297630799998043 ], [ 121.608560699999231, 31.29752079999805 ], [ 121.60857059999924, 31.297200899998046 ], [ 121.608580699999251, 31.29697089999804 ] ] } }, { "type": "Feature", "properties": { "gid": 4880059, "name": null, "pyname": null, "mapid": "466174", "id": "7484974", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5760287", "enodeid": "5760289", "funcclass": "5", "length": "0.195", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.608580699999251, 31.29697089999804 ], [ 121.608650499999214, 31.296121099998011 ], [ 121.608660399999209, 31.296031099998004 ], [ 121.608690499999213, 31.295980999997994 ], [ 121.608730299999209, 31.295930999997974 ], [ 121.608810199999169, 31.295910899997942 ], [ 121.608940099999174, 31.295880799997899 ], [ 121.609539399999008, 31.29585999999766 ] ] } }, { "type": "Feature", "properties": { "gid": 4880060, "name": null, "pyname": null, "mapid": "466174", "id": "7484975", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5760289", "enodeid": "5760288", "funcclass": "5", "length": "0.348", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.609539399999008, 31.29585999999766 ], [ 121.609908899998928, 31.295909499997503 ], [ 121.610108699998889, 31.29592919999741 ], [ 121.610268399998859, 31.295998999997341 ], [ 121.61033839999881, 31.296048899997309 ], [ 121.610378299998828, 31.296088799997285 ], [ 121.610428199998807, 31.296218799997263 ], [ 121.610418299998813, 31.296778699997272 ], [ 121.610418299998813, 31.296888599997271 ], [ 121.610438499998793, 31.297628399997269 ], [ 121.610408399998789, 31.297648499997283 ], [ 121.610388399998826, 31.29766849999729 ], [ 121.610358499998824, 31.297678499997307 ], [ 121.609839199998945, 31.297759199997543 ], [ 121.609519599999047, 31.297759599997672 ] ] } }, { "type": "Feature", "properties": { "gid": 4880063, "name": null, "pyname": null, "mapid": "466174", "id": "7484979", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5760286", "enodeid": "5760295", "funcclass": "5", "length": "0.018", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.608161099999307, 31.296961499998186 ], [ 121.608350999999288, 31.29696129999812 ] ] } }, { "type": "Feature", "properties": { "gid": 4880064, "name": null, "pyname": null, "mapid": "466174", "id": "7484980", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5760295", "enodeid": "5760287", "funcclass": "5", "length": "0.022", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.608350999999288, 31.29696129999812 ], [ 121.608580699999251, 31.29697089999804 ] ] } }, { "type": "Feature", "properties": { "gid": 7963283, "name": "金高路", "pyname": "jgl", "mapid": "466174", "id": "7484697", "kind_num": "1", "kind": "0401", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5795363", "enodeid": "5783269", "funcclass": "4", "length": "0.097", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": "300", "spdsrcs2e": "3", "spdsrce2s": "3", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.605871999999607, 31.294083599998849 ], [ 121.605371300464853, 31.294842901348886 ] ] } }, { "type": "Feature", "properties": { "gid": 7964192, "name": "金高路", "pyname": "jgl", "mapid": "466174", "id": "7522444", "kind_num": "1", "kind": "0408", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5795683", "enodeid": "5780228", "funcclass": "4", "length": "0.162", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": "400", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.606272899999553, 31.29034549999874 ], [ 121.606342699999558, 31.290565299998725 ], [ 121.606362699999551, 31.290645299998712 ], [ 121.606402699999549, 31.290775199998713 ], [ 121.606432699999559, 31.2909850999987 ], [ 121.606442599999568, 31.2911850999987 ], [ 121.60639279999954, 31.291784999998715 ] ] } }, { "type": "Feature", "properties": { "gid": 7970458, "name": "金高路", "pyname": "jgl", "mapid": "466174", "id": "14709344", "kind_num": "1", "kind": "0401", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5801039", "enodeid": "12113220", "funcclass": "4", "length": "0.030", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": "300", "spdsrcs2e": "3", "spdsrce2s": "3", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.606182399999597, 31.29357399999877 ], [ 121.606082299999585, 31.293773899998794 ], [ 121.606052199999596, 31.293823799998798 ] ] } }, { "type": "Feature", "properties": { "gid": 4881842, "name": null, "pyname": null, "mapid": "466174", "id": "7503571", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5763138", "enodeid": "5801041", "funcclass": "5", "length": "0.041", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.60333060016255, 31.292563400696558 ], [ 121.603280600157035, 31.29236340068206 ], [ 121.603250700153794, 31.292203500673391 ] ] } }, { "type": "Feature", "properties": { "gid": 4881843, "name": null, "pyname": null, "mapid": "466174", "id": "7503572", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5801040", "enodeid": "5763139", "funcclass": "5", "length": "0.035", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603190400147753, 31.292793100656844 ], [ 121.603410500171449, 31.292793300719794 ], [ 121.603560700188723, 31.292803300763651 ] ] } }, { "type": "Feature", "properties": { "gid": 4882081, "name": null, "pyname": null, "mapid": "466174", "id": "7504530", "kind_num": "1", "kind": "0801", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5771758", "enodeid": "5771759", "funcclass": "5", "length": "0.104", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.604939600390082, 31.299290101201585 ], [ 121.605920499999598, 31.299710499998845 ] ] } }, { "type": "Feature", "properties": { "gid": 4882342, "name": null, "pyname": null, "mapid": "466174", "id": "7509803", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5763152", "enodeid": "5763153", "funcclass": "5", "length": "0.053", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.610927299998693, 31.292458999997013 ], [ 121.610917299998661, 31.291979099997015 ] ] } }, { "type": "Feature", "properties": { "gid": 4882333, "name": null, "pyname": null, "mapid": "466174", "id": "7509785", "kind_num": "1", "kind": "0814", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5763138", "enodeid": "5763139", "funcclass": "5", "length": "0.034", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.60333060016255, 31.292563400696558 ], [ 121.603560700188723, 31.292803300763651 ] ] } }, { "type": "Feature", "properties": { "gid": 4882642, "name": null, "pyname": null, "mapid": "466174", "id": "7510846", "kind_num": "1", "kind": "0801", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5771809", "enodeid": "5771808", "funcclass": "5", "length": "0.253", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.606562499999526, 31.291624799998662 ], [ 121.606582499999533, 31.291334799998662 ], [ 121.606582499999547, 31.291094899998658 ], [ 121.606552599999546, 31.290844999998672 ], [ 121.606442599999554, 31.290415199998701 ], [ 121.606422699999555, 31.290335299998699 ], [ 121.606432599999565, 31.2902852999987 ], [ 121.606472499999555, 31.290255199998683 ], [ 121.606602499999539, 31.290185099998652 ], [ 121.607391399999429, 31.289874199998419 ] ] } }, { "type": "Feature", "properties": { "gid": 12052025, "name": "高行街", "pyname": "ghj", "mapid": "466174", "id": "7529372", "kind_num": "1", "kind": "0604", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5763323", "enodeid": "5763325", "funcclass": "5", "length": "0.010", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.605861099999643, 31.297021799998852 ], [ 121.605880999999599, 31.29693189999885 ] ] } }, { "type": "Feature", "properties": { "gid": 4883097, "name": null, "pyname": null, "mapid": "466174", "id": "7516104", "kind_num": "1", "kind": "0814", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5792812", "enodeid": "5798553", "funcclass": "5", "length": "0.065", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603170200145797, 31.293132900651468 ], [ 121.603040100132844, 31.293342800615317 ], [ 121.603030200131883, 31.29336270061259 ], [ 121.603020100130905, 31.293392700609822 ], [ 121.603010000129942, 31.293412700607053 ], [ 121.603020100130934, 31.293432700609863 ], [ 121.603030000131923, 31.293452700612622 ], [ 121.603060100134854, 31.293472700620992 ], [ 121.603110100139844, 31.29349270063495 ], [ 121.603220300151165, 31.293522700665982 ], [ 121.603280200157513, 31.293532800683007 ] ] } }, { "type": "Feature", "properties": { "gid": 4883098, "name": null, "pyname": null, "mapid": "466174", "id": "7516105", "kind_num": "1", "kind": "0814", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5798553", "enodeid": "5792813", "funcclass": "5", "length": "0.079", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603280200157513, 31.293532800683007 ], [ 121.603340300164007, 31.293552800700212 ], [ 121.60344040017516, 31.293562800729116 ], [ 121.603500400182043, 31.293572900746597 ], [ 121.603540500186682, 31.293572900758338 ], [ 121.603560500189047, 31.293562900764201 ], [ 121.603700700205806, 31.293303100805552 ], [ 121.603720700208257, 31.293263100811508 ], [ 121.60374070021075, 31.293253100817498 ], [ 121.603830800222084, 31.293163200844589 ] ] } }, { "type": "Feature", "properties": { "gid": 4883263, "name": null, "pyname": null, "mapid": "466174", "id": "7516973", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5771809", "enodeid": "5771836", "funcclass": "5", "length": "0.048", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.606562499999526, 31.291624799998662 ], [ 121.607061999999488, 31.291564199998525 ] ] } }, { "type": "Feature", "properties": { "gid": 4883264, "name": null, "pyname": null, "mapid": "466174", "id": "7516975", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5771810", "enodeid": "5771837", "funcclass": "5", "length": "0.027", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.613024699997922, 31.29274619999585 ], [ 121.613024699997922, 31.292506299995839 ] ] } }, { "type": "Feature", "properties": { "gid": 12078356, "name": "行泰路", "pyname": "htl", "mapid": "466174", "id": "15696238", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5771835", "enodeid": "12773170", "funcclass": "5", "length": "0.039", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "200", "spdlmte2s": "200", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.606332799999564, 31.291784999998729 ], [ 121.60592259999963, 31.291784999998832 ] ] } }, { "type": "Feature", "properties": { "gid": 12078357, "name": "行泰路", "pyname": "htl", "mapid": "466174", "id": "15696239", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12773170", "enodeid": "5774486", "funcclass": "5", "length": "0.257", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "200", "spdlmte2s": "200", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.60592259999963, 31.291784999998832 ], [ 121.605802599999606, 31.291784899998863 ], [ 121.605202300432609, 31.291784601289443 ], [ 121.604741800353892, 31.291784401133174 ], [ 121.60369100020398, 31.29184400080155 ], [ 121.603220600150479, 31.291893700664556 ] ] } }, { "type": "Feature", "properties": { "gid": 4884790, "name": "高行商业步行街", "pyname": "ghsybxj", "mapid": "466174", "id": "7534495", "kind_num": "1", "kind": "0809", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5798179", "enodeid": "5795363", "funcclass": "5", "length": "0.367", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "8", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "01010001000000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "100", "spdlmte2s": "100", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.602459600082739, 31.293552400460094 ], [ 121.603510300183274, 31.293832700749697 ], [ 121.603570400190307, 31.293842700767343 ], [ 121.603640400198699, 31.293842700788019 ], [ 121.603700500206017, 31.293832800805891 ], [ 121.603800600218506, 31.293792900835907 ], [ 121.603850600224902, 31.293752900851008 ], [ 121.603920700233985, 31.293613000872249 ], [ 121.603960800239207, 31.293513100884464 ], [ 121.603980800241885, 31.293483100890594 ], [ 121.604030800248623, 31.293453200905997 ], [ 121.604070800254078, 31.293453200918385 ], [ 121.604110900259585, 31.293463200930866 ], [ 121.605391600468209, 31.293913501355888 ], [ 121.605871999999607, 31.294083599998849 ] ] } }, { "type": "Feature", "properties": { "gid": 4884791, "name": null, "pyname": null, "mapid": "466174", "id": "7534497", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5798182", "enodeid": "5795359", "funcclass": "5", "length": "0.007", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.607951799999341, 31.299621199998263 ], [ 121.607881699999353, 31.29960129999829 ] ] } }, { "type": "Feature", "properties": { "gid": 4884794, "name": null, "pyname": null, "mapid": "466174", "id": "7534500", "kind_num": "1", "kind": "0814", "width": "55", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5760212", "enodeid": "5762823", "funcclass": "5", "length": "0.043", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "2", "lanenume2s": null, "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": null, "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603117700144068, 31.30159790064452 ], [ 121.603117900143928, 31.301208200644229 ] ] } }, { "type": "Feature", "properties": { "gid": 4884795, "name": null, "pyname": null, "mapid": "466174", "id": "7534501", "kind_num": "1", "kind": "0801", "width": "55", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5762823", "enodeid": "5762824", "funcclass": "5", "length": "0.027", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "2", "lanenume2s": null, "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": null, "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603117900143928, 31.301208200644229 ], [ 121.603108000142853, 31.30096830064128 ] ] } }, { "type": "Feature", "properties": { "gid": 4885167, "name": null, "pyname": null, "mapid": "466174", "id": "7535620", "kind_num": "2", "kind": "0804|0814", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5763324", "enodeid": "5763326", "funcclass": "5", "length": "0.010", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.606441399999539, 31.297081999998714 ], [ 121.606411499999552, 31.297171999998717 ] ] } }, { "type": "Feature", "properties": { "gid": 4885168, "name": null, "pyname": null, "mapid": "466174", "id": "7535621", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5774460", "enodeid": "5763327", "funcclass": "5", "length": "0.025", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.609059799999145, 31.295210799997843 ], [ 121.609099799999143, 31.294990799997837 ] ] } }, { "type": "Feature", "properties": { "gid": 4885169, "name": null, "pyname": null, "mapid": "466174", "id": "7535622", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5763327", "enodeid": "5774487", "funcclass": "5", "length": "0.014", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.609099799999143, 31.294990799997837 ], [ 121.609109699999152, 31.29496069999783 ], [ 121.609139799999127, 31.294870699997812 ] ] } }, { "type": "Feature", "properties": { "gid": 4885170, "name": null, "pyname": null, "mapid": "466174", "id": "7535623", "kind_num": "1", "kind": "0801", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5763327", "enodeid": "5763328", "funcclass": "5", "length": "0.110", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.609099799999143, 31.294990799997837 ], [ 121.609279599999098, 31.295020499997761 ], [ 121.609349499999055, 31.295030399997735 ], [ 121.609709099998994, 31.29506999999758 ], [ 121.610248399998852, 31.295109199997349 ] ] } }, { "type": "Feature", "properties": { "gid": 4885178, "name": null, "pyname": null, "mapid": "466174", "id": "7535632", "kind_num": "2", "kind": "0802|0814", "width": "30", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5763333", "enodeid": "5763324", "funcclass": "5", "length": "0.040", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": null, "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": null, "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.606041199999595, 31.296971899998809 ], [ 121.606441399999539, 31.297081999998714 ] ] } }, { "type": "Feature", "properties": { "gid": 4885171, "name": null, "pyname": null, "mapid": "466174", "id": "7535625", "kind_num": "1", "kind": "0814", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5763319", "enodeid": "5763330", "funcclass": "5", "length": "0.199", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.602007400055442, 31.299878500355163 ], [ 121.60189730004943, 31.300048300329085 ], [ 121.601867200047835, 31.300068300321989 ], [ 121.601827300045855, 31.30010820031265 ], [ 121.60163700003703, 31.300228100268765 ], [ 121.60160690003579, 31.300258100261946 ], [ 121.601406800028414, 31.300497800217514 ], [ 121.601396700028076, 31.300527800215335 ], [ 121.601396700028076, 31.300547800215369 ], [ 121.601416700028764, 31.30057780021982 ], [ 121.601446700029811, 31.300607800226505 ], [ 121.601476800030895, 31.300627800233219 ], [ 121.601516800032357, 31.300637800242175 ], [ 121.601807100045079, 31.300667900308682 ], [ 121.602257300071358, 31.300708100417403 ], [ 121.602297400074079, 31.300728100427431 ], [ 121.602317400075478, 31.300758100432468 ], [ 121.602327300076183, 31.300808000435016 ], [ 121.602327300076198, 31.30082800043504 ] ] } }, { "type": "Feature", "properties": { "gid": 4885172, "name": null, "pyname": null, "mapid": "466174", "id": "7535626", "kind_num": "1", "kind": "0801", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5763330", "enodeid": "5763320", "funcclass": "5", "length": "0.016", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.602327300076198, 31.30082800043504 ], [ 121.602327300076254, 31.300968000435208 ] ] } }, { "type": "Feature", "properties": { "gid": 4885173, "name": null, "pyname": null, "mapid": "466174", "id": "7535627", "kind_num": "1", "kind": "0814", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5763321", "enodeid": "5763331", "funcclass": "5", "length": "0.067", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.602428500082027, 31.297390100456656 ], [ 121.60280880011301, 31.297450200556369 ], [ 121.602848800116604, 31.297450300567125 ], [ 121.602878800119313, 31.297450300575225 ], [ 121.602948800125802, 31.297420300594212 ], [ 121.602978900128633, 31.297420400602437 ], [ 121.602998900130558, 31.297430300607932 ], [ 121.603099000140432, 31.297480300635623 ] ] } }, { "type": "Feature", "properties": { "gid": 4885174, "name": null, "pyname": null, "mapid": "466174", "id": "7535628", "kind_num": "1", "kind": "0801", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5763331", "enodeid": "5763322", "funcclass": "5", "length": "0.005", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603099000140432, 31.297480300635623 ], [ 121.603149000145493, 31.297500400649568 ] ] } }, { "type": "Feature", "properties": { "gid": 4885175, "name": null, "pyname": null, "mapid": "466174", "id": "7535629", "kind_num": "1", "kind": "0802", "width": "30", "direction": "3", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5763323", "enodeid": "5763332", "funcclass": "5", "length": "0.016", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": null, "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": null, "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.605861099999643, 31.297021799998852 ], [ 121.606021099999623, 31.297071899998816 ] ] } }, { "type": "Feature", "properties": { "gid": 4885176, "name": null, "pyname": null, "mapid": "466174", "id": "7535630", "kind_num": "2", "kind": "0802|0814", "width": "30", "direction": "3", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5763332", "enodeid": "5763326", "funcclass": "5", "length": "0.039", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": null, "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": null, "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.606021099999623, 31.297071899998816 ], [ 121.606411499999552, 31.297171999998717 ] ] } }, { "type": "Feature", "properties": { "gid": 4885177, "name": null, "pyname": null, "mapid": "466174", "id": "7535631", "kind_num": "1", "kind": "0802", "width": "30", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5763325", "enodeid": "5763333", "funcclass": "5", "length": "0.016", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": null, "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": null, "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.605880999999599, 31.29693189999885 ], [ 121.606041199999595, 31.296971899998809 ] ] } }, { "type": "Feature", "properties": { "gid": 4885219, "name": null, "pyname": null, "mapid": "466174", "id": "7535765", "kind_num": "1", "kind": "0814", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5763326", "enodeid": "5774909", "funcclass": "5", "length": "0.157", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.606411499999552, 31.297171999998717 ], [ 121.606371399999574, 31.297321899998725 ], [ 121.606371399999574, 31.297351899998727 ], [ 121.606401399999541, 31.297381899998719 ], [ 121.606771499999496, 31.29748199999862 ], [ 121.606851599999501, 31.297501999998598 ], [ 121.607011799999484, 31.29755199999855 ], [ 121.607061799999485, 31.297552099998533 ], [ 121.607101799999469, 31.29754209999853 ], [ 121.607341899999426, 31.297442199998457 ], [ 121.60737199999943, 31.297412299998449 ], [ 121.60739209999943, 31.297372299998436 ], [ 121.607421999999445, 31.297172399998427 ], [ 121.607421999999445, 31.297122399998422 ] ] } }, { "type": "Feature", "properties": { "gid": 4885220, "name": null, "pyname": null, "mapid": "466174", "id": "7535766", "kind_num": "1", "kind": "0814", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5774909", "enodeid": "5763324", "funcclass": "5", "length": "0.156", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.607421999999445, 31.297122399998422 ], [ 121.607432099999002, 31.296962399998424 ], [ 121.607421999999431, 31.296882499998425 ], [ 121.607392099999444, 31.296832499998434 ], [ 121.607342099999428, 31.296792599998447 ], [ 121.607292199999435, 31.296762599998466 ], [ 121.607222199999441, 31.296752599998484 ], [ 121.606581599999544, 31.296742299998673 ], [ 121.606541599999531, 31.296752299998683 ], [ 121.606511599999536, 31.296772299998693 ], [ 121.606491599999558, 31.296792199998695 ], [ 121.606441399999539, 31.297081999998714 ] ] } }, { "type": "Feature", "properties": { "gid": 4921925, "name": null, "pyname": null, "mapid": "466174", "id": "15696231", "kind_num": "1", "kind": "0801", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5780737", "enodeid": "12773167", "funcclass": "5", "length": "0.161", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.607312199999427, 31.296272799998459 ], [ 121.607082199999468, 31.296282799998529 ], [ 121.606851999999492, 31.296272699998596 ], [ 121.606341699999575, 31.296202499998735 ], [ 121.606271599999545, 31.296182499998757 ], [ 121.605901399999595, 31.29613239999885 ], [ 121.605681199999651, 31.296072299998901 ], [ 121.605651200518793, 31.296052301448245 ] ] } }, { "type": "Feature", "properties": { "gid": 4921926, "name": null, "pyname": null, "mapid": "466174", "id": "15696232", "kind_num": "1", "kind": "0801", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12773167", "enodeid": "5780734", "funcclass": "5", "length": "0.015", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.605651200518793, 31.296052301448245 ], [ 121.605531100495597, 31.296142201405395 ] ] } }, { "type": "Feature", "properties": { "gid": 4921927, "name": null, "pyname": null, "mapid": "466174", "id": "15696233", "kind_num": "1", "kind": "0801", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12773167", "enodeid": "12773166", "funcclass": "5", "length": "0.075", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.605651200518793, 31.296052301448245 ], [ 121.605531100495512, 31.295982301405381 ], [ 121.605331000457838, 31.295862301334928 ], [ 121.605271000446791, 31.295722401314027 ], [ 121.605291000450435, 31.295662401320964 ], [ 121.605381200466979, 31.295552501352457 ] ] } }, { "type": "Feature", "properties": { "gid": 4921928, "name": null, "pyname": null, "mapid": "466174", "id": "15696234", "kind_num": "1", "kind": "0801", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5780733", "enodeid": "12773168", "funcclass": "5", "length": "0.083", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.608150999999324, 31.295981699998183 ], [ 121.607981299999366, 31.295981999998244 ], [ 121.607951399999322, 31.295991999998247 ], [ 121.607921299999362, 31.296001999998268 ], [ 121.607901399999363, 31.296221999998274 ], [ 121.607881399999343, 31.296261999998276 ], [ 121.607821399999395, 31.296282099998294 ], [ 121.607601799999415, 31.296262399998369 ], [ 121.607551799999413, 31.296262499998384 ] ] } }, { "type": "Feature", "properties": { "gid": 4921929, "name": null, "pyname": null, "mapid": "466174", "id": "15696235", "kind_num": "1", "kind": "0801", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12773168", "enodeid": "5780735", "funcclass": "5", "length": "0.008", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.607551799999413, 31.296262499998384 ], [ 121.607471899999425, 31.296262499998409 ] ] } }, { "type": "Feature", "properties": { "gid": 4921930, "name": null, "pyname": null, "mapid": "466174", "id": "15696236", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5801045", "enodeid": "12773169", "funcclass": "5", "length": "0.023", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.605602000508028, 31.293383901430492 ], [ 121.605832099999617, 31.293453899998863 ] ] } }, { "type": "Feature", "properties": { "gid": 4921931, "name": null, "pyname": null, "mapid": "466174", "id": "15696237", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12773169", "enodeid": "5801039", "funcclass": "5", "length": "0.036", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.605832099999617, 31.293453899998863 ], [ 121.606182399999597, 31.29357399999877 ] ] } }, { "type": "Feature", "properties": { "gid": 4921932, "name": null, "pyname": null, "mapid": "466174", "id": "15696240", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12773169", "enodeid": "12773170", "funcclass": "5", "length": "0.186", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.605832099999617, 31.293453899998863 ], [ 121.60592259999963, 31.291784999998832 ] ] } }, { "type": "Feature", "properties": { "gid": 4921933, "name": null, "pyname": null, "mapid": "466174", "id": "15696241", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113220", "enodeid": "12773171", "funcclass": "5", "length": "0.063", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.606052199999596, 31.293823799998798 ], [ 121.606252199999588, 31.293913899998753 ], [ 121.606382299999566, 31.293953899998719 ], [ 121.606682599999502, 31.29398399999863 ] ] } }, { "type": "Feature", "properties": { "gid": 4921934, "name": null, "pyname": null, "mapid": "466174", "id": "15696242", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12773171", "enodeid": "12113219", "funcclass": "5", "length": "0.234", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.606682599999502, 31.29398399999863 ], [ 121.606772599999516, 31.293993999998616 ], [ 121.606842399999508, 31.293973899998594 ], [ 121.606882399999506, 31.293933799998577 ], [ 121.606902399999484, 31.293893799998578 ], [ 121.606912399999473, 31.293843799998573 ], [ 121.60697219999949, 31.292024199998554 ] ] } }, { "type": "Feature", "properties": { "gid": 4956988, "name": null, "pyname": null, "mapid": "466174", "id": "86053869", "kind_num": "1", "kind": "0801", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5763327", "enodeid": "73261743", "funcclass": "5", "length": "0.211", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.609099799999143, 31.294990799997837 ], [ 121.608180899999311, 31.294921999998177 ], [ 121.607631499999414, 31.294862699998355 ], [ 121.607361899999418, 31.294832999998441 ], [ 121.60719219999946, 31.294823199998493 ], [ 121.607022399999479, 31.29480349999854 ], [ 121.606892499999489, 31.294813599998584 ] ] } }, { "type": "Feature", "properties": { "gid": 4956989, "name": null, "pyname": null, "mapid": "466174", "id": "86053879", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5792574", "enodeid": "73261750", "funcclass": "5", "length": "0.089", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.602448600083321, 31.296960400461298 ], [ 121.603119100142266, 31.297050600640816 ], [ 121.603219200152537, 31.297080600668885 ], [ 121.603359200167617, 31.297130700708699 ] ] } }, { "type": "Feature", "properties": { "gid": 4956990, "name": null, "pyname": null, "mapid": "466174", "id": "86053880", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "73261750", "enodeid": "5792573", "funcclass": "5", "length": "0.008", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603359200167617, 31.297130700708699 ], [ 121.603439300176575, 31.297160700731752 ] ] } }, { "type": "Feature", "properties": { "gid": 4886487, "name": null, "pyname": null, "mapid": "466174", "id": "7547337", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5801041", "enodeid": "5801042", "funcclass": "5", "length": "0.271", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603250700153794, 31.292203500673391 ], [ 121.603691000204108, 31.292153800801792 ], [ 121.603981100241342, 31.292133900889802 ], [ 121.604641700337936, 31.292084201100209 ], [ 121.60478180036057, 31.292094301146602 ], [ 121.604831800368771, 31.292104301163306 ], [ 121.604861900373805, 31.29211430117341 ], [ 121.604881900377151, 31.292134301180138 ], [ 121.604891800378837, 31.292154301183473 ], [ 121.604911900382234, 31.292174301190258 ], [ 121.604931900385637, 31.292254301197037 ], [ 121.604971900392528, 31.292454201210646 ], [ 121.604971700392568, 31.292664001210632 ], [ 121.604941600387576, 31.292903901200514 ], [ 121.604891600379247, 31.293143701183737 ] ] } }, { "type": "Feature", "properties": { "gid": 4886488, "name": null, "pyname": null, "mapid": "466174", "id": "7547338", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5801041", "enodeid": "5801043", "funcclass": "5", "length": "0.013", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603250700153794, 31.292203500673391 ], [ 121.603230700151627, 31.292083600667603 ] ] } }, { "type": "Feature", "properties": { "gid": 4886489, "name": null, "pyname": null, "mapid": "466174", "id": "7547339", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5801043", "enodeid": "5774486", "funcclass": "5", "length": "0.021", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603230700151627, 31.292083600667603 ], [ 121.603220600150479, 31.291893700664556 ] ] } }, { "type": "Feature", "properties": { "gid": 4886490, "name": null, "pyname": null, "mapid": "466174", "id": "7547340", "kind_num": "1", "kind": "0801", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5801038", "enodeid": "5801044", "funcclass": "5", "length": "0.021", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.602459800082471, 31.292882800459338 ], [ 121.60268010009996, 31.29285290051704 ] ] } }, { "type": "Feature", "properties": { "gid": 4886491, "name": null, "pyname": null, "mapid": "466174", "id": "7547341", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5801044", "enodeid": "5801040", "funcclass": "5", "length": "0.049", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.60268010009996, 31.29285290051704 ], [ 121.603160300144623, 31.29279310064836 ], [ 121.603190400147753, 31.292793100656844 ] ] } }, { "type": "Feature", "properties": { "gid": 4882311, "name": null, "pyname": null, "mapid": "466174", "id": "7509759", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5795360", "enodeid": "5795362", "funcclass": "5", "length": "0.443", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.608921099999165, 31.299840299997921 ], [ 121.608841099999182, 31.300030299997946 ], [ 121.608831099999179, 31.300060299997956 ], [ 121.608841099999182, 31.300130299997946 ], [ 121.60886109999916, 31.300180199997946 ], [ 121.608890999999176, 31.300200199997928 ], [ 121.609120899999127, 31.300319999997839 ], [ 121.609320799999082, 31.300419799997758 ], [ 121.609490799999023, 31.300489599997697 ], [ 121.609680499998973, 31.300539399997621 ], [ 121.609840499998967, 31.300539299997546 ], [ 121.610180199998865, 31.300528999997397 ], [ 121.610260299998842, 31.300528999997361 ], [ 121.610330099998833, 31.300508899997329 ], [ 121.610370099998832, 31.300498899997319 ], [ 121.610389999998816, 31.300478899997302 ], [ 121.610420099998805, 31.300438899997289 ], [ 121.610409999998808, 31.300368899997288 ], [ 121.610360199998823, 31.300218999997316 ], [ 121.610280099998846, 31.299979099997355 ], [ 121.61028009999886, 31.299889099997355 ], [ 121.61029989999885, 31.299658999997337 ], [ 121.610339499998844, 31.299288799997321 ], [ 121.610349399998839, 31.298988699997309 ], [ 121.610299299998843, 31.298898799997339 ], [ 121.610269299998862, 31.298858799997355 ], [ 121.610199399998876, 31.298818899997382 ], [ 121.610129399998897, 31.298788899997415 ], [ 121.610059599998891, 31.298768999997442 ], [ 121.609650099999001, 31.29875959999762 ] ] } }, { "type": "Feature", "properties": { "gid": 4887970, "name": null, "pyname": null, "mapid": "466174", "id": "7559599", "kind_num": "1", "kind": "0801", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5792608", "enodeid": "5786574", "funcclass": "5", "length": "0.131", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.613044899997917, 31.294385899995849 ], [ 121.613813799997601, 31.294384899995347 ], [ 121.613953699997523, 31.294384699995252 ], [ 121.614423099997325, 31.294384099994929 ] ] } }, { "type": "Feature", "properties": { "gid": 4888520, "name": null, "pyname": null, "mapid": "466174", "id": "7565427", "kind_num": "2", "kind": "0804|0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5795360", "enodeid": "5795361", "funcclass": "5", "length": "0.011", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.608921099999165, 31.299840299997921 ], [ 121.608951099999146, 31.299740299997907 ] ] } }, { "type": "Feature", "properties": { "gid": 4888521, "name": null, "pyname": null, "mapid": "466174", "id": "7565428", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5795362", "enodeid": "5795361", "funcclass": "5", "length": "0.155", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.609650099999001, 31.29875959999762 ], [ 121.609500099999039, 31.298769799997686 ], [ 121.609330399999095, 31.298779999997755 ], [ 121.609220599999091, 31.298800099997806 ], [ 121.609150699999105, 31.298820199997831 ], [ 121.609090799999151, 31.298860299997855 ], [ 121.609070799999117, 31.298880299997855 ], [ 121.609050799999139, 31.298920399997868 ], [ 121.609050799999153, 31.298990399997862 ], [ 121.60904089999913, 31.29926039999787 ], [ 121.60904089999913, 31.299360299997872 ], [ 121.60904089999913, 31.299390399997872 ], [ 121.609040899999115, 31.299480299997867 ], [ 121.609030999999149, 31.299530299997873 ], [ 121.608951099999146, 31.299740299997907 ] ] } }, { "type": "Feature", "properties": { "gid": 12046397, "name": "俱进路", "pyname": "jjl", "mapid": "466174", "id": "7472671", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5786564", "enodeid": "5774246", "funcclass": "4", "length": "0.098", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.601867000048202, 31.300957800323147 ], [ 121.601016400018608, 31.300957400134816 ], [ 121.600836200016047, 31.300947300098052 ] ] } }, { "type": "Feature", "properties": { "gid": 12046398, "name": "X617", "pyname": "x617", "mapid": "466174", "id": "7472677", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5786568", "enodeid": "5774246", "funcclass": "5", "length": "0.068", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.600656000015022, 31.301466900063353 ], [ 121.600586000014886, 31.301406900049706 ], [ 121.600565800014849, 31.301376900045785 ], [ 121.600566000014823, 31.301317000045717 ], [ 121.600606000014807, 31.301247000053273 ], [ 121.600836200016047, 31.300947300098052 ] ] } }, { "type": "Feature", "properties": { "gid": 12046399, "name": "万安街", "pyname": "waj", "mapid": "466174", "id": "7472679", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5783266", "enodeid": "5786570", "funcclass": "5", "length": "0.144", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.608171499999301, 31.298401399998188 ], [ 121.608950599999162, 31.298400399997902 ], [ 121.609679599999012, 31.29839939999761 ] ] } }, { "type": "Feature", "properties": { "gid": 12046400, "name": "万安街", "pyname": "waj", "mapid": "466174", "id": "7472680", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5786570", "enodeid": "5786215", "funcclass": "5", "length": "0.156", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.609679599999012, 31.29839939999761 ], [ 121.611317599998557, 31.298407299996843 ] ] } }, { "type": "Feature", "properties": { "gid": 12046716, "name": "行德路", "pyname": "hdl", "mapid": "466174", "id": "7473881", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5780736", "enodeid": "5786573", "funcclass": "5", "length": "0.066", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.60747189999941, 31.296362499998406 ], [ 121.607611699999381, 31.296362399998369 ], [ 121.608161099999293, 31.296351599998189 ] ] } }, { "type": "Feature", "properties": { "gid": 12046708, "name": "新行路", "pyname": "xhl", "mapid": "466174", "id": "7473872", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5780732", "enodeid": "5760286", "funcclass": "5", "length": "0.122", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.608171399999321, 31.298061199998187 ], [ 121.608161099999307, 31.296961499998186 ] ] } }, { "type": "Feature", "properties": { "gid": 12046709, "name": "新行路", "pyname": "xhl", "mapid": "466174", "id": "7473873", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5783266", "enodeid": "5780732", "funcclass": "5", "length": "0.038", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.608171499999301, 31.298401399998188 ], [ 121.608171499999315, 31.298321299998186 ], [ 121.608171399999321, 31.298061199998187 ] ] } }, { "type": "Feature", "properties": { "gid": 12046710, "name": "新行路", "pyname": "xhl", "mapid": "466174", "id": "7473874", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5760286", "enodeid": "5786573", "funcclass": "5", "length": "0.068", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.608161099999307, 31.296961499998186 ], [ 121.608161099999307, 31.296401599998184 ], [ 121.608161099999293, 31.296351599998189 ] ] } }, { "type": "Feature", "properties": { "gid": 12046711, "name": "新行路", "pyname": "xhl", "mapid": "466174", "id": "7473875", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5786573", "enodeid": "5780733", "funcclass": "5", "length": "0.041", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.608161099999293, 31.296351599998189 ], [ 121.608150999999324, 31.295981699998183 ] ] } }, { "type": "Feature", "properties": { "gid": 12046712, "name": "新行路", "pyname": "xhl", "mapid": "466174", "id": "7473876", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5780733", "enodeid": "5783271", "funcclass": "5", "length": "0.081", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.608150999999324, 31.295981699998183 ], [ 121.608140899999313, 31.295251899998185 ] ] } }, { "type": "Feature", "properties": { "gid": 12046713, "name": "行德路", "pyname": "hdl", "mapid": "466174", "id": "7473877", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5786571", "enodeid": "5780734", "funcclass": "5", "length": "0.095", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.60465060034096, 31.295732101104594 ], [ 121.604960700392155, 31.29589210120783 ], [ 121.605030700404185, 31.295932101231546 ], [ 121.605531100495597, 31.296142201405395 ] ] } }, { "type": "Feature", "properties": { "gid": 12046714, "name": "行德路", "pyname": "hdl", "mapid": "466174", "id": "7473878", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5780734", "enodeid": "5786572", "funcclass": "5", "length": "0.056", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.605531100495597, 31.296142201405395 ], [ 121.605741199999599, 31.296222299998892 ], [ 121.605971399999603, 31.296292299998829 ], [ 121.606081399999582, 31.296322399998804 ] ] } }, { "type": "Feature", "properties": { "gid": 12046715, "name": "行德路", "pyname": "hdl", "mapid": "466174", "id": "7473880", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5786572", "enodeid": "5780736", "funcclass": "5", "length": "0.132", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.606081399999582, 31.296322399998804 ], [ 121.606231499999581, 31.296332399998764 ], [ 121.606501699999527, 31.296352499998694 ], [ 121.60747189999941, 31.296362499998406 ] ] } }, { "type": "Feature", "properties": { "gid": 12046717, "name": "行泰路", "pyname": "htl", "mapid": "466174", "id": "7473885", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5757858", "enodeid": "5780738", "funcclass": "5", "length": "0.021", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "200", "spdlmte2s": "200", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603070500135217, 31.291903600622337 ], [ 121.602850400114406, 31.29193350056179 ] ] } }, { "type": "Feature", "properties": { "gid": 12046718, "name": "行泰路", "pyname": "htl", "mapid": "466174", "id": "7473886", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5780738", "enodeid": "5757859", "funcclass": "5", "length": "0.080", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "200", "spdlmte2s": "200", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.602850400114406, 31.29193350056179 ], [ 121.602730300103829, 31.291943400529416 ], [ 121.602670200098757, 31.291963400513399 ], [ 121.602620200094648, 31.29198340050019 ], [ 121.602560200089854, 31.292023300484448 ], [ 121.6025302000875, 31.292063300476652 ], [ 121.602490000084444, 31.292123200466257 ], [ 121.602460100082197, 31.292213200458608 ], [ 121.602460000082303, 31.292453000458874 ] ] } }, { "type": "Feature", "properties": { "gid": 12046719, "name": "行泰路", "pyname": "htl", "mapid": "466174", "id": "7473887", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5757859", "enodeid": "5780739", "funcclass": "5", "length": "0.039", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "200", "spdlmte2s": "200", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.602460000082303, 31.292453000458874 ], [ 121.602460000082445, 31.292802800459299 ] ] } }, { "type": "Feature", "properties": { "gid": 12046720, "name": "行泰路", "pyname": "htl", "mapid": "466174", "id": "7473888", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5780739", "enodeid": "5801038", "funcclass": "5", "length": "0.009", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "200", "spdlmte2s": "200", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.602460000082445, 31.292802800459299 ], [ 121.602459800082471, 31.292882800459338 ] ] } }, { "type": "Feature", "properties": { "gid": 12048959, "name": "俱进路", "pyname": "jjl", "mapid": "466174", "id": "7503325", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5760210", "enodeid": "5774459", "funcclass": "4", "length": "0.265", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.606480999999533, 31.302159999998715 ], [ 121.606080799999589, 31.301990099998811 ], [ 121.605280600451223, 31.301660101318078 ], [ 121.604249000282508, 31.301208900978153 ], [ 121.603978400244884, 31.301108600894477 ] ] } }, { "type": "Feature", "properties": { "gid": 12048960, "name": "俱进路", "pyname": "jjl", "mapid": "466174", "id": "7503326", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5774459", "enodeid": "5762824", "funcclass": "4", "length": "0.084", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603978400244884, 31.301108600894477 ], [ 121.603908400235582, 31.301088600873218 ], [ 121.603598300196722, 31.301028500780909 ], [ 121.60319800015202, 31.300968300666312 ], [ 121.603108000142853, 31.30096830064128 ] ] } }, { "type": "Feature", "properties": { "gid": 12049302, "name": "高行街", "pyname": "ghj", "mapid": "466174", "id": "7504548", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5774459", "enodeid": "5771772", "funcclass": "5", "length": "0.006", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603978400244884, 31.301108600894477 ], [ 121.604008500248895, 31.301058600903641 ] ] } }, { "type": "Feature", "properties": { "gid": 12049281, "name": "行泰路", "pyname": "htl", "mapid": "466174", "id": "7504451", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5774486", "enodeid": "5757858", "funcclass": "5", "length": "0.014", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "200", "spdlmte2s": "200", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603220600150479, 31.291893700664556 ], [ 121.603070500135217, 31.291903600622337 ] ] } }, { "type": "Feature", "properties": { "gid": 12049299, "name": "高行街", "pyname": "ghj", "mapid": "466174", "id": "7504528", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5757854", "enodeid": "5771758", "funcclass": "5", "length": "0.124", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.604398900304147, 31.300309301025091 ], [ 121.604939600390082, 31.299290101201585 ] ] } }, { "type": "Feature", "properties": { "gid": 12049300, "name": "高行街", "pyname": "ghj", "mapid": "466174", "id": "7504529", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5771758", "enodeid": "5783265", "funcclass": "5", "length": "0.174", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.604939600390082, 31.299290101201585 ], [ 121.604969700395188, 31.299220101211684 ], [ 121.605620600513618, 31.297831201437315 ] ] } }, { "type": "Feature", "properties": { "gid": 12049301, "name": "金高路", "pyname": "jgl", "mapid": "466174", "id": "7504546", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5774245", "enodeid": "5771771", "funcclass": "4", "length": "0.006", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.602197900066642, 31.29888910040043 ], [ 121.602167800064748, 31.298939100393056 ] ] } }, { "type": "Feature", "properties": { "gid": 12049303, "name": "高行街", "pyname": "ghj", "mapid": "466174", "id": "7504549", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5771772", "enodeid": "5757854", "funcclass": "5", "length": "0.091", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.604008500248895, 31.301058600903641 ], [ 121.604398900304147, 31.300309301025091 ] ] } }, { "type": "Feature", "properties": { "gid": 12049304, "name": "万安街", "pyname": "waj", "mapid": "466174", "id": "7504550", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5786211", "enodeid": "5771773", "funcclass": "5", "length": "0.094", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603599400195094, 31.29697090077828 ], [ 121.60413970026525, 31.297221000941999 ], [ 121.604470000313583, 31.297371001046606 ] ] } }, { "type": "Feature", "properties": { "gid": 12049965, "name": "行泰路", "pyname": "htl", "mapid": "466174", "id": "7510779", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5798179", "enodeid": "5771774", "funcclass": "5", "length": "0.049", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "200", "spdlmte2s": "200", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.602459600082739, 31.293552400460094 ], [ 121.602459600082923, 31.293992100460621 ] ] } }, { "type": "Feature", "properties": { "gid": 12049966, "name": "行泰路", "pyname": "htl", "mapid": "466174", "id": "7510780", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5771774", "enodeid": "5783274", "funcclass": "5", "length": "0.011", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "200", "spdlmte2s": "200", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.602459600082923, 31.293992100460621 ], [ 121.602459400082964, 31.294092100460691 ] ] } }, { "type": "Feature", "properties": { "gid": 12049973, "name": "万安街", "pyname": "waj", "mapid": "466174", "id": "7510787", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5771773", "enodeid": "5771778", "funcclass": "5", "length": "0.116", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.604470000313583, 31.297371001046606 ], [ 121.604880200379284, 31.297551101181234 ], [ 121.605370600466017, 31.29774120134898 ], [ 121.605570500503916, 31.297811301419465 ] ] } }, { "type": "Feature", "properties": { "gid": 12049974, "name": "万安街", "pyname": "waj", "mapid": "466174", "id": "7510788", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5771778", "enodeid": "5783265", "funcclass": "5", "length": "0.005", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.605570500503916, 31.297811301419465 ], [ 121.605620600513618, 31.297831201437315 ] ] } }, { "type": "Feature", "properties": { "gid": 12050015, "name": "高宝路", "pyname": "gbl", "mapid": "466174", "id": "7510847", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5792609", "enodeid": "5771810", "funcclass": "5", "length": "0.124", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.614322999997356, 31.292714599994991 ], [ 121.613254399997842, 31.292745999995702 ], [ 121.613024699997922, 31.29274619999585 ] ] } }, { "type": "Feature", "properties": { "gid": 12050016, "name": "高宝路", "pyname": "gbl", "mapid": "466174", "id": "7510848", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5771810", "enodeid": "10917048", "funcclass": "5", "length": "0.153", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.613024699997922, 31.29274619999585 ], [ 121.612984699997938, 31.292746299995869 ], [ 121.611416799998523, 31.292748299996767 ] ] } }, { "type": "Feature", "properties": { "gid": 12050642, "name": "行泰路", "pyname": "htl", "mapid": "466174", "id": "7516971", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5780228", "enodeid": "5771835", "funcclass": "5", "length": "0.006", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "200", "spdlmte2s": "200", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.60639279999954, 31.291784999998715 ], [ 121.606332799999564, 31.291784999998729 ] ] } }, { "type": "Feature", "properties": { "gid": 4964906, "name": null, "pyname": null, "mapid": "466174", "id": "88272695", "kind_num": "1", "kind": "0814", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "74535565", "enodeid": "74535563", "funcclass": "5", "length": "0.021", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.608061399999329, 31.301530399998235 ], [ 121.608261499999301, 31.301620299998163 ] ] } }, { "type": "Feature", "properties": { "gid": 4964905, "name": null, "pyname": null, "mapid": "466174", "id": "88272694", "kind_num": "1", "kind": "0814", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "74535560", "enodeid": "74535565", "funcclass": "5", "length": "0.045", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.607641399999395, 31.30134039999837 ], [ 121.608061399999329, 31.301530399998235 ] ] } }, { "type": "Feature", "properties": { "gid": 4964907, "name": null, "pyname": null, "mapid": "466174", "id": "88272697", "kind_num": "1", "kind": "0814", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "74535565", "enodeid": "74535567", "funcclass": "5", "length": "0.260", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.608061399999329, 31.301530399998235 ], [ 121.608141499999306, 31.301360499998207 ], [ 121.608191499999307, 31.301330399998189 ], [ 121.608281499999293, 31.301340399998157 ], [ 121.609160799999103, 31.301789499997831 ], [ 121.609470599999057, 31.301969199997707 ], [ 121.609950299998943, 31.30221869999751 ], [ 121.609990299998913, 31.302248699997488 ], [ 121.610000299998916, 31.302288599997489 ], [ 121.609940399998948, 31.302548599997515 ] ] } }, { "type": "Feature", "properties": { "gid": 4964930, "name": null, "pyname": null, "mapid": "466174", "id": "88272742", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5771837", "enodeid": "74535590", "funcclass": "5", "length": "0.023", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.613024699997922, 31.292506299995839 ], [ 121.613024699997922, 31.292326399995847 ], [ 121.613024699997951, 31.292296399995845 ] ] } }, { "type": "Feature", "properties": { "gid": 4964953, "name": null, "pyname": null, "mapid": "466174", "id": "88272776", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "74535590", "enodeid": "74535611", "funcclass": "5", "length": "0.066", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.613024699997951, 31.292296399995845 ], [ 121.613543999997717, 31.292305699995516 ], [ 121.613713699997632, 31.292355499995402 ] ] } }, { "type": "Feature", "properties": { "gid": 4964956, "name": null, "pyname": null, "mapid": "466174", "id": "88272779", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "74535590", "enodeid": "74535613", "funcclass": "5", "length": "0.070", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.613024699997951, 31.292296399995845 ], [ 121.61296479999794, 31.292276399995878 ], [ 121.612864899997987, 31.292246599995941 ], [ 121.612695099998049, 31.292236799996047 ], [ 121.612445299998157, 31.292237099996196 ], [ 121.612295499998226, 31.292227299996281 ] ] } }, { "type": "Feature", "properties": { "gid": 4964957, "name": null, "pyname": null, "mapid": "466174", "id": "88272780", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "74535613", "enodeid": "5771811", "funcclass": "5", "length": "0.088", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.612295499998226, 31.292227299996281 ], [ 121.612285399998228, 31.292027399996282 ], [ 121.612295499998226, 31.291437499996277 ] ] } }, { "type": "Feature", "properties": { "gid": 4964958, "name": null, "pyname": null, "mapid": "466174", "id": "88272781", "kind_num": "1", "kind": "0814", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "74535612", "enodeid": "74535613", "funcclass": "5", "length": "0.048", "detailcity": "1", "through": "0", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611796199998366, 31.292207999996553 ], [ 121.612295499998226, 31.292227299996281 ] ] } }, { "type": "Feature", "properties": { "gid": 12051555, "name": "万安街", "pyname": "waj", "mapid": "466174", "id": "7528067", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5783265", "enodeid": "5783266", "funcclass": "5", "length": "0.251", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.605620600513618, 31.297831201437315 ], [ 121.606140999999582, 31.297951399998791 ], [ 121.608171499999301, 31.298401399998188 ] ] } }, { "type": "Feature", "properties": { "gid": 12052022, "name": "俱进路", "pyname": "jjl", "mapid": "466174", "id": "7529365", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5762824", "enodeid": "5763320", "funcclass": "4", "length": "0.074", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603108000142853, 31.30096830064128 ], [ 121.602697600104875, 31.300968100530451 ], [ 121.602327300076254, 31.300968000435208 ] ] } }, { "type": "Feature", "properties": { "gid": 12052023, "name": "俱进路", "pyname": "jjl", "mapid": "466174", "id": "7529366", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5763320", "enodeid": "5786564", "funcclass": "4", "length": "0.044", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.602327300076254, 31.300968000435208 ], [ 121.601867000048202, 31.300957800323147 ] ] } }, { "type": "Feature", "properties": { "gid": 12052024, "name": "高行街", "pyname": "ghj", "mapid": "466174", "id": "7529371", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5783265", "enodeid": "5763323", "funcclass": "5", "length": "0.093", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.605620600513618, 31.297831201437315 ], [ 121.605660699999632, 31.297721399998903 ], [ 121.605861099999643, 31.297021799998852 ] ] } }, { "type": "Feature", "properties": { "gid": 12052026, "name": "高行街", "pyname": "ghj", "mapid": "466174", "id": "7529373", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5763325", "enodeid": "5786572", "funcclass": "5", "length": "0.070", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.605880999999599, 31.29693189999885 ], [ 121.605941199999606, 31.29673199999883 ], [ 121.606081399999582, 31.296322399998804 ] ] } }, { "type": "Feature", "properties": { "gid": 12052264, "name": "新行路", "pyname": "xhl", "mapid": "466174", "id": "7534496", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5795359", "enodeid": "5783266", "funcclass": "5", "length": "0.136", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.607881699999353, 31.29960129999829 ], [ 121.608171499999301, 31.298401399998188 ] ] } }, { "type": "Feature", "properties": { "gid": 7962953, "name": "金高路", "pyname": "jgl", "mapid": "466174", "id": "7472681", "kind_num": "1", "kind": "0401", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5783267", "enodeid": "5786571", "funcclass": "4", "length": "0.106", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.60529140045017, 31.294952801320999 ], [ 121.60526130044471, 31.295012801310545 ], [ 121.605191100432094, 31.295102701286272 ], [ 121.60465060034096, 31.295732101104594 ] ] } }, { "type": "Feature", "properties": { "gid": 7962954, "name": "金高路", "pyname": "jgl", "mapid": "466174", "id": "7472682", "kind_num": "1", "kind": "0401", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5786571", "enodeid": "5786211", "funcclass": "4", "length": "0.170", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.60465060034096, 31.295732101104594 ], [ 121.603599400195094, 31.29697090077828 ] ] } }, { "type": "Feature", "properties": { "gid": 12053327, "name": "行泰路", "pyname": "htl", "mapid": "466174", "id": "7547334", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5801038", "enodeid": "5798179", "funcclass": "5", "length": "0.074", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "200", "spdlmte2s": "200", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.602459800082471, 31.292882800459338 ], [ 121.602459600082739, 31.293552400460094 ] ] } }, { "type": "Feature", "properties": { "gid": 7963284, "name": "金京路", "pyname": "jjl", "mapid": "466174", "id": "7484698", "kind_num": "1", "kind": "0402", "width": "55", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5786215", "enodeid": "5786212", "funcclass": "4", "length": "0.318", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": "2", "lanenume2s": null, "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": null, "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611317599998557, 31.298407299996843 ], [ 121.611277099998546, 31.295537799996847 ] ] } }, { "type": "Feature", "properties": { "gid": 7963707, "name": "金京路", "pyname": "jjl", "mapid": "466174", "id": "7503200", "kind_num": "1", "kind": "0402", "width": "55", "direction": "3", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5786216", "enodeid": "5786213", "funcclass": "4", "length": "0.317", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": null, "lanenume2s": "2", "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": null, "spdlmte2s": "400", "spdsrcs2e": null, "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611437499998502, 31.298407199996781 ], [ 121.611406999998522, 31.295547699996778 ] ] } }, { "type": "Feature", "properties": { "gid": 7963751, "name": "东靖路", "pyname": "djl", "mapid": "466174", "id": "7503327", "kind_num": "1", "kind": "0402", "width": "55", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5783272", "enodeid": "5774460", "funcclass": "4", "length": "0.088", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": "2", "lanenume2s": null, "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": null, "spdsrcs2e": "1", "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.608140899999313, 31.295131999998187 ], [ 121.609059799999145, 31.295210799997843 ] ] } }, { "type": "Feature", "properties": { "gid": 7963752, "name": "东靖路", "pyname": "djl", "mapid": "466174", "id": "7503328", "kind_num": "1", "kind": "0402", "width": "55", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5774460", "enodeid": "5786214", "funcclass": "4", "length": "0.212", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": "2", "lanenume2s": null, "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": null, "spdsrcs2e": "1", "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.609059799999145, 31.295210799997843 ], [ 121.61127709999856, 31.295417899996849 ] ] } }, { "type": "Feature", "properties": { "gid": 7963755, "name": "东靖路", "pyname": "djl", "mapid": "466174", "id": "7503358", "kind_num": "1", "kind": "0402", "width": "55", "direction": "3", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5783271", "enodeid": "5774497", "funcclass": "4", "length": "0.086", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": null, "lanenume2s": "2", "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": null, "spdlmte2s": "400", "spdsrcs2e": null, "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.608140899999313, 31.295251899998185 ], [ 121.609039899999132, 31.295330799997853 ] ] } }, { "type": "Feature", "properties": { "gid": 7963756, "name": "东靖路", "pyname": "djl", "mapid": "466174", "id": "7503359", "kind_num": "1", "kind": "0402", "width": "55", "direction": "3", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5774497", "enodeid": "5786212", "funcclass": "4", "length": "0.214", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": null, "lanenume2s": "2", "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": null, "spdlmte2s": "400", "spdsrcs2e": null, "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.609039899999132, 31.295330799997853 ], [ 121.611277099998546, 31.295537799996847 ] ] } }, { "type": "Feature", "properties": { "gid": 7963849, "name": "金京路", "pyname": "jjl", "mapid": "466174", "id": "7504535", "kind_num": "1", "kind": "0402", "width": "55", "direction": "3", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5798181", "enodeid": "5771764", "funcclass": "4", "length": "0.331", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": null, "lanenume2s": "2", "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": null, "spdlmte2s": "400", "spdsrcs2e": null, "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611439399998503, 31.301987499996795 ], [ 121.611437999998515, 31.299007299996781 ] ] } }, { "type": "Feature", "properties": { "gid": 7963850, "name": "金京路", "pyname": "jjl", "mapid": "466174", "id": "7504536", "kind_num": "1", "kind": "0402", "width": "55", "direction": "3", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5771764", "enodeid": "5786216", "funcclass": "4", "length": "0.067", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": null, "lanenume2s": "2", "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": null, "spdlmte2s": "400", "spdsrcs2e": null, "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611437999998515, 31.299007299996781 ], [ 121.611437499998502, 31.298407199996781 ] ] } }, { "type": "Feature", "properties": { "gid": 7963851, "name": "金京路", "pyname": "jjl", "mapid": "466174", "id": "7504539", "kind_num": "1", "kind": "0402", "width": "55", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5798180", "enodeid": "5771767", "funcclass": "4", "length": "0.337", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": "2", "lanenume2s": null, "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": null, "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611309499998583, 31.30197759999686 ], [ 121.611307999998544, 31.298937499996853 ] ] } }, { "type": "Feature", "properties": { "gid": 7963852, "name": "金京路", "pyname": "jjl", "mapid": "466174", "id": "7504540", "kind_num": "1", "kind": "0402", "width": "55", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5771767", "enodeid": "5786215", "funcclass": "4", "length": "0.059", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": "2", "lanenume2s": null, "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": null, "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611307999998544, 31.298937499996853 ], [ 121.611317599998557, 31.298407299996843 ] ] } }, { "type": "Feature", "properties": { "gid": 7963853, "name": null, "pyname": null, "mapid": "466174", "id": "7504541", "kind_num": "1", "kind": "0404", "width": "30", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5771764", "enodeid": "5771767", "funcclass": "5", "length": "0.015", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "150", "spdlmte2s": "150", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 4.572 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611437999998515, 31.299007299996781 ], [ 121.611307999998544, 31.298937499996853 ] ] } }, { "type": "Feature", "properties": { "gid": 7964348, "name": "东靖路", "pyname": "djl", "mapid": "466174", "id": "7528117", "kind_num": "2", "kind": "0402|0404", "width": "55", "direction": "3", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5786212", "enodeid": "5786213", "funcclass": "4", "length": "0.012", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": null, "lanenume2s": "2", "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": null, "spdlmte2s": "400", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611277099998546, 31.295537799996847 ], [ 121.611406999998522, 31.295547699996778 ] ] } }, { "type": "Feature", "properties": { "gid": 7964329, "name": "东靖路", "pyname": "djl", "mapid": "466174", "id": "7528068", "kind_num": "1", "kind": "0402", "width": "55", "direction": "3", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5783267", "enodeid": "5783268", "funcclass": "4", "length": "0.123", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": null, "lanenume2s": "2", "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": null, "spdlmte2s": "400", "spdsrcs2e": null, "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.60529140045017, 31.294952801320999 ], [ 121.606582099999528, 31.295073299998666 ] ] } }, { "type": "Feature", "properties": { "gid": 7964330, "name": "金高路", "pyname": "jgl", "mapid": "466174", "id": "7528069", "kind_num": "1", "kind": "0404", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5783267", "enodeid": "5783269", "funcclass": "4", "length": "0.014", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.60529140045017, 31.294952801320999 ], [ 121.605371300464853, 31.294842901348886 ] ] } }, { "type": "Feature", "properties": { "gid": 7964331, "name": "东靖路", "pyname": "djl", "mapid": "466174", "id": "7528070", "kind_num": "1", "kind": "0402", "width": "55", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5783269", "enodeid": "5783270", "funcclass": "4", "length": "0.118", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": "2", "lanenume2s": null, "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": null, "spdsrcs2e": "1", "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.605371300464853, 31.294842901348886 ], [ 121.606602299999551, 31.294963399998657 ] ] } }, { "type": "Feature", "properties": { "gid": 7964332, "name": "东靖路", "pyname": "djl", "mapid": "466174", "id": "7528072", "kind_num": "1", "kind": "0402", "width": "55", "direction": "3", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5783268", "enodeid": "5783271", "funcclass": "4", "length": "0.150", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": null, "lanenume2s": "2", "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": null, "spdlmte2s": "400", "spdsrcs2e": null, "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.606582099999528, 31.295073299998666 ], [ 121.608140899999313, 31.295251899998185 ] ] } }, { "type": "Feature", "properties": { "gid": 7964333, "name": "东靖路", "pyname": "djl", "mapid": "466174", "id": "7528073", "kind_num": "1", "kind": "0402", "width": "55", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5783270", "enodeid": "5783272", "funcclass": "4", "length": "0.148", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": "2", "lanenume2s": null, "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": null, "spdsrcs2e": "1", "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.606602299999551, 31.294963399998657 ], [ 121.608140899999313, 31.295131999998187 ] ] } }, { "type": "Feature", "properties": { "gid": 7964334, "name": "新行路", "pyname": "xhl", "mapid": "466174", "id": "7528074", "kind_num": "1", "kind": "0404", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5783271", "enodeid": "5783272", "funcclass": "5", "length": "0.013", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.608140899999313, 31.295251899998185 ], [ 121.608140899999313, 31.295131999998187 ] ] } }, { "type": "Feature", "properties": { "gid": 7964335, "name": "行泰路", "pyname": "htl", "mapid": "466174", "id": "7528075", "kind_num": "1", "kind": "0404", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5783273", "enodeid": "5783274", "funcclass": "5", "length": "0.014", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "200", "spdlmte2s": "200", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.602449500082258, 31.294222000458294 ], [ 121.602459400082964, 31.294092100460691 ] ] } }, { "type": "Feature", "properties": { "gid": 7964349, "name": "金京路", "pyname": "jjl", "mapid": "466174", "id": "7528118", "kind_num": "2", "kind": "0402|0404", "width": "55", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5786212", "enodeid": "5786214", "funcclass": "4", "length": "0.013", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": "2", "lanenume2s": null, "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": null, "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611277099998546, 31.295537799996847 ], [ 121.61127709999856, 31.295417899996849 ] ] } }, { "type": "Feature", "properties": { "gid": 7964350, "name": "金京路", "pyname": "jjl", "mapid": "466174", "id": "7528119", "kind_num": "2", "kind": "0402|0404", "width": "55", "direction": "3", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5786213", "enodeid": "10917050", "funcclass": "4", "length": "0.013", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": null, "lanenume2s": "2", "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": null, "spdlmte2s": "400", "spdsrcs2e": null, "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611406999998522, 31.295547699996778 ], [ 121.611406999998522, 31.295427699996782 ] ] } }, { "type": "Feature", "properties": { "gid": 7964351, "name": "万安街", "pyname": "waj", "mapid": "466174", "id": "7528120", "kind_num": "1", "kind": "0404", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5786215", "enodeid": "5786216", "funcclass": "5", "length": "0.011", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611317599998557, 31.298407299996843 ], [ 121.611437499998502, 31.298407199996781 ] ] } }, { "type": "Feature", "properties": { "gid": 7964413, "name": "金高路", "pyname": "jgl", "mapid": "466174", "id": "7529367", "kind_num": "1", "kind": "0401", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5774245", "enodeid": "5763322", "funcclass": "4", "length": "0.179", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.602197900066642, 31.29888910040043 ], [ 121.602748500107978, 31.298029900540854 ], [ 121.602938800125031, 31.297770100591833 ], [ 121.603149000145493, 31.297500400649568 ] ] } }, { "type": "Feature", "properties": { "gid": 7964414, "name": "金高路", "pyname": "jgl", "mapid": "466174", "id": "7529368", "kind_num": "1", "kind": "0401", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5763322", "enodeid": "5792573", "funcclass": "4", "length": "0.047", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603149000145493, 31.297500400649568 ], [ 121.603208900151614, 31.297430400666293 ], [ 121.603439300176575, 31.297160700731752 ] ] } }, { "type": "Feature", "properties": { "gid": 7964597, "name": "金高路", "pyname": "jgl", "mapid": "466174", "id": "7535760", "kind_num": "1", "kind": "0401", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5771770", "enodeid": "5774908", "funcclass": "4", "length": "0.092", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.601346800026334, 31.30017800020385 ], [ 121.600866200016355, 31.300897400104009 ] ] } }, { "type": "Feature", "properties": { "gid": 7964598, "name": "金高路", "pyname": "jgl", "mapid": "466174", "id": "7535761", "kind_num": "1", "kind": "0401", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5774908", "enodeid": "5774246", "funcclass": "4", "length": "0.006", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.600866200016355, 31.300897400104009 ], [ 121.600836200016047, 31.300947300098052 ] ] } }, { "type": "Feature", "properties": { "gid": 12054841, "name": "新行路", "pyname": "xhl", "mapid": "466174", "id": "7565426", "kind_num": "1", "kind": "0601", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5795355", "enodeid": "5795359", "funcclass": "5", "length": "0.321", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.607211099999461, 31.302439899998507 ], [ 121.607881699999353, 31.29960129999829 ] ] } }, { "type": "Feature", "properties": { "gid": 7964916, "name": "东靖路", "pyname": "djl", "mapid": "466174", "id": "7547289", "kind_num": "1", "kind": "0402", "width": "55", "direction": "3", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5786235", "enodeid": "5783273", "funcclass": "4", "length": "0.228", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": null, "lanenume2s": "2", "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": null, "spdlmte2s": "400", "spdsrcs2e": null, "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.600147900015486, 31.293651299953201 ], [ 121.60141880002611, 31.293971700210058 ], [ 121.602449500082258, 31.294222000458294 ] ] } }, { "type": "Feature", "properties": { "gid": 7964917, "name": "东靖路", "pyname": "djl", "mapid": "466174", "id": "7547290", "kind_num": "1", "kind": "0402", "width": "55", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5774274", "enodeid": "5783274", "funcclass": "4", "length": "0.227", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": "2", "lanenume2s": null, "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": null, "spdsrcs2e": "1", "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.600157900015262, 31.293551399954794 ], [ 121.601438800026727, 31.293851800214341 ], [ 121.602169300062769, 31.294032000387162 ], [ 121.602459400082964, 31.294092100460691 ] ] } }, { "type": "Feature", "properties": { "gid": 7965392, "name": "东靖路", "pyname": "djl", "mapid": "466174", "id": "7565862", "kind_num": "1", "kind": "0402", "width": "55", "direction": "3", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5786213", "enodeid": "5774461", "funcclass": "4", "length": "0.289", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": null, "lanenume2s": "2", "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": null, "spdlmte2s": "400", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611406999998522, 31.295547699996778 ], [ 121.612455699998151, 31.295646299996207 ], [ 121.614423299997313, 31.29584369999494 ] ] } }, { "type": "Feature", "properties": { "gid": 7969585, "name": "金京路", "pyname": "jjl", "mapid": "466174", "id": "13148699", "kind_num": "1", "kind": "0402", "width": "55", "direction": "3", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "10917050", "enodeid": "10917044", "funcclass": "4", "length": "0.087", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": null, "lanenume2s": "2", "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": null, "spdlmte2s": "400", "spdsrcs2e": null, "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611406999998522, 31.295427699996782 ], [ 121.611396999998519, 31.294647899996786 ] ] } }, { "type": "Feature", "properties": { "gid": 7969586, "name": "金京路", "pyname": "jjl", "mapid": "466174", "id": "13148700", "kind_num": "1", "kind": "0402", "width": "55", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5786214", "enodeid": "5763329", "funcclass": "4", "length": "0.086", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": "2", "lanenume2s": null, "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": null, "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.61127709999856, 31.295417899996849 ], [ 121.611297099998552, 31.294647999996833 ] ] } }, { "type": "Feature", "properties": { "gid": 7969587, "name": "金京路", "pyname": "jjl", "mapid": "466174", "id": "13148707", "kind_num": "2", "kind": "0402|0408", "width": "55", "direction": "3", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "10917047", "enodeid": "10917045", "funcclass": "4", "length": "0.096", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": null, "lanenume2s": "2", "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": null, "spdlmte2s": "400", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611336699998546, 31.290998899996801 ], [ 121.611336699998532, 31.2910687999968 ], [ 121.611316699998582, 31.291858699996808 ] ] } }, { "type": "Feature", "properties": { "gid": 7969588, "name": "金京路", "pyname": "jjl", "mapid": "466174", "id": "13148709", "kind_num": "1", "kind": "0402", "width": "55", "direction": "3", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "10917048", "enodeid": "47608197", "funcclass": "4", "length": "0.099", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": null, "lanenume2s": "2", "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": null, "spdlmte2s": "400", "spdsrcs2e": null, "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611416799998523, 31.292748299996767 ], [ 121.611416599998506, 31.292458399996764 ], [ 121.611416599998535, 31.292258399996765 ], [ 121.61141659999852, 31.291998499996762 ], [ 121.61141659999852, 31.291858499996763 ] ] } }, { "type": "Feature", "properties": { "gid": 7969589, "name": "金京路", "pyname": "jjl", "mapid": "466174", "id": "13148711", "kind_num": "1", "kind": "0402", "width": "55", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "10917049", "enodeid": "10917045", "funcclass": "4", "length": "0.099", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": "2", "lanenume2s": null, "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": null, "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.61131689999857, 31.292748499996812 ], [ 121.611316899998556, 31.292458499996815 ], [ 121.611316699998568, 31.292258599996817 ], [ 121.611316699998568, 31.291998599996813 ], [ 121.611316699998582, 31.291858699996808 ] ] } }, { "type": "Feature", "properties": { "gid": 7969590, "name": "高宝路", "pyname": "gbl", "mapid": "466174", "id": "13148712", "kind_num": "1", "kind": "0404", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "10917048", "enodeid": "10917049", "funcclass": "5", "length": "0.009", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611416799998523, 31.292748299996767 ], [ 121.61131689999857, 31.292748499996812 ] ] } }, { "type": "Feature", "properties": { "gid": 7969591, "name": "东靖路", "pyname": "djl", "mapid": "466174", "id": "13148713", "kind_num": "2", "kind": "0402|0404", "width": "55", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5786214", "enodeid": "10917050", "funcclass": "4", "length": "0.012", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": "2", "lanenume2s": null, "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": null, "spdsrcs2e": "1", "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.61127709999856, 31.295417899996849 ], [ 121.611406999998522, 31.295427699996782 ] ] } }, { "type": "Feature", "properties": { "gid": 7969592, "name": "东靖路", "pyname": "djl", "mapid": "466174", "id": "13148714", "kind_num": "1", "kind": "0402", "width": "55", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "10917050", "enodeid": "5774462", "funcclass": "4", "length": "0.289", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": "2", "lanenume2s": null, "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": null, "spdsrcs2e": "1", "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611406999998522, 31.295427699996782 ], [ 121.61246559999816, 31.295526299996197 ], [ 121.614423299997313, 31.295733799994942 ] ] } }, { "type": "Feature", "properties": { "gid": 7970313, "name": "金高路", "pyname": "jgl", "mapid": "466174", "id": "14484396", "kind_num": "1", "kind": "0401", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5771771", "enodeid": "12113076", "funcclass": "4", "length": "0.093", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.602167800064748, 31.298939100393056 ], [ 121.601687200038981, 31.29966850027947 ] ] } }, { "type": "Feature", "properties": { "gid": 7970314, "name": "金高路", "pyname": "jgl", "mapid": "466174", "id": "14484397", "kind_num": "1", "kind": "0401", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113076", "enodeid": "5771770", "funcclass": "4", "length": "0.065", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.601687200038981, 31.29966850027947 ], [ 121.601346800026334, 31.30017800020385 ] ] } }, { "type": "Feature", "properties": { "gid": 7970315, "name": "金高路", "pyname": "jgl", "mapid": "466174", "id": "14484404", "kind_num": "1", "kind": "0401", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5792573", "enodeid": "12113081", "funcclass": "4", "length": "0.015", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603439300176575, 31.297160700731752 ], [ 121.603529300186878, 31.297050800757802 ] ] } }, { "type": "Feature", "properties": { "gid": 7970316, "name": "金高路", "pyname": "jgl", "mapid": "466174", "id": "14484405", "kind_num": "1", "kind": "0401", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113081", "enodeid": "5786211", "funcclass": "4", "length": "0.011", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "300", "spdlmte2s": "300", "spdsrcs2e": "1", "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603529300186878, 31.297050800757802 ], [ 121.603599400195094, 31.29697090077828 ] ] } }, { "type": "Feature", "properties": { "gid": 7970317, "name": "东靖路", "pyname": "djl", "mapid": "466174", "id": "14484409", "kind_num": "1", "kind": "0402", "width": "55", "direction": "3", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5783273", "enodeid": "12113084", "funcclass": "4", "length": "0.140", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": null, "lanenume2s": "2", "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": null, "spdlmte2s": "400", "spdsrcs2e": null, "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.602449500082258, 31.294222000458294 ], [ 121.602819600112639, 31.294322100556002 ], [ 121.603860400226537, 31.294592400854551 ] ] } }, { "type": "Feature", "properties": { "gid": 7970318, "name": "东靖路", "pyname": "djl", "mapid": "466174", "id": "14484410", "kind_num": "1", "kind": "0402", "width": "55", "direction": "3", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113084", "enodeid": "5783267", "funcclass": "4", "length": "0.142", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": null, "lanenume2s": "2", "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": null, "spdlmte2s": "400", "spdsrcs2e": null, "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603860400226537, 31.294592400854551 ], [ 121.60510110041605, 31.294912701255303 ], [ 121.60529140045017, 31.294952801320999 ] ] } }, { "type": "Feature", "properties": { "gid": 7970319, "name": "东靖路", "pyname": "djl", "mapid": "466174", "id": "14484417", "kind_num": "1", "kind": "0402", "width": "55", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5783274", "enodeid": "12113088", "funcclass": "4", "length": "0.144", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": "2", "lanenume2s": null, "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": null, "spdsrcs2e": "1", "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.602459400082964, 31.294092100460691 ], [ 121.603910400232962, 31.294472500869677 ] ] } }, { "type": "Feature", "properties": { "gid": 7970320, "name": "东靖路", "pyname": "djl", "mapid": "466174", "id": "14484418", "kind_num": "1", "kind": "0402", "width": "55", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113088", "enodeid": "5783269", "funcclass": "4", "length": "0.145", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": "2", "lanenume2s": null, "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": null, "spdsrcs2e": "1", "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.603910400232962, 31.294472500869677 ], [ 121.605181200430223, 31.294802801282799 ], [ 121.605371300464853, 31.294842901348886 ] ] } }, { "type": "Feature", "properties": { "gid": 7970459, "name": "金高路", "pyname": "jgl", "mapid": "466174", "id": "14709345", "kind_num": "1", "kind": "0401", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113220", "enodeid": "5795363", "funcclass": "4", "length": "0.034", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": "300", "spdsrcs2e": "3", "spdsrce2s": "3", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.606052199999596, 31.293823799998798 ], [ 121.605871999999607, 31.294083599998849 ] ] } }, { "type": "Feature", "properties": { "gid": 7970460, "name": "金高路", "pyname": "jgl", "mapid": "466174", "id": "14709347", "kind_num": "1", "kind": "0401", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5780228", "enodeid": "12113221", "funcclass": "4", "length": "0.028", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": "300", "spdsrcs2e": "3", "spdsrce2s": "3", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.60639279999954, 31.291784999998715 ], [ 121.606372799999576, 31.292034899998715 ] ] } }, { "type": "Feature", "properties": { "gid": 7970461, "name": "金高路", "pyname": "jgl", "mapid": "466174", "id": "14709348", "kind_num": "1", "kind": "0401", "width": "55", "direction": "1", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113221", "enodeid": "5801039", "funcclass": "4", "length": "0.173", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "7", "lanenums2e": "1", "lanenume2s": "1", "lanenum": "1", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": "300", "spdsrcs2e": "3", "spdsrce2s": "3", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.606372799999576, 31.292034899998715 ], [ 121.606372799999576, 31.292054999998722 ], [ 121.606322799999589, 31.29262469999874 ], [ 121.606312699999563, 31.293014399998736 ], [ 121.606252399999562, 31.293374199998748 ], [ 121.606182399999597, 31.29357399999877 ] ] } }, { "type": "Feature", "properties": { "gid": 7970462, "name": "金京路", "pyname": "jjl", "mapid": "466174", "id": "14709365", "kind_num": "1", "kind": "0402", "width": "55", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "5763329", "enodeid": "12113229", "funcclass": "4", "length": "0.131", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": "2", "lanenume2s": null, "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": null, "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611297099998552, 31.294647999996833 ], [ 121.611306999998547, 31.293468299996825 ] ] } }, { "type": "Feature", "properties": { "gid": 7970463, "name": "金京路", "pyname": "jjl", "mapid": "466174", "id": "14709366", "kind_num": "1", "kind": "0402", "width": "55", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113229", "enodeid": "10917049", "funcclass": "4", "length": "0.080", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": "2", "lanenume2s": null, "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": null, "spdsrcs2e": null, "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611306999998547, 31.293468299996825 ], [ 121.61131689999857, 31.292748499996812 ] ] } }, { "type": "Feature", "properties": { "gid": 7970464, "name": "金京路", "pyname": "jjl", "mapid": "466174", "id": "14709370", "kind_num": "1", "kind": "0402", "width": "55", "direction": "3", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "10917044", "enodeid": "12113231", "funcclass": "4", "length": "0.130", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": null, "lanenume2s": "2", "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": null, "spdlmte2s": "400", "spdsrcs2e": null, "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611396999998519, 31.294647899996786 ], [ 121.611406699998554, 31.29347819999677 ] ] } }, { "type": "Feature", "properties": { "gid": 7970465, "name": "金京路", "pyname": "jjl", "mapid": "466174", "id": "14709371", "kind_num": "1", "kind": "0402", "width": "55", "direction": "3", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113231", "enodeid": "10917048", "funcclass": "4", "length": "0.081", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": null, "lanenume2s": "2", "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": null, "spdlmte2s": "400", "spdsrcs2e": null, "spdsrce2s": "1", "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.611406699998554, 31.29347819999677 ], [ 121.611416799998523, 31.292748299996767 ] ] } }, { "type": "Feature", "properties": { "gid": 7970469, "name": "金京路", "pyname": "jjl", "mapid": "466174", "id": "14709377", "kind_num": "2", "kind": "0402|0408", "width": "55", "direction": "2", "toll": "2", "const_st": "1", "undconcrid": null, "snodeid": "12113234", "enodeid": "47608197", "funcclass": "4", "length": "0.037", "detailcity": "1", "through": "1", "unthrucrid": null, "ownership": "0", "road_cond": "1", "special": "0", "admincodel": "310115", "admincoder": "310115", "uflag": "1", "onewaycrid": null, "accesscrid": null, "speedclass": "6", "lanenums2e": "2", "lanenume2s": null, "lanenum": "2", "vehcl_type": "11110001110000000000000000000000", "elevated": "0", "structure": "0", "usefeecrid": null, "usefeetype": null, "spdlmts2e": "400", "spdlmte2s": null, "spdsrcs2e": "1", "spdsrce2s": null, "dc_type": "0", "nopasscrid": null, "roadwigth": 8.382 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.61141659999852, 31.291528599996756 ], [ 121.61141659999852, 31.291858499996763 ] ] } } ] } ================================================ FILE: tests/data/multiPoint/multi-point.cpg ================================================ UTF-8 ================================================ FILE: tests/data/multiPoint/multi-point.prj ================================================ GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] ================================================ FILE: tests/data/multiPoint/multi-point.qpj ================================================ GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]] ================================================ FILE: tests/data/multiPolygon/polygon_wgs.cpg ================================================ UTF-8 ================================================ FILE: tests/data/multiPolygon/polygon_wgs.prj ================================================ GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] ================================================ FILE: tests/data/multiPolygon/polygon_wgs.qpj ================================================ GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]] ================================================ FILE: tests/data/multiPolyline/polyline_wgs.cpg ================================================ UTF-8 ================================================ FILE: tests/data/multiPolyline/polyline_wgs.prj ================================================ GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] ================================================ FILE: tests/data/point/point.cpg ================================================ UTF-8 ================================================ FILE: tests/data/point/point.geojson ================================================ { "type": "FeatureCollection", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, "features": [ { "type": "Feature", "properties": { "id": 1, "geom": "SRID=4326;POINT(112.986255 28.179366)", "零售户": "红大自选批发部", "经度": 112.986255, "纬度": 28.179366, "参考值1": 125.15, "参考值2": 7488, "参考值3": 18.63 }, "geometry": { "type": "Point", "coordinates": [ 112.979689591464378, 28.173709675487242 ] } }, { "type": "Feature", "properties": { "id": 2, "geom": "SRID=4326;POINT(112.993566 28.132808)", "零售户": "长沙市天心区若有烟酒店", "经度": 112.993566, "纬度": 28.132808, "参考值1": 100.53, "参考值2": 5149, "参考值3": 17.07 }, "geometry": { "type": "Point", "coordinates": [ 112.986974963962552, 28.127120947688756 ] } }, { "type": "Feature", "properties": { "id": 3, "geom": "SRID=4326;POINT(113.010739 28.131452)", "零售户": "长沙尊品航百货贸易有限公司", "经度": 113.010739, "纬度": 28.131452, "参考值1": 104.55, "参考值2": 5980, "参考值3": 15.77 }, "geometry": { "type": "Point", "coordinates": [ 113.004200537586414, 28.12554938397194 ] } }, { "type": "Feature", "properties": { "id": 4, "geom": "SRID=4326;POINT(112.981923 28.175216)", "零售户": "长沙市天心区二条巷便利店", "经度": 112.981923, "纬度": 28.175216, "参考值1": 83.89, "参考值2": 6420, "参考值3": 14.3 }, "geometry": { "type": "Point", "coordinates": [ 112.975360296530766, 28.169550074545022 ] } }, { "type": "Feature", "properties": { "id": 5, "geom": "SRID=4326;POINT(112.993044 28.146251)", "零售户": "湖南家润多超市有限公司和庄", "经度": 112.993044, "纬度": 28.146251, "参考值1": 95.4, "参考值2": 6241, "参考值3": 14.15 }, "geometry": { "type": "Point", "coordinates": [ 112.986464741225703, 28.14057031930329 ] } }, { "type": "Feature", "properties": { "id": 6, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区季风超市", "经度": 112.978226, "纬度": 28.139107, "参考值1": 86.93, "参考值2": 4904, "参考值3": 13.5 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 7, "geom": "SRID=4326;POINT(112.985302 28.147771)", "零售户": "长沙北源实业有限公司新开铺", "经度": 112.985302, "纬度": 28.147771, "参考值1": 92.96, "参考值2": 5210, "参考值3": 13.47 }, "geometry": { "type": "Point", "coordinates": [ 112.978719537239357, 28.142109717316451 ] } }, { "type": "Feature", "properties": { "id": 8, "geom": "SRID=4326;POINT(112.993044 28.146251)", "零售户": "中国石油化工股份有限公司湖", "经度": 112.993044, "纬度": 28.146251, "参考值1": 83.49, "参考值2": 6228, "参考值3": 12.24 }, "geometry": { "type": "Point", "coordinates": [ 112.986464741225703, 28.14057031930329 ] } }, { "type": "Feature", "properties": { "id": 9, "geom": "SRID=4326;POINT(112.982726 28.198906)", "零售户": "长沙王府井百货有限公司", "经度": 112.982726, "纬度": 28.198906, "参考值1": 77.81, "参考值2": 3671, "参考值3": 11.08 }, "geometry": { "type": "Point", "coordinates": [ 112.976150109924262, 28.193240090409784 ] } }, { "type": "Feature", "properties": { "id": 10, "geom": "SRID=4326;POINT(113.002148 28.118339)", "零售户": "长沙市天心区胡穷商贸行", "经度": 113.002148, "纬度": 28.118339, "参考值1": 65.46, "参考值2": 3240, "参考值3": 9.98 }, "geometry": { "type": "Point", "coordinates": [ 112.995571158820383, 28.112565638179021 ] } }, { "type": "Feature", "properties": { "id": 11, "geom": "SRID=4326;POINT(112.989108 28.188177)", "零售户": "湖南中糖华洋贸易有限公司", "经度": 112.989108, "纬度": 28.188177, "参考值1": 66.41, "参考值2": 4908, "参考值3": 9.69 }, "geometry": { "type": "Point", "coordinates": [ 112.982539832936567, 28.182516681919747 ] } }, { "type": "Feature", "properties": { "id": 12, "geom": "SRID=4326;POINT(112.985206 28.19707)", "零售户": "湖南六三六连锁管理有限公司", "经度": 112.985206, "纬度": 28.19707, "参考值1": 55.69, "参考值2": 1435, "参考值3": 9.6 }, "geometry": { "type": "Point", "coordinates": [ 112.978630366584468, 28.191410340777495 ] } }, { "type": "Feature", "properties": { "id": 13, "geom": "SRID=4326;POINT(112.982127 28.150709)", "零售户": "长沙市天心区群峰便利店", "经度": 112.982127, "纬度": 28.150709, "参考值1": 63.85, "参考值2": 3941, "参考值3": 9.37 }, "geometry": { "type": "Point", "coordinates": [ 112.975549505724359, 28.145040261046898 ] } }, { "type": "Feature", "properties": { "id": 14, "geom": "SRID=4326;POINT(112.977133 28.196491)", "零售户": "湖南六三六连锁管理有限公司", "经度": 112.977133, "纬度": 28.196491, "参考值1": 53.56, "参考值2": 1323, "参考值3": 9.37 }, "geometry": { "type": "Point", "coordinates": [ 112.970567664805344, 28.190792272971635 ] } }, { "type": "Feature", "properties": { "id": 15, "geom": "SRID=4326;POINT(112.983866 28.185227)", "零售户": "长沙市天心区金宏毅超市", "经度": 112.983866, "纬度": 28.185227, "参考值1": 63.31, "参考值2": 3752, "参考值3": 9.32 }, "geometry": { "type": "Point", "coordinates": [ 112.977299448998636, 28.179566999965932 ] } }, { "type": "Feature", "properties": { "id": 16, "geom": "SRID=4326;POINT(112.977186 28.196478)", "零售户": "长沙市天心区坡子街米菜烟酒", "经度": 112.977186, "纬度": 28.196478, "参考值1": 58.8, "参考值2": 2958, "参考值3": 9.07 }, "geometry": { "type": "Point", "coordinates": [ 112.970620566182916, 28.190779717857168 ] } }, { "type": "Feature", "properties": { "id": 17, "geom": "SRID=4326;POINT(112.995261 28.068772)", "零售户": "长沙市天心区哲鹏便利店", "经度": 112.995261, "纬度": 28.068772, "参考值1": 62.23, "参考值2": 4575, "参考值3": 8.95 }, "geometry": { "type": "Point", "coordinates": [ 112.988700744204166, 28.06307970564572 ] } }, { "type": "Feature", "properties": { "id": 18, "geom": "SRID=4326;POINT(112.983009 28.201276)", "零售户": "长沙烨华酒业贸易有限公司五", "经度": 112.983009, "纬度": 28.201276, "参考值1": 57.39, "参考值2": 3220, "参考值3": 8.89 }, "geometry": { "type": "Point", "coordinates": [ 112.97643057377222, 28.195610468764947 ] } }, { "type": "Feature", "properties": { "id": 19, "geom": "SRID=4326;POINT(113.005193 28.127624)", "零售户": "湖南轩辕酒业贸易有限公司", "经度": 113.005193, "纬度": 28.127624, "参考值1": 59.59, "参考值2": 2889, "参考值3": 8.77 }, "geometry": { "type": "Point", "coordinates": [ 112.998629997148043, 28.121809213761946 ] } }, { "type": "Feature", "properties": { "id": 20, "geom": "SRID=4326;POINT(112.977029 28.115305)", "零售户": "长沙市天心区西华超市", "经度": 112.977029, "纬度": 28.115305, "参考值1": 49.0, "参考值2": 3049, "参考值3": 8.66 }, "geometry": { "type": "Point", "coordinates": [ 112.970435434413204, 28.109598260408973 ] } }, { "type": "Feature", "properties": { "id": 21, "geom": "SRID=4326;POINT(112.99826 28.0764)", "零售户": "湖南友谊阿波罗商业股份有限", "经度": 112.99826, "纬度": 28.0764, "参考值1": 54.98, "参考值2": 2078, "参考值3": 8.21 }, "geometry": { "type": "Point", "coordinates": [ 112.99170060558869, 28.070679041782441 ] } }, { "type": "Feature", "properties": { "id": 22, "geom": "SRID=4326;POINT(112.977717 28.182172)", "零售户": "湖南六三六连锁管理有限公司", "经度": 112.977717, "纬度": 28.182172, "参考值1": 43.96, "参考值2": 975, "参考值3": 7.99 }, "geometry": { "type": "Point", "coordinates": [ 112.971159653981601, 28.176480292304678 ] } }, { "type": "Feature", "properties": { "id": 23, "geom": "SRID=4326;POINT(112.992169 28.147195)", "零售户": "长沙市天心区出入食品店", "经度": 112.992169, "纬度": 28.147195, "参考值1": 53.79, "参考值2": 3906, "参考值3": 7.88 }, "geometry": { "type": "Point", "coordinates": [ 112.985589481385361, 28.14151943622317 ] } }, { "type": "Feature", "properties": { "id": 24, "geom": "SRID=4326;POINT(112.986675 28.134264)", "零售户": "湖南六三六连锁管理有限公司", "经度": 112.986675, "纬度": 28.134264, "参考值1": 41.57, "参考值2": 1121, "参考值3": 7.86 }, "geometry": { "type": "Point", "coordinates": [ 112.980079428890988, 28.128600140362014 ] } }, { "type": "Feature", "properties": { "id": 25, "geom": "SRID=4326;POINT(112.959996 28.098451)", "零售户": "长沙市天心区乘丰超市", "经度": 112.959996, "纬度": 28.098451, "参考值1": 53.83, "参考值2": 3985, "参考值3": 7.86 }, "geometry": { "type": "Point", "coordinates": [ 112.953468883267789, 28.092509753901417 ] } }, { "type": "Feature", "properties": { "id": 26, "geom": "SRID=4326;POINT(112.976804 28.196626)", "零售户": "湖南家润多超市有限公司悦方", "经度": 112.976804, "纬度": 28.196626, "参考值1": 52.49, "参考值2": 3638, "参考值3": 7.64 }, "geometry": { "type": "Point", "coordinates": [ 112.970239240968269, 28.190924447809497 ] } }, { "type": "Feature", "properties": { "id": 27, "geom": "SRID=4326;POINT(112.981979 28.181545)", "零售户": "湖南省酒业有限公司劳动路名", "经度": 112.981979, "纬度": 28.181545, "参考值1": 49.95, "参考值2": 2235, "参考值3": 7.5 }, "geometry": { "type": "Point", "coordinates": [ 112.975415423537626, 28.175879111725646 ] } }, { "type": "Feature", "properties": { "id": 28, "geom": "SRID=4326;POINT(112.974374 28.127552)", "零售户": "长沙市天心区湘栩烟酒商行", "经度": 112.974374, "纬度": 28.127552, "参考值1": 50.07, "参考值2": 3099, "参考值3": 7.47 }, "geometry": { "type": "Point", "coordinates": [ 112.967790111462492, 28.121820884418174 ] } }, { "type": "Feature", "properties": { "id": 29, "geom": "SRID=4326;POINT(112.977267 28.197999)", "零售户": "长沙市天心区特吉便利店", "经度": 112.977267, "纬度": 28.197999, "参考值1": 50.17, "参考值2": 3175, "参考值3": 7.41 }, "geometry": { "type": "Point", "coordinates": [ 112.970700009472324, 28.192301043322729 ] } }, { "type": "Feature", "properties": { "id": 30, "geom": "SRID=4326;POINT(112.988459 28.162269)", "零售户": "中国石油化工股份有限公司湖", "经度": 112.988459, "纬度": 28.162269, "参考值1": 50.03, "参考值2": 3834, "参考值3": 7.2 }, "geometry": { "type": "Point", "coordinates": [ 112.981889577911389, 28.156609803579883 ] } }, { "type": "Feature", "properties": { "id": 31, "geom": "SRID=4326;POINT(112.989437 28.142336)", "零售户": "湖南六三六连锁管理有限公司", "经度": 112.989437, "纬度": 28.142336, "参考值1": 40.55, "参考值2": 1081, "参考值3": 7.06 }, "geometry": { "type": "Point", "coordinates": [ 112.982849886189172, 28.136670027216681 ] } }, { "type": "Feature", "properties": { "id": 32, "geom": "SRID=4326;POINT(112.983537 28.186101)", "零售户": "长沙市天心区好思佳超市", "经度": 112.983537, "纬度": 28.186101, "参考值1": 46.95, "参考值2": 3435, "参考值3": 6.96 }, "geometry": { "type": "Point", "coordinates": [ 112.97697022861351, 28.180440039321752 ] } }, { "type": "Feature", "properties": { "id": 33, "geom": "SRID=4326;POINT(112.968369 28.105898)", "零售户": "长沙市天心区心玉便利店", "经度": 112.968369, "纬度": 28.105898, "参考值1": 46.12, "参考值2": 3000, "参考值3": 6.86 }, "geometry": { "type": "Point", "coordinates": [ 112.961803162468968, 28.100091138487425 ] } }, { "type": "Feature", "properties": { "id": 34, "geom": "SRID=4326;POINT(112.973964 28.135179)", "零售户": "长沙市天心区顺仁便利店", "经度": 112.973964, "纬度": 28.135179, "参考值1": 46.16, "参考值2": 3264, "参考值3": 6.77 }, "geometry": { "type": "Point", "coordinates": [ 112.967386730490958, 28.129444886014142 ] } }, { "type": "Feature", "properties": { "id": 35, "geom": "SRID=4326;POINT(112.998766 28.065487)", "零售户": "长沙市天心区特美汇便利店", "经度": 112.998766, "纬度": 28.065487, "参考值1": 46.41, "参考值2": 3485, "参考值3": 6.48 }, "geometry": { "type": "Point", "coordinates": [ 112.992215658103859, 28.059762674057659 ] } }, { "type": "Feature", "properties": { "id": 36, "geom": "SRID=4326;POINT(112.995021 28.090515)", "零售户": "长沙市天心区信佳百货超市", "经度": 112.995021, "纬度": 28.090515, "参考值1": 44.71, "参考值2": 3127, "参考值3": 6.37 }, "geometry": { "type": "Point", "coordinates": [ 112.988440447651485, 28.084819654650509 ] } }, { "type": "Feature", "properties": { "id": 37, "geom": "SRID=4326;POINT(112.981996 28.181143)", "零售户": "长沙市天心区佳静烟酒店", "经度": 112.981996, "纬度": 28.181143, "参考值1": 42.37, "参考值2": 3020, "参考值3": 6.35 }, "geometry": { "type": "Point", "coordinates": [ 112.975432519918414, 28.175477210463967 ] } }, { "type": "Feature", "properties": { "id": 38, "geom": "SRID=4326;POINT(112.994689 28.132843)", "零售户": "长沙市天心区惠妮便利店", "经度": 112.994689, "纬度": 28.132843, "参考值1": 32.81, "参考值2": 1561, "参考值3": 6.29 }, "geometry": { "type": "Point", "coordinates": [ 112.988099920312621, 28.127148208721774 ] } }, { "type": "Feature", "properties": { "id": 39, "geom": "SRID=4326;POINT(112.967088 28.116005)", "零售户": "长沙市天心区和茂超市", "经度": 112.967088, "纬度": 28.116005, "参考值1": 40.67, "参考值2": 2191, "参考值3": 5.97 }, "geometry": { "type": "Point", "coordinates": [ 112.960524198618785, 28.110178564979908 ] } }, { "type": "Feature", "properties": { "id": 40, "geom": "SRID=4326;POINT(112.992212 28.171671)", "零售户": "长沙市天心区锦升烟酒商贸行", "经度": 112.992212, "纬度": 28.171671, "参考值1": 40.33, "参考值2": 2137, "参考值3": 5.95 }, "geometry": { "type": "Point", "coordinates": [ 112.985650163216164, 28.165999624029446 ] } }, { "type": "Feature", "properties": { "id": 41, "geom": "SRID=4326;POINT(112.989564 28.17171)", "零售户": "湖南家润多超市有限公司南湖", "经度": 112.989564, "纬度": 28.17171, "参考值1": 40.94, "参考值2": 2871, "参考值3": 5.89 }, "geometry": { "type": "Point", "coordinates": [ 112.982999505984452, 28.166049312770372 ] } }, { "type": "Feature", "properties": { "id": 42, "geom": "SRID=4326;POINT(112.986386 28.180696)", "零售户": "湖南家润多超市有限公司长沙", "经度": 112.986386, "纬度": 28.180696, "参考值1": 40.05, "参考值2": 2843, "参考值3": 5.88 }, "geometry": { "type": "Point", "coordinates": [ 112.979820298917602, 28.175039627347562 ] } }, { "type": "Feature", "properties": { "id": 43, "geom": "SRID=4326;POINT(113.00068 28.150175)", "零售户": "长沙市天心区乐盛烟酒商行", "经度": 113.00068, "纬度": 28.150175, "参考值1": 29.89, "参考值2": 1517, "参考值3": 5.85 }, "geometry": { "type": "Point", "coordinates": [ 112.994121998095792, 28.144425812435916 ] } }, { "type": "Feature", "properties": { "id": 44, "geom": "SRID=4326;POINT(112.978064 28.158841)", "零售户": "中国石油化工股份有限公司湖", "经度": 112.978064, "纬度": 28.158841, "参考值1": 40.23, "参考值2": 1682, "参考值3": 5.83 }, "geometry": { "type": "Point", "coordinates": [ 112.971499734056238, 28.153150398656486 ] } }, { "type": "Feature", "properties": { "id": 45, "geom": "SRID=4326;POINT(112.989292 28.084306)", "零售户": "长沙市天心区文标炒货店", "经度": 112.989292, "纬度": 28.084306, "参考值1": 39.08, "参考值2": 2454, "参考值3": 5.79 }, "geometry": { "type": "Point", "coordinates": [ 112.982710382408996, 28.078641760128228 ] } }, { "type": "Feature", "properties": { "id": 46, "geom": "SRID=4326;POINT(112.994689 28.132843)", "零售户": "长沙市天心区炎辉便利店", "经度": 112.994689, "纬度": 28.132843, "参考值1": 40.13, "参考值2": 2679, "参考值3": 5.76 }, "geometry": { "type": "Point", "coordinates": [ 112.988099920312621, 28.127148208721774 ] } }, { "type": "Feature", "properties": { "id": 47, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区郑德食品店", "经度": 112.978226, "纬度": 28.139107, "参考值1": 39.71, "参考值2": 2556, "参考值3": 5.74 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 48, "geom": "SRID=4326;POINT(112.961493 28.074415)", "零售户": "长沙市天心区猫记自选超市", "经度": 112.961493, "纬度": 28.074415, "参考值1": 39.2, "参考值2": 3111, "参考值3": 5.74 }, "geometry": { "type": "Point", "coordinates": [ 112.954982300723202, 28.068505334267456 ] } }, { "type": "Feature", "properties": { "id": 49, "geom": "SRID=4326;POINT(112.97626 28.192146)", "零售户": "湖南六三六连锁管理有限公司", "经度": 112.97626, "纬度": 28.192146, "参考值1": 33.47, "参考值2": 967, "参考值3": 5.62 }, "geometry": { "type": "Point", "coordinates": [ 112.969700180867775, 28.186440563508423 ] } }, { "type": "Feature", "properties": { "id": 50, "geom": "SRID=4326;POINT(112.993044 28.146251)", "零售户": "长沙市天心区合益便利店", "经度": 112.993044, "纬度": 28.146251, "参考值1": 38.95, "参考值2": 2400, "参考值3": 5.61 }, "geometry": { "type": "Point", "coordinates": [ 112.986464741225703, 28.14057031930329 ] } }, { "type": "Feature", "properties": { "id": 51, "geom": "SRID=4326;POINT(112.974542 28.148862)", "零售户": "长沙市天心区广亮超市", "经度": 112.974542, "纬度": 28.148862, "参考值1": 37.97, "参考值2": 2433, "参考值3": 5.59 }, "geometry": { "type": "Point", "coordinates": [ 112.9679764838572, 28.143137338315356 ] } }, { "type": "Feature", "properties": { "id": 52, "geom": "SRID=4326;POINT(112.985543 28.169864)", "零售户": "长沙市天心区楷楷便利店", "经度": 112.985543, "纬度": 28.169864, "参考值1": 39.13, "参考值2": 2820, "参考值3": 5.54 }, "geometry": { "type": "Point", "coordinates": [ 112.978977027079523, 28.164207101737276 ] } }, { "type": "Feature", "properties": { "id": 53, "geom": "SRID=4326;POINT(112.986748 28.178215)", "零售户": "长沙市天心区旺之角食杂店", "经度": 112.986748, "纬度": 28.178215, "参考值1": 37.31, "参考值2": 2930, "参考值3": 5.47 }, "geometry": { "type": "Point", "coordinates": [ 112.980182765383688, 28.172558718528109 ] } }, { "type": "Feature", "properties": { "id": 54, "geom": "SRID=4326;POINT(112.990224 28.154005)", "零售户": "购宝乐商业(湖南)有限公司", "经度": 112.990224, "纬度": 28.154005, "参考值1": 37.69, "参考值2": 2516, "参考值3": 5.47 }, "geometry": { "type": "Point", "coordinates": [ 112.983649053805777, 28.14833949561384 ] } }, { "type": "Feature", "properties": { "id": 55, "geom": "SRID=4326;POINT(112.999984 28.118516)", "零售户": "长沙市天心区锦南商贸行", "经度": 112.999984, "纬度": 28.118516, "参考值1": 36.17, "参考值2": 1722, "参考值3": 5.43 }, "geometry": { "type": "Point", "coordinates": [ 112.99340058291979, 28.112769160076255 ] } }, { "type": "Feature", "properties": { "id": 56, "geom": "SRID=4326;POINT(112.978921 28.184954)", "零售户": "长沙市天心区天更旺食杂店", "经度": 112.978921, "纬度": 28.184954, "参考值1": 37.96, "参考值2": 2320, "参考值3": 5.42 }, "geometry": { "type": "Point", "coordinates": [ 112.972360343706498, 28.179270897553813 ] } }, { "type": "Feature", "properties": { "id": 57, "geom": "SRID=4326;POINT(112.979119 28.13983)", "零售户": "长沙市天心区礼林超市", "经度": 112.979119, "纬度": 28.13983, "参考值1": 36.79, "参考值2": 2788, "参考值3": 5.3 }, "geometry": { "type": "Point", "coordinates": [ 112.972534661797852, 28.134142386845042 ] } }, { "type": "Feature", "properties": { "id": 58, "geom": "SRID=4326;POINT(112.995021 28.090515)", "零售户": "长沙市天心区勋坨便利店", "经度": 112.995021, "纬度": 28.090515, "参考值1": 37.17, "参考值2": 2762, "参考值3": 5.28 }, "geometry": { "type": "Point", "coordinates": [ 112.988440447651485, 28.084819654650509 ] } }, { "type": "Feature", "properties": { "id": 59, "geom": "SRID=4326;POINT(112.998943 28.128323)", "零售户": "长沙市天心区芳庭便利超市", "经度": 112.998943, "纬度": 28.128323, "参考值1": 36.38, "参考值2": 2486, "参考值3": 5.15 }, "geometry": { "type": "Point", "coordinates": [ 112.99236040771298, 28.122588684072415 ] } }, { "type": "Feature", "properties": { "id": 60, "geom": "SRID=4326;POINT(112.982664 28.178103)", "零售户": "长沙市天心区晓秀便利店", "经度": 112.982664, "纬度": 28.178103, "参考值1": 34.51, "参考值2": 2158, "参考值3": 5.12 }, "geometry": { "type": "Point", "coordinates": [ 112.976100470459087, 28.172439924674297 ] } }, { "type": "Feature", "properties": { "id": 61, "geom": "SRID=4326;POINT(112.982817 28.199596)", "零售户": "湖南友谊阿波罗商业股份有限", "经度": 112.982817, "纬度": 28.199596, "参考值1": 34.68, "参考值2": 1542, "参考值3": 5.07 }, "geometry": { "type": "Point", "coordinates": [ 112.976240371995885, 28.193930239850694 ] } }, { "type": "Feature", "properties": { "id": 62, "geom": "SRID=4326;POINT(112.981923 28.199233)", "零售户": "长沙市天心区鹏蓉便利店", "经度": 112.981923, "纬度": 28.199233, "参考值1": 34.9, "参考值2": 2172, "参考值3": 5.05 }, "geometry": { "type": "Point", "coordinates": [ 112.975347569600686, 28.193563920064523 ] } }, { "type": "Feature", "properties": { "id": 63, "geom": "SRID=4326;POINT(112.992392 28.171671)", "零售户": "长沙市天心区上辉便利店", "经度": 112.992392, "纬度": 28.171671, "参考值1": 33.59, "参考值2": 2468, "参考值3": 4.91 }, "geometry": { "type": "Point", "coordinates": [ 112.985830401445213, 28.165998668907282 ] } }, { "type": "Feature", "properties": { "id": 64, "geom": "SRID=4326;POINT(112.978939 28.196076)", "零售户": "长沙市天心区坡子街吉尔多自", "经度": 112.978939, "纬度": 28.196076, "参考值1": 31.97, "参考值2": 1742, "参考值3": 4.76 }, "geometry": { "type": "Point", "coordinates": [ 112.972370606169363, 28.190391107208278 ] } }, { "type": "Feature", "properties": { "id": 65, "geom": "SRID=4326;POINT(112.993345 28.190259)", "零售户": "湖南六三六连锁管理有限公司", "经度": 112.993345, "纬度": 28.190259, "参考值1": 30.38, "参考值2": 1379, "参考值3": 4.62 }, "geometry": { "type": "Point", "coordinates": [ 112.986780063004431, 28.184579975287274 ] } }, { "type": "Feature", "properties": { "id": 66, "geom": "SRID=4326;POINT(112.978357 28.141391)", "零售户": "长沙市天心区新开铺路蔚然锦", "经度": 112.978357, "纬度": 28.141391, "参考值1": 31.9, "参考值2": 2091, "参考值3": 4.6 }, "geometry": { "type": "Point", "coordinates": [ 112.971775511772364, 28.135698418731781 ] } }, { "type": "Feature", "properties": { "id": 67, "geom": "SRID=4326;POINT(113.008231 28.170182)", "零售户": "长沙市天心区绿友超市", "经度": 113.008231, "纬度": 28.170182, "参考值1": 30.77, "参考值2": 1794, "参考值3": 4.59 }, "geometry": { "type": "Point", "coordinates": [ 113.001714062785084, 28.164328848107829 ] } }, { "type": "Feature", "properties": { "id": 68, "geom": "SRID=4326;POINT(112.981352 28.155661)", "零售户": "长沙市天心区吉玺多超市", "经度": 112.981352, "纬度": 28.155661, "参考值1": 31.67, "参考值2": 2018, "参考值3": 4.51 }, "geometry": { "type": "Point", "coordinates": [ 112.974780003382264, 28.149990029346785 ] } }, { "type": "Feature", "properties": { "id": 69, "geom": "SRID=4326;POINT(112.990895 28.179295)", "零售户": "长沙市天心区升尚烟酒店", "经度": 112.990895, "纬度": 28.179295, "参考值1": 29.55, "参考值2": 1317, "参考值3": 4.42 }, "geometry": { "type": "Point", "coordinates": [ 112.984331825373431, 28.173629784962852 ] } }, { "type": "Feature", "properties": { "id": 70, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区宁珊便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 30.31, "参考值2": 2291, "参考值3": 4.36 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 71, "geom": "SRID=4326;POINT(112.987905 28.176716)", "零售户": "长沙市天心区西林便利店", "经度": 112.987905, "纬度": 28.176716, "参考值1": 30.31, "参考值2": 2148, "参考值3": 4.31 }, "geometry": { "type": "Point", "coordinates": [ 112.981340108141424, 28.1710588626404 ] } }, { "type": "Feature", "properties": { "id": 72, "geom": "SRID=4326;POINT(112.983791 28.178245)", "零售户": "长沙市天心区龙康烟店", "经度": 112.983791, "纬度": 28.178245, "参考值1": 29.92, "参考值2": 2274, "参考值3": 4.31 }, "geometry": { "type": "Point", "coordinates": [ 112.977226603385603, 28.172585333629833 ] } }, { "type": "Feature", "properties": { "id": 73, "geom": "SRID=4326;POINT(112.974496 28.123642)", "零售户": "长沙市天心区丹君便利店", "经度": 112.974496, "纬度": 28.123642, "参考值1": 20.34, "参考值2": 1113, "参考值3": 4.28 }, "geometry": { "type": "Point", "coordinates": [ 112.967909892298778, 28.117911688205897 ] } }, { "type": "Feature", "properties": { "id": 74, "geom": "SRID=4326;POINT(113.007841 28.141801)", "零售户": "长沙市天心区士加便利店", "经度": 113.007841, "纬度": 28.141801, "参考值1": 30.04, "参考值2": 2088, "参考值3": 4.27 }, "geometry": { "type": "Point", "coordinates": [ 113.001299795974262, 28.13594843336406 ] } }, { "type": "Feature", "properties": { "id": 75, "geom": "SRID=4326;POINT(112.976959 28.187324)", "零售户": "长沙市天心区树诚食品店", "经度": 112.976959, "纬度": 28.187324, "参考值1": 28.46, "参考值2": 1863, "参考值3": 4.26 }, "geometry": { "type": "Point", "coordinates": [ 112.970400880725819, 28.181625507744918 ] } }, { "type": "Feature", "properties": { "id": 76, "geom": "SRID=4326;POINT(112.979057 28.195103)", "零售户": "长沙市天心区彩隆食品店", "经度": 112.979057, "纬度": 28.195103, "参考值1": 29.05, "参考值2": 1865, "参考值3": 4.25 }, "geometry": { "type": "Point", "coordinates": [ 112.97248925412913, 28.189419119901558 ] } }, { "type": "Feature", "properties": { "id": 77, "geom": "SRID=4326;POINT(113.004871 28.132908)", "零售户": "长沙市天心区奔富便利店", "经度": 113.004871, "纬度": 28.132908, "参考值1": 29.54, "参考值2": 1883, "参考值3": 4.25 }, "geometry": { "type": "Point", "coordinates": [ 112.99831045122329, 28.127098833285554 ] } }, { "type": "Feature", "properties": { "id": 78, "geom": "SRID=4326;POINT(112.993345 28.190259)", "零售户": "湖南六三六连锁管理有限公司", "经度": 112.993345, "纬度": 28.190259, "参考值1": 27.91, "参考值2": 1230, "参考值3": 4.23 }, "geometry": { "type": "Point", "coordinates": [ 112.986780063004431, 28.184579975287274 ] } }, { "type": "Feature", "properties": { "id": 79, "geom": "SRID=4326;POINT(112.984441 28.125457)", "零售户": "长沙市天心区豪洁烟酒商行", "经度": 112.984441, "纬度": 28.125457, "参考值1": 19.84, "参考值2": 916, "参考值3": 4.22 }, "geometry": { "type": "Point", "coordinates": [ 112.97784005410837, 28.119789715577102 ] } }, { "type": "Feature", "properties": { "id": 80, "geom": "SRID=4326;POINT(112.962189 28.061342)", "零售户": "长沙市天心区从根日用品商店", "经度": 112.962189, "纬度": 28.061342, "参考值1": 28.49, "参考值2": 1973, "参考值3": 4.16 }, "geometry": { "type": "Point", "coordinates": [ 112.955682953983768, 28.055446087680902 ] } }, { "type": "Feature", "properties": { "id": 81, "geom": "SRID=4326;POINT(113.00536 28.131126)", "零售户": "长沙市天心区李南超市", "经度": 113.00536, "纬度": 28.131126, "参考值1": 27.39, "参考值2": 1253, "参考值3": 4.14 }, "geometry": { "type": "Point", "coordinates": [ 112.998799895641838, 28.125309316685311 ] } }, { "type": "Feature", "properties": { "id": 82, "geom": "SRID=4326;POINT(112.982223 28.196508)", "零售户": "湖南购玖电子商务有限公司万", "经度": 112.982223, "纬度": 28.196508, "参考值1": 26.52, "参考值2": 1125, "参考值3": 4.09 }, "geometry": { "type": "Point", "coordinates": [ 112.975649791917519, 28.190840772497353 ] } }, { "type": "Feature", "properties": { "id": 83, "geom": "SRID=4326;POINT(112.997284 28.141004)", "零售户": "长沙市天心区青园路艾百客食", "经度": 112.997284, "纬度": 28.141004, "参考值1": 28.21, "参考值2": 2088, "参考值3": 4.0 }, "geometry": { "type": "Point", "coordinates": [ 112.990707677190429, 28.135289106018089 ] } }, { "type": "Feature", "properties": { "id": 84, "geom": "SRID=4326;POINT(112.978939 28.196076)", "零售户": "长沙市天心区春武便利店", "经度": 112.978939, "纬度": 28.196076, "参考值1": 27.96, "参考值2": 1998, "参考值3": 3.98 }, "geometry": { "type": "Point", "coordinates": [ 112.972370606169363, 28.190391107208278 ] } }, { "type": "Feature", "properties": { "id": 85, "geom": "SRID=4326;POINT(112.991703 28.153791)", "零售户": "长沙市天心区恩佳便利店", "经度": 112.991703, "纬度": 28.153791, "参考值1": 28.16, "参考值2": 2148, "参考值3": 3.95 }, "geometry": { "type": "Point", "coordinates": [ 112.985129369380545, 28.148119372970797 ] } }, { "type": "Feature", "properties": { "id": 86, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区利之群超市", "经度": 112.978226, "纬度": 28.139107, "参考值1": 26.99, "参考值2": 1811, "参考值3": 3.86 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 87, "geom": "SRID=4326;POINT(113.001989 28.134158)", "零售户": "湖南六三六连锁管理有限公司", "经度": 113.001989, "纬度": 28.134158, "参考值1": 21.87, "参考值2": 563, "参考值3": 3.79 }, "geometry": { "type": "Point", "coordinates": [ 112.995419600792474, 28.128388677112842 ] } }, { "type": "Feature", "properties": { "id": 88, "geom": "SRID=4326;POINT(112.993223 28.13976)", "零售户": "长沙市天心区高楚烟酒店", "经度": 112.993223, "纬度": 28.13976, "参考值1": 25.69, "参考值2": 1552, "参考值3": 3.73 }, "geometry": { "type": "Point", "coordinates": [ 112.986637545104685, 28.134076623958318 ] } }, { "type": "Feature", "properties": { "id": 89, "geom": "SRID=4326;POINT(112.979239 28.195903)", "零售户": "长沙市天心区渝申烟店", "经度": 112.979239, "纬度": 28.195903, "参考值1": 25.14, "参考值2": 1349, "参考值3": 3.72 }, "geometry": { "type": "Point", "coordinates": [ 112.972670256191051, 28.190220160325026 ] } }, { "type": "Feature", "properties": { "id": 90, "geom": "SRID=4326;POINT(112.991274 28.151008)", "零售户": "长沙市天心区美蓝便利店", "经度": 112.991274, "纬度": 28.151008, "参考值1": 25.38, "参考值2": 1491, "参考值3": 3.66 }, "geometry": { "type": "Point", "coordinates": [ 112.984697219401909, 28.145337672973561 ] } }, { "type": "Feature", "properties": { "id": 91, "geom": "SRID=4326;POINT(112.982843 28.186316)", "零售户": "长沙市天心区乐中食品店", "经度": 112.982843, "纬度": 28.186316, "参考值1": 24.92, "参考值2": 1857, "参考值3": 3.66 }, "geometry": { "type": "Point", "coordinates": [ 112.976276646410298, 28.180652885860873 ] } }, { "type": "Feature", "properties": { "id": 92, "geom": "SRID=4326;POINT(112.989292 28.084306)", "零售户": "长沙市天心区江小白便利店", "经度": 112.989292, "纬度": 28.084306, "参考值1": 25.96, "参考值2": 1729, "参考值3": 3.65 }, "geometry": { "type": "Point", "coordinates": [ 112.982710382408996, 28.078641760128228 ] } }, { "type": "Feature", "properties": { "id": 93, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区文浩杰食品店", "经度": 112.978226, "纬度": 28.139107, "参考值1": 25.79, "参考值2": 1811, "参考值3": 3.65 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 94, "geom": "SRID=4326;POINT(112.997585 28.080054)", "零售户": "长沙市天心区杨小珍食品店", "经度": 112.997585, "纬度": 28.080054, "参考值1": 25.09, "参考值2": 1558, "参考值3": 3.64 }, "geometry": { "type": "Point", "coordinates": [ 112.991020515598663, 28.07433893964452 ] } }, { "type": "Feature", "properties": { "id": 95, "geom": "SRID=4326;POINT(112.977289 28.171582)", "零售户": "长沙市天心区佳柯生鲜超市", "经度": 112.977289, "纬度": 28.171582, "参考值1": 24.82, "参考值2": 1518, "参考值3": 3.64 }, "geometry": { "type": "Point", "coordinates": [ 112.970733029880392, 28.16588696418733 ] } }, { "type": "Feature", "properties": { "id": 96, "geom": "SRID=4326;POINT(113.006438 28.128063)", "零售户": "湖南购玖电子商务有限公司万", "经度": 113.006438, "纬度": 28.128063, "参考值1": 24.13, "参考值2": 1023, "参考值3": 3.64 }, "geometry": { "type": "Point", "coordinates": [ 112.999879916126318, 28.122229553825736 ] } }, { "type": "Feature", "properties": { "id": 97, "geom": "SRID=4326;POINT(112.985479 28.187478)", "零售户": "长沙市天心区伊霞食品店", "经度": 112.985479, "纬度": 28.187478, "参考值1": 25.12, "参考值2": 1795, "参考值3": 3.63 }, "geometry": { "type": "Point", "coordinates": [ 112.978910580980838, 28.18182044497339 ] } }, { "type": "Feature", "properties": { "id": 98, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "湖南电力服务有限公司电力超", "经度": 112.996195, "纬度": 28.144471, "参考值1": 25.5, "参考值2": 1423, "参考值3": 3.61 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 99, "geom": "SRID=4326;POINT(112.996416 28.114412)", "零售户": "长沙市天心区豪泰烟酒店", "经度": 112.996416, "纬度": 28.114412, "参考值1": 24.82, "参考值2": 1554, "参考值3": 3.61 }, "geometry": { "type": "Point", "coordinates": [ 112.989823445692707, 28.108701487312548 ] } }, { "type": "Feature", "properties": { "id": 100, "geom": "SRID=4326;POINT(112.989058 28.1747)", "零售户": "长沙市天心区鑫义兴便利店", "经度": 112.989058, "纬度": 28.1747, "参考值1": 25.79, "参考值2": 2228, "参考值3": 3.58 }, "geometry": { "type": "Point", "coordinates": [ 112.982493611248188, 28.169040739026954 ] } }, { "type": "Feature", "properties": { "id": 101, "geom": "SRID=4326;POINT(112.981626 28.088578)", "零售户": "长沙市天心区林香便利店", "经度": 112.981626, "纬度": 28.088578, "参考值1": 25.15, "参考值2": 1854, "参考值3": 3.56 }, "geometry": { "type": "Point", "coordinates": [ 112.975041868383201, 28.082905298970044 ] } }, { "type": "Feature", "properties": { "id": 102, "geom": "SRID=4326;POINT(112.981626 28.088578)", "零售户": "长沙市天心区德莉副食品批发", "经度": 112.981626, "纬度": 28.088578, "参考值1": 24.6, "参考值2": 1763, "参考值3": 3.54 }, "geometry": { "type": "Point", "coordinates": [ 112.975041868383201, 28.082905298970044 ] } }, { "type": "Feature", "properties": { "id": 103, "geom": "SRID=4326;POINT(112.981527 28.128517)", "零售户": "长沙市天心区蒲妃超市", "经度": 112.981527, "纬度": 28.128517, "参考值1": 24.2, "参考值2": 1623, "参考值3": 3.5 }, "geometry": { "type": "Point", "coordinates": [ 112.974930089278274, 28.122840669854515 ] } }, { "type": "Feature", "properties": { "id": 104, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区阿戴便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 24.02, "参考值2": 1740, "参考值3": 3.44 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 105, "geom": "SRID=4326;POINT(112.97205 28.111479)", "零售户": "长沙市天心区坤哲同心便利店", "经度": 112.97205, "纬度": 28.111479, "参考值1": 24.1, "参考值2": 1770, "参考值3": 3.41 }, "geometry": { "type": "Point", "coordinates": [ 112.965469819936729, 28.105720742649307 ] } }, { "type": "Feature", "properties": { "id": 106, "geom": "SRID=4326;POINT(112.989996 28.152285)", "零售户": "长沙市天心区王艳红便利店", "经度": 112.989996, "纬度": 28.152285, "参考值1": 23.81, "参考值2": 1530, "参考值3": 3.4 }, "geometry": { "type": "Point", "coordinates": [ 112.983419243164647, 28.146619849978141 ] } }, { "type": "Feature", "properties": { "id": 107, "geom": "SRID=4326;POINT(112.976316 28.198877)", "零售户": "长沙市天心区贺坤烟店", "经度": 112.976316, "纬度": 28.198877, "参考值1": 23.9, "参考值2": 1907, "参考值3": 3.4 }, "geometry": { "type": "Point", "coordinates": [ 112.969750233796645, 28.193170622504176 ] } }, { "type": "Feature", "properties": { "id": 108, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区海强食品店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 22.87, "参考值2": 1315, "参考值3": 3.39 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 109, "geom": "SRID=4326;POINT(112.977704 28.169187)", "零售户": "长沙市天心区卓群食品店", "经度": 112.977704, "纬度": 28.169187, "参考值1": 22.9, "参考值2": 1562, "参考值3": 3.38 }, "geometry": { "type": "Point", "coordinates": [ 112.971146497765417, 28.16349513368084 ] } }, { "type": "Feature", "properties": { "id": 110, "geom": "SRID=4326;POINT(112.985963 28.111196)", "零售户": "长沙市天心区紫荆花便利店", "经度": 112.985963, "纬度": 28.111196, "参考值1": 23.6, "参考值2": 1557, "参考值3": 3.37 }, "geometry": { "type": "Point", "coordinates": [ 112.979359919527013, 28.105530128045139 ] } }, { "type": "Feature", "properties": { "id": 111, "geom": "SRID=4326;POINT(112.9808 28.185823)", "零售户": "长沙市天心区罗建国便利店", "经度": 112.9808, "纬度": 28.185823, "参考值1": 22.38, "参考值2": 1452, "参考值3": 3.32 }, "geometry": { "type": "Point", "coordinates": [ 112.974236092078385, 28.180151154236366 ] } }, { "type": "Feature", "properties": { "id": 112, "geom": "SRID=4326;POINT(113.000413 28.118306)", "零售户": "长沙市天心区虹焱便利店", "经度": 113.000413, "纬度": 28.118306, "参考值1": 21.89, "参考值2": 1240, "参考值3": 3.32 }, "geometry": { "type": "Point", "coordinates": [ 112.993830801727967, 28.112554149503023 ] } }, { "type": "Feature", "properties": { "id": 113, "geom": "SRID=4326;POINT(113.000413 28.118306)", "零售户": "长沙市天心区雄振烟酒超市", "经度": 113.000413, "纬度": 28.118306, "参考值1": 22.87, "参考值2": 1536, "参考值3": 3.29 }, "geometry": { "type": "Point", "coordinates": [ 112.993830801727967, 28.112554149503023 ] } }, { "type": "Feature", "properties": { "id": 114, "geom": "SRID=4326;POINT(112.999679 28.066093)", "零售户": "长沙爱智玖电子商务有限公司", "经度": 112.999679, "纬度": 28.066093, "参考值1": 22.19, "参考值2": 915, "参考值3": 3.28 }, "geometry": { "type": "Point", "coordinates": [ 112.993130841176679, 28.060358588311317 ] } }, { "type": "Feature", "properties": { "id": 115, "geom": "SRID=4326;POINT(113.000722 28.117585)", "零售户": "长沙市天心区白沙世纪佳园福", "经度": 113.000722, "纬度": 28.117585, "参考值1": 21.86, "参考值2": 1224, "参考值3": 3.17 }, "geometry": { "type": "Point", "coordinates": [ 112.994140645390885, 28.111829447621929 ] } }, { "type": "Feature", "properties": { "id": 116, "geom": "SRID=4326;POINT(112.97966 28.178438)", "零售户": "长沙市天心区同实超市", "经度": 112.97966, "纬度": 28.178438, "参考值1": 21.87, "参考值2": 1560, "参考值3": 3.14 }, "geometry": { "type": "Point", "coordinates": [ 112.973100092672823, 28.172760214825342 ] } }, { "type": "Feature", "properties": { "id": 117, "geom": "SRID=4326;POINT(112.998695 28.106111)", "零售户": "南鑫南食店", "经度": 112.998695, "纬度": 28.106111, "参考值1": 21.81, "参考值2": 1514, "参考值3": 3.14 }, "geometry": { "type": "Point", "coordinates": [ 112.992110444101883, 28.100378995025462 ] } }, { "type": "Feature", "properties": { "id": 118, "geom": "SRID=4326;POINT(112.995092 28.091356)", "零售户": "长沙市天心区杰仔便利店", "经度": 112.995092, "纬度": 28.091356, "参考值1": 21.73, "参考值2": 1389, "参考值3": 3.13 }, "geometry": { "type": "Point", "coordinates": [ 112.988510754830372, 28.085659903574431 ] } }, { "type": "Feature", "properties": { "id": 119, "geom": "SRID=4326;POINT(112.978698 28.183934)", "零售户": "长沙市天心区吉尔多超市", "经度": 112.978698, "纬度": 28.183934, "参考值1": 21.77, "参考值2": 1372, "参考值3": 3.12 }, "geometry": { "type": "Point", "coordinates": [ 112.972138176745133, 28.17824945662257 ] } }, { "type": "Feature", "properties": { "id": 120, "geom": "SRID=4326;POINT(112.976316 28.198877)", "零售户": "长沙市天心区赵旭烟店", "经度": 112.976316, "纬度": 28.198877, "参考值1": 21.77, "参考值2": 1644, "参考值3": 3.09 }, "geometry": { "type": "Point", "coordinates": [ 112.969750233796645, 28.193170622504176 ] } }, { "type": "Feature", "properties": { "id": 121, "geom": "SRID=4326;POINT(113.01749 28.116513)", "零售户": "长沙市天心区来就发批发超市", "经度": 113.01749, "纬度": 28.116513, "参考值1": 21.16, "参考值2": 1203, "参考值3": 3.08 }, "geometry": { "type": "Point", "coordinates": [ 113.010974967890775, 28.110490607687304 ] } }, { "type": "Feature", "properties": { "id": 122, "geom": "SRID=4326;POINT(112.97205 28.111479)", "零售户": "天心区黑石铺综合批发部", "经度": 112.97205, "纬度": 28.111479, "参考值1": 21.67, "参考值2": 1474, "参考值3": 3.07 }, "geometry": { "type": "Point", "coordinates": [ 112.965469819936729, 28.105720742649307 ] } }, { "type": "Feature", "properties": { "id": 123, "geom": "SRID=4326;POINT(112.986699 28.188437)", "零售户": "长沙市天心区博中便利店", "经度": 112.986699, "纬度": 28.188437, "参考值1": 21.69, "参考值2": 1473, "参考值3": 3.05 }, "geometry": { "type": "Point", "coordinates": [ 112.980129890964122, 28.182779772115396 ] } }, { "type": "Feature", "properties": { "id": 124, "geom": "SRID=4326;POINT(112.981626 28.088578)", "零售户": "长沙市天心区盈丰烟酒商行", "经度": 112.981626, "纬度": 28.088578, "参考值1": 20.85, "参考值2": 1321, "参考值3": 3.04 }, "geometry": { "type": "Point", "coordinates": [ 112.975041868383201, 28.082905298970044 ] } }, { "type": "Feature", "properties": { "id": 125, "geom": "SRID=4326;POINT(112.999459 28.065801)", "零售户": "长沙市天心区交科便利店", "经度": 112.999459, "纬度": 28.065801, "参考值1": 20.86, "参考值2": 1285, "参考值3": 3.02 }, "geometry": { "type": "Point", "coordinates": [ 112.992910376570563, 28.060069092715811 ] } }, { "type": "Feature", "properties": { "id": 126, "geom": "SRID=4326;POINT(113.005891 28.202611)", "零售户": "长沙市天心区兰姐烟店", "经度": 113.005891, "纬度": 28.202611, "参考值1": 20.87, "参考值2": 1696, "参考值3": 2.99 }, "geometry": { "type": "Point", "coordinates": [ 112.999349816209858, 28.196790627490287 ] } }, { "type": "Feature", "properties": { "id": 127, "geom": "SRID=4326;POINT(112.978501 28.145612)", "零售户": "长沙市天心区德岚生活超市", "经度": 112.978501, "纬度": 28.145612, "参考值1": 20.59, "参考值2": 1374, "参考值3": 2.98 }, "geometry": { "type": "Point", "coordinates": [ 112.971923483095267, 28.139921524086752 ] } }, { "type": "Feature", "properties": { "id": 128, "geom": "SRID=4326;POINT(112.995261 28.068772)", "零售户": "长沙市天心区尚心居便利店", "经度": 112.995261, "纬度": 28.068772, "参考值1": 20.61, "参考值2": 1479, "参考值3": 2.97 }, "geometry": { "type": "Point", "coordinates": [ 112.988700744204166, 28.06307970564572 ] } }, { "type": "Feature", "properties": { "id": 129, "geom": "SRID=4326;POINT(112.992863 28.132092)", "零售户": "长沙市天心区林帅超市", "经度": 112.992863, "纬度": 28.132092, "参考值1": 20.46, "参考值2": 1320, "参考值3": 2.97 }, "geometry": { "type": "Point", "coordinates": [ 112.986270344428945, 28.126409104769536 ] } }, { "type": "Feature", "properties": { "id": 130, "geom": "SRID=4326;POINT(112.990867 28.069386)", "零售户": "长沙市天心区云盈便利店", "经度": 112.990867, "纬度": 28.069386, "参考值1": 20.56, "参考值2": 1397, "参考值3": 2.96 }, "geometry": { "type": "Point", "coordinates": [ 112.984299835272822, 28.063719815424029 ] } }, { "type": "Feature", "properties": { "id": 131, "geom": "SRID=4326;POINT(112.981626 28.088578)", "零售户": "长沙市天心区豪鑫烟酒行", "经度": 112.981626, "纬度": 28.088578, "参考值1": 20.55, "参考值2": 1065, "参考值3": 2.96 }, "geometry": { "type": "Point", "coordinates": [ 112.975041868383201, 28.082905298970044 ] } }, { "type": "Feature", "properties": { "id": 132, "geom": "SRID=4326;POINT(112.993345 28.190259)", "零售户": "长沙市天心区恒霞便利店", "经度": 112.993345, "纬度": 28.190259, "参考值1": 20.46, "参考值2": 1394, "参考值3": 2.95 }, "geometry": { "type": "Point", "coordinates": [ 112.986780063004431, 28.184579975287274 ] } }, { "type": "Feature", "properties": { "id": 133, "geom": "SRID=4326;POINT(112.989437 28.142336)", "零售户": "长沙市天心区盈梦便利店", "经度": 112.989437, "纬度": 28.142336, "参考值1": 20.2, "参考值2": 1332, "参考值3": 2.95 }, "geometry": { "type": "Point", "coordinates": [ 112.982849886189172, 28.136670027216681 ] } }, { "type": "Feature", "properties": { "id": 134, "geom": "SRID=4326;POINT(112.976316 28.198877)", "零售户": "长沙市天心区俞迈林烟店", "经度": 112.976316, "纬度": 28.198877, "参考值1": 20.47, "参考值2": 1369, "参考值3": 2.95 }, "geometry": { "type": "Point", "coordinates": [ 112.969750233796645, 28.193170622504176 ] } }, { "type": "Feature", "properties": { "id": 135, "geom": "SRID=4326;POINT(112.982776 28.178961)", "零售户": "长沙市天心区如佳便利店", "经度": 112.982776, "纬度": 28.178961, "参考值1": 20.55, "参考值2": 1488, "参考值3": 2.94 }, "geometry": { "type": "Point", "coordinates": [ 112.976212255212872, 28.173298287220383 ] } }, { "type": "Feature", "properties": { "id": 136, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区吉喜便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 20.63, "参考值2": 1407, "参考值3": 2.92 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 137, "geom": "SRID=4326;POINT(112.983307 28.187372)", "零售户": "长沙市天心区兵文食品店", "经度": 112.983307, "纬度": 28.187372, "参考值1": 20.15, "参考值2": 1450, "参考值3": 2.92 }, "geometry": { "type": "Point", "coordinates": [ 112.976739699960618, 28.181710212183873 ] } }, { "type": "Feature", "properties": { "id": 138, "geom": "SRID=4326;POINT(112.980177 28.191177)", "零售户": "长沙市天心区冬平食品店", "经度": 112.980177, "纬度": 28.191177, "参考值1": 20.79, "参考值2": 1654, "参考值3": 2.92 }, "geometry": { "type": "Point", "coordinates": [ 112.973610629622812, 28.185500907150043 ] } }, { "type": "Feature", "properties": { "id": 139, "geom": "SRID=4326;POINT(113.001824 28.13047)", "零售户": "长沙市天心区洋坨超市", "经度": 113.001824, "纬度": 28.13047, "参考值1": 20.08, "参考值2": 1324, "参考值3": 2.91 }, "geometry": { "type": "Point", "coordinates": [ 112.995251260477048, 28.124702089273061 ] } }, { "type": "Feature", "properties": { "id": 140, "geom": "SRID=4326;POINT(112.998943 28.128323)", "零售户": "长沙市天心区晓丹超市", "经度": 112.998943, "纬度": 28.128323, "参考值1": 20.55, "参考值2": 1330, "参考值3": 2.9 }, "geometry": { "type": "Point", "coordinates": [ 112.99236040771298, 28.122588684072415 ] } }, { "type": "Feature", "properties": { "id": 141, "geom": "SRID=4326;POINT(112.999459 28.065801)", "零售户": "长沙市天心区新桂烟酒行", "经度": 112.999459, "纬度": 28.065801, "参考值1": 20.37, "参考值2": 1330, "参考值3": 2.9 }, "geometry": { "type": "Point", "coordinates": [ 112.992910376570563, 28.060069092715811 ] } }, { "type": "Feature", "properties": { "id": 142, "geom": "SRID=4326;POINT(113.008269 28.131261)", "零售户": "长沙市天心区王星城食品店", "经度": 113.008269, "纬度": 28.131261, "参考值1": 19.81, "参考值2": 1164, "参考值3": 2.87 }, "geometry": { "type": "Point", "coordinates": [ 113.001720216782473, 28.125399252821722 ] } }, { "type": "Feature", "properties": { "id": 143, "geom": "SRID=4326;POINT(113.003756 28.144815)", "零售户": "长沙市天心区南园金喜超市", "经度": 113.003756, "纬度": 28.144815, "参考值1": 19.6, "参考值2": 1263, "参考值3": 2.87 }, "geometry": { "type": "Point", "coordinates": [ 112.9972025555427, 28.139024484388379 ] } }, { "type": "Feature", "properties": { "id": 144, "geom": "SRID=4326;POINT(113.006571 28.120925)", "零售户": "长沙市天心区亲缘便利店", "经度": 113.006571, "纬度": 28.120925, "参考值1": 20.16, "参考值2": 1374, "参考值3": 2.87 }, "geometry": { "type": "Point", "coordinates": [ 113.000010332775133, 28.11508873826579 ] } }, { "type": "Feature", "properties": { "id": 145, "geom": "SRID=4326;POINT(112.978688 28.19385)", "零售户": "长沙市天心区姣春食品店", "经度": 112.978688, "纬度": 28.19385, "参考值1": 19.89, "参考值2": 1439, "参考值3": 2.86 }, "geometry": { "type": "Point", "coordinates": [ 112.972121941057907, 28.188163834144799 ] } }, { "type": "Feature", "properties": { "id": 146, "geom": "SRID=4326;POINT(112.989292 28.084306)", "零售户": "长沙市天心区喜致商行", "经度": 112.989292, "纬度": 28.084306, "参考值1": 19.04, "参考值2": 1210, "参考值3": 2.84 }, "geometry": { "type": "Point", "coordinates": [ 112.982710382408996, 28.078641760128228 ] } }, { "type": "Feature", "properties": { "id": 147, "geom": "SRID=4326;POINT(113.010663 28.130285)", "零售户": "长沙市天心区阿彭便利超市", "经度": 113.010663, "纬度": 28.130285, "参考值1": 19.5, "参考值2": 1118, "参考值3": 2.84 }, "geometry": { "type": "Point", "coordinates": [ 113.004123385565919, 28.124383464143584 ] } }, { "type": "Feature", "properties": { "id": 148, "geom": "SRID=4326;POINT(112.999459 28.065801)", "零售户": "长沙市天心区汇展食品店", "经度": 112.999459, "纬度": 28.065801, "参考值1": 19.43, "参考值2": 1048, "参考值3": 2.83 }, "geometry": { "type": "Point", "coordinates": [ 112.992910376570563, 28.060069092715811 ] } }, { "type": "Feature", "properties": { "id": 149, "geom": "SRID=4326;POINT(112.995261 28.068772)", "零售户": "长沙市天心区依你生活超市", "经度": 112.995261, "纬度": 28.068772, "参考值1": 19.45, "参考值2": 1188, "参考值3": 2.83 }, "geometry": { "type": "Point", "coordinates": [ 112.988700744204166, 28.06307970564572 ] } }, { "type": "Feature", "properties": { "id": 150, "geom": "SRID=4326;POINT(112.979523 28.129128)", "零售户": "长沙市天心区毕言超市", "经度": 112.979523, "纬度": 28.129128, "参考值1": 19.98, "参考值2": 1507, "参考值3": 2.82 }, "geometry": { "type": "Point", "coordinates": [ 112.972929197189217, 28.123440819941838 ] } }, { "type": "Feature", "properties": { "id": 151, "geom": "SRID=4326;POINT(112.993044 28.146251)", "零售户": "年伟便利店", "经度": 112.993044, "纬度": 28.146251, "参考值1": 20.13, "参考值2": 1448, "参考值3": 2.82 }, "geometry": { "type": "Point", "coordinates": [ 112.986464741225703, 28.14057031930329 ] } }, { "type": "Feature", "properties": { "id": 152, "geom": "SRID=4326;POINT(112.984644 28.11287)", "零售户": "长沙市天心区小圣城便利店", "经度": 112.984644, "纬度": 28.11287, "参考值1": 19.7, "参考值2": 1332, "参考值3": 2.81 }, "geometry": { "type": "Point", "coordinates": [ 112.978040928404823, 28.10720257131771 ] } }, { "type": "Feature", "properties": { "id": 153, "geom": "SRID=4326;POINT(112.978939 28.196076)", "零售户": "长沙市天心区丹卫食品店", "经度": 112.978939, "纬度": 28.196076, "参考值1": 19.12, "参考值2": 1166, "参考值3": 2.8 }, "geometry": { "type": "Point", "coordinates": [ 112.972370606169363, 28.190391107208278 ] } }, { "type": "Feature", "properties": { "id": 154, "geom": "SRID=4326;POINT(112.996339 28.144471)", "零售户": "长沙市天心区向东南蔚然超市", "经度": 112.996339, "纬度": 28.144471, "参考值1": 19.74, "参考值2": 1522, "参考值3": 2.79 }, "geometry": { "type": "Point", "coordinates": [ 112.989763988466109, 28.13876558789612 ] } }, { "type": "Feature", "properties": { "id": 155, "geom": "SRID=4326;POINT(112.978345 28.15766)", "零售户": "长沙市天心区崔泽勇便利店", "经度": 112.978345, "纬度": 28.15766, "参考值1": 19.36, "参考值2": 1292, "参考值3": 2.77 }, "geometry": { "type": "Point", "coordinates": [ 112.971779253011661, 28.151971258137365 ] } }, { "type": "Feature", "properties": { "id": 156, "geom": "SRID=4326;POINT(112.974496 28.123642)", "零售户": "长沙市天心区丹贝超市", "经度": 112.974496, "纬度": 28.123642, "参考值1": 19.51, "参考值2": 1418, "参考值3": 2.77 }, "geometry": { "type": "Point", "coordinates": [ 112.967909892298778, 28.117911688205897 ] } }, { "type": "Feature", "properties": { "id": 157, "geom": "SRID=4326;POINT(112.986993 28.111206)", "零售户": "长沙市天心区馨星超市", "经度": 112.986993, "纬度": 28.111206, "参考值1": 18.91, "参考值2": 1072, "参考值3": 2.77 }, "geometry": { "type": "Point", "coordinates": [ 112.98038991172325, 28.105540151597651 ] } }, { "type": "Feature", "properties": { "id": 158, "geom": "SRID=4326;POINT(113.001229 28.078273)", "零售户": "长沙市天心区秋明便利店", "经度": 113.001229, "纬度": 28.078273, "参考值1": 19.73, "参考值2": 1551, "参考值3": 2.76 }, "geometry": { "type": "Point", "coordinates": [ 112.994676250963437, 28.072517973117343 ] } }, { "type": "Feature", "properties": { "id": 159, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区两老便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 19.47, "参考值2": 1528, "参考值3": 2.75 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 160, "geom": "SRID=4326;POINT(112.981879 28.124186)", "零售户": "长沙市天心区周建峰食品店", "经度": 112.981879, "纬度": 28.124186, "参考值1": 19.25, "参考值2": 1407, "参考值3": 2.73 }, "geometry": { "type": "Point", "coordinates": [ 112.97527944980682, 28.118510660085967 ] } }, { "type": "Feature", "properties": { "id": 161, "geom": "SRID=4326;POINT(112.999679 28.066093)", "零售户": "长沙市天心区简聚便利店", "经度": 112.999679, "纬度": 28.066093, "参考值1": 19.15, "参考值2": 1359, "参考值3": 2.73 }, "geometry": { "type": "Point", "coordinates": [ 112.993130841176679, 28.060358588311317 ] } }, { "type": "Feature", "properties": { "id": 162, "geom": "SRID=4326;POINT(112.992169 28.147195)", "零售户": "长沙市天心区银诺百货商行", "经度": 112.992169, "纬度": 28.147195, "参考值1": 19.18, "参考值2": 1328, "参考值3": 2.71 }, "geometry": { "type": "Point", "coordinates": [ 112.985589481385361, 28.14151943622317 ] } }, { "type": "Feature", "properties": { "id": 163, "geom": "SRID=4326;POINT(112.981092 28.17875)", "零售户": "长沙市天心区靖敏食品店", "经度": 112.981092, "纬度": 28.17875, "参考值1": 19.37, "参考值2": 1424, "参考值3": 2.71 }, "geometry": { "type": "Point", "coordinates": [ 112.974530051949785, 28.173080215834382 ] } }, { "type": "Feature", "properties": { "id": 164, "geom": "SRID=4326;POINT(112.978347 28.156179)", "零售户": "长沙市天心区景宸超市", "经度": 112.978347, "纬度": 28.156179, "参考值1": 19.3, "参考值2": 1392, "参考值3": 2.7 }, "geometry": { "type": "Point", "coordinates": [ 112.971779988200467, 28.150489957430569 ] } }, { "type": "Feature", "properties": { "id": 165, "geom": "SRID=4326;POINT(112.999679 28.066093)", "零售户": "长沙市天心区汇惠乐超市", "经度": 112.999679, "纬度": 28.066093, "参考值1": 18.55, "参考值2": 1247, "参考值3": 2.69 }, "geometry": { "type": "Point", "coordinates": [ 112.993130841176679, 28.060358588311317 ] } }, { "type": "Feature", "properties": { "id": 166, "geom": "SRID=4326;POINT(112.989292 28.084306)", "零售户": "长沙市天心区旗舰超市", "经度": 112.989292, "纬度": 28.084306, "参考值1": 18.13, "参考值2": 1152, "参考值3": 2.69 }, "geometry": { "type": "Point", "coordinates": [ 112.982710382408996, 28.078641760128228 ] } }, { "type": "Feature", "properties": { "id": 167, "geom": "SRID=4326;POINT(112.977648 28.198156)", "零售户": "邹姐烟店", "经度": 112.977648, "纬度": 28.198156, "参考值1": 18.25, "参考值2": 1104, "参考值3": 2.69 }, "geometry": { "type": "Point", "coordinates": [ 112.971080093742472, 28.192461090691651 ] } }, { "type": "Feature", "properties": { "id": 168, "geom": "SRID=4326;POINT(112.992169 28.147195)", "零售户": "长沙市天心区宁邵烟酒店", "经度": 112.992169, "纬度": 28.147195, "参考值1": 19.25, "参考值2": 1388, "参考值3": 2.69 }, "geometry": { "type": "Point", "coordinates": [ 112.985589481385361, 28.14151943622317 ] } }, { "type": "Feature", "properties": { "id": 169, "geom": "SRID=4326;POINT(112.988904 28.105491)", "零售户": "长沙市天心区豪珊烟酒商行", "经度": 112.988904, "纬度": 28.105491, "参考值1": 18.43, "参考值2": 1123, "参考值3": 2.68 }, "geometry": { "type": "Point", "coordinates": [ 112.982303824080333, 28.099823150855435 ] } }, { "type": "Feature", "properties": { "id": 170, "geom": "SRID=4326;POINT(112.978721 28.199298)", "零售户": "长沙市天心区浩帆烟酒店", "经度": 112.978721, "纬度": 28.199298, "参考值1": 18.43, "参考值2": 1063, "参考值3": 2.66 }, "geometry": { "type": "Point", "coordinates": [ 112.972150009666137, 28.193610854765112 ] } }, { "type": "Feature", "properties": { "id": 171, "geom": "SRID=4326;POINT(113.008313 28.13809)", "零售户": "长沙市天心区全聚优超市", "经度": 113.008313, "纬度": 28.13809, "参考值1": 18.49, "参考值2": 1242, "参考值3": 2.66 }, "geometry": { "type": "Point", "coordinates": [ 113.00177010945427, 28.132228967220836 ] } }, { "type": "Feature", "properties": { "id": 172, "geom": "SRID=4326;POINT(113.011226 28.13241)", "零售户": "长沙市天心区刘迪便利店", "经度": 113.011226, "纬度": 28.13241, "参考值1": 18.14, "参考值2": 1219, "参考值3": 2.64 }, "geometry": { "type": "Point", "coordinates": [ 113.00469032017827, 28.126499277631133 ] } }, { "type": "Feature", "properties": { "id": 173, "geom": "SRID=4326;POINT(112.985206 28.19707)", "零售户": "长沙市天心区也纳便利店", "经度": 112.985206, "纬度": 28.19707, "参考值1": 17.96, "参考值2": 1092, "参考值3": 2.64 }, "geometry": { "type": "Point", "coordinates": [ 112.978630366584468, 28.191410340777495 ] } }, { "type": "Feature", "properties": { "id": 174, "geom": "SRID=4326;POINT(112.985562 28.158169)", "零售户": "长沙市天心区豪缦便利店", "经度": 112.985562, "纬度": 28.158169, "参考值1": 18.06, "参考值2": 1256, "参考值3": 2.63 }, "geometry": { "type": "Point", "coordinates": [ 112.978989190203094, 28.152510405277994 ] } }, { "type": "Feature", "properties": { "id": 175, "geom": "SRID=4326;POINT(112.985273 28.18203)", "零售户": "湖南千惠商贸连锁有限公司侯", "经度": 112.985273, "纬度": 28.18203, "参考值1": 18.33, "参考值2": 1157, "参考值3": 2.63 }, "geometry": { "type": "Point", "coordinates": [ 112.978707092175298, 28.176372837399168 ] } }, { "type": "Feature", "properties": { "id": 176, "geom": "SRID=4326;POINT(112.997585 28.080054)", "零售户": "长沙市天心区凤泽便利店", "经度": 112.997585, "纬度": 28.080054, "参考值1": 17.83, "参考值2": 1136, "参考值3": 2.61 }, "geometry": { "type": "Point", "coordinates": [ 112.991020515598663, 28.07433893964452 ] } }, { "type": "Feature", "properties": { "id": 177, "geom": "SRID=4326;POINT(112.998516 28.128469)", "零售户": "长沙市天心区海琼批发经营部", "经度": 112.998516, "纬度": 28.128469, "参考值1": 18.49, "参考值2": 1263, "参考值3": 2.61 }, "geometry": { "type": "Point", "coordinates": [ 112.9919323700897, 28.122739233253448 ] } }, { "type": "Feature", "properties": { "id": 178, "geom": "SRID=4326;POINT(112.999459 28.065801)", "零售户": "长沙市天心区康绪食品店", "经度": 112.999459, "纬度": 28.065801, "参考值1": 18.1, "参考值2": 1325, "参考值3": 2.61 }, "geometry": { "type": "Point", "coordinates": [ 112.992910376570563, 28.060069092715811 ] } }, { "type": "Feature", "properties": { "id": 179, "geom": "SRID=4326;POINT(113.000985 28.149557)", "零售户": "湖南六三六连锁管理有限公司", "经度": 113.000985, "纬度": 28.149557, "参考值1": 17.67, "参考值2": 926, "参考值3": 2.61 }, "geometry": { "type": "Point", "coordinates": [ 112.994427303854124, 28.143803968098737 ] } }, { "type": "Feature", "properties": { "id": 180, "geom": "SRID=4326;POINT(112.992701 28.196076)", "零售户": "长沙市天心区周通便利店", "经度": 112.992701, "纬度": 28.196076, "参考值1": 18.26, "参考值2": 1218, "参考值3": 2.6 }, "geometry": { "type": "Point", "coordinates": [ 112.986130483572495, 28.190399652595719 ] } }, { "type": "Feature", "properties": { "id": 181, "geom": "SRID=4326;POINT(112.999679 28.066093)", "零售户": "长沙市天心区麦垦烟草商行", "经度": 112.999679, "纬度": 28.066093, "参考值1": 17.89, "参考值2": 730, "参考值3": 2.59 }, "geometry": { "type": "Point", "coordinates": [ 112.993130841176679, 28.060358588311317 ] } }, { "type": "Feature", "properties": { "id": 182, "geom": "SRID=4326;POINT(112.97205 28.111479)", "零售户": "长沙市天心区买惠便利店", "经度": 112.97205, "纬度": 28.111479, "参考值1": 18.54, "参考值2": 1383, "参考值3": 2.58 }, "geometry": { "type": "Point", "coordinates": [ 112.965469819936729, 28.105720742649307 ] } }, { "type": "Feature", "properties": { "id": 183, "geom": "SRID=4326;POINT(113.006867 28.127739)", "零售户": "长沙市天心区德瑜酒行", "经度": 113.006867, "纬度": 28.127739, "参考值1": 17.51, "参考值2": 593, "参考值3": 2.58 }, "geometry": { "type": "Point", "coordinates": [ 113.000310373103616, 28.121898882075321 ] } }, { "type": "Feature", "properties": { "id": 184, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区颖顺炒货店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 17.73, "参考值2": 1089, "参考值3": 2.58 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 185, "geom": "SRID=4326;POINT(112.9867 28.189047)", "零售户": "长沙市天心区快乐惠兴达便利", "经度": 112.9867, "纬度": 28.189047, "参考值1": 18.63, "参考值2": 1346, "参考值3": 2.58 }, "geometry": { "type": "Point", "coordinates": [ 112.98013050566837, 28.183389676347538 ] } }, { "type": "Feature", "properties": { "id": 186, "geom": "SRID=4326;POINT(112.989598 28.171707)", "零售户": "长沙市天心区互惠超市", "经度": 112.989598, "纬度": 28.171707, "参考值1": 17.87, "参考值2": 1130, "参考值3": 2.57 }, "geometry": { "type": "Point", "coordinates": [ 112.983033529476373, 28.166046215779144 ] } }, { "type": "Feature", "properties": { "id": 187, "geom": "SRID=4326;POINT(112.940422 28.080671)", "零售户": "长沙市天心区左静超市", "经度": 112.940422, "纬度": 28.080671, "参考值1": 18.06, "参考值2": 1526, "参考值3": 2.56 }, "geometry": { "type": "Point", "coordinates": [ 112.933990165684833, 28.074419626274736 ] } }, { "type": "Feature", "properties": { "id": 188, "geom": "SRID=4326;POINT(112.998944 28.148559)", "零售户": "长沙市天心区湘酒便利店", "经度": 112.998944, "纬度": 28.148559, "参考值1": 17.29, "参考值2": 969, "参考值3": 2.55 }, "geometry": { "type": "Point", "coordinates": [ 112.99237946084763, 28.142829178355296 ] } }, { "type": "Feature", "properties": { "id": 189, "geom": "SRID=4326;POINT(112.980419 28.198618)", "零售户": "湖南千惠商贸连锁有限公司三", "经度": 112.980419, "纬度": 28.198618, "参考值1": 17.72, "参考值2": 1109, "参考值3": 2.54 }, "geometry": { "type": "Point", "coordinates": [ 112.973845987814741, 28.192941712031381 ] } }, { "type": "Feature", "properties": { "id": 190, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区丹浩食品店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 17.83, "参考值2": 1302, "参考值3": 2.53 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 191, "geom": "SRID=4326;POINT(113.002914 28.114558)", "零售户": "长沙市天心区五庆超市", "经度": 113.002914, "纬度": 28.114558, "参考值1": 17.75, "参考值2": 1157, "参考值3": 2.52 }, "geometry": { "type": "Point", "coordinates": [ 112.996339593245452, 28.108774500062776 ] } }, { "type": "Feature", "properties": { "id": 192, "geom": "SRID=4326;POINT(112.978308 28.196523)", "零售户": "长沙市天心区孙印常便利店", "经度": 112.978308, "纬度": 28.196523, "参考值1": 17.33, "参考值2": 1005, "参考值3": 2.52 }, "geometry": { "type": "Point", "coordinates": [ 112.971740328015144, 28.190833518520783 ] } }, { "type": "Feature", "properties": { "id": 193, "geom": "SRID=4326;POINT(112.990301 28.153728)", "零售户": "长沙市天心区鑫隆辉超市", "经度": 112.990301, "纬度": 28.153728, "参考值1": 18.0, "参考值2": 1268, "参考值3": 2.52 }, "geometry": { "type": "Point", "coordinates": [ 112.983725863336318, 28.148062164084273 ] } }, { "type": "Feature", "properties": { "id": 194, "geom": "SRID=4326;POINT(112.977438 28.184915)", "零售户": "长沙市天心区邓伟食品店", "经度": 112.977438, "纬度": 28.184915, "参考值1": 17.45, "参考值2": 1199, "参考值3": 2.51 }, "geometry": { "type": "Point", "coordinates": [ 112.970880131180962, 28.179220794956176 ] } }, { "type": "Feature", "properties": { "id": 195, "geom": "SRID=4326;POINT(112.987657 28.111218)", "零售户": "长沙市天心区杨桃便利店", "经度": 112.987657, "纬度": 28.111218, "参考值1": 17.26, "参考值2": 1103, "参考值3": 2.49 }, "geometry": { "type": "Point", "coordinates": [ 112.981054035239111, 28.10555164401109 ] } }, { "type": "Feature", "properties": { "id": 196, "geom": "SRID=4326;POINT(112.976159 28.196613)", "零售户": "江西省绿滋肴实业有限公司长", "经度": 112.976159, "纬度": 28.196613, "参考值1": 16.65, "参考值2": 767, "参考值3": 2.49 }, "geometry": { "type": "Point", "coordinates": [ 112.969595683074132, 28.190905716875584 ] } }, { "type": "Feature", "properties": { "id": 197, "geom": "SRID=4326;POINT(112.986386 28.180696)", "零售户": "琼婷便利店", "经度": 112.986386, "纬度": 28.180696, "参考值1": 17.18, "参考值2": 1173, "参考值3": 2.48 }, "geometry": { "type": "Point", "coordinates": [ 112.979820298917602, 28.175039627347562 ] } }, { "type": "Feature", "properties": { "id": 198, "geom": "SRID=4326;POINT(112.97205 28.111479)", "零售户": "长沙市天心区正杰批发超市", "经度": 112.97205, "纬度": 28.111479, "参考值1": 17.44, "参考值2": 1311, "参考值3": 2.48 }, "geometry": { "type": "Point", "coordinates": [ 112.965469819936729, 28.105720742649307 ] } }, { "type": "Feature", "properties": { "id": 199, "geom": "SRID=4326;POINT(112.985543 28.169864)", "零售户": "长沙市天心区添金鑫食品经营", "经度": 112.985543, "纬度": 28.169864, "参考值1": 16.89, "参考值2": 1151, "参考值3": 2.48 }, "geometry": { "type": "Point", "coordinates": [ 112.978977027079523, 28.164207101737276 ] } }, { "type": "Feature", "properties": { "id": 200, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区君尚超市", "经度": 112.996195, "纬度": 28.144471, "参考值1": 17.63, "参考值2": 1260, "参考值3": 2.46 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 201, "geom": "SRID=4326;POINT(112.974992 28.185257)", "零售户": "长沙市天心区码渡食品店", "经度": 112.974992, "纬度": 28.185257, "参考值1": 17.2, "参考值2": 1170, "参考值3": 2.46 }, "geometry": { "type": "Point", "coordinates": [ 112.968439520132421, 28.179540503401746 ] } }, { "type": "Feature", "properties": { "id": 202, "geom": "SRID=4326;POINT(112.981247 28.189461)", "零售户": "长沙市天心区鲜社便利店", "经度": 112.981247, "纬度": 28.189461, "参考值1": 16.73, "参考值2": 1076, "参考值3": 2.46 }, "geometry": { "type": "Point", "coordinates": [ 112.974680408761969, 28.183790872399875 ] } }, { "type": "Feature", "properties": { "id": 203, "geom": "SRID=4326;POINT(112.992863 28.132092)", "零售户": "长沙市天心区富购超市", "经度": 112.992863, "纬度": 28.132092, "参考值1": 16.98, "参考值2": 1136, "参考值3": 2.46 }, "geometry": { "type": "Point", "coordinates": [ 112.986270344428945, 28.126409104769536 ] } }, { "type": "Feature", "properties": { "id": 204, "geom": "SRID=4326;POINT(112.978585 28.150396)", "零售户": "湖南千惠商贸连锁有限公司湖", "经度": 112.978585, "纬度": 28.150396, "参考值1": 16.86, "参考值2": 1042, "参考值3": 2.45 }, "geometry": { "type": "Point", "coordinates": [ 112.972012141546827, 28.144707328792151 ] } }, { "type": "Feature", "properties": { "id": 205, "geom": "SRID=4326;POINT(112.985762 28.20065)", "零售户": "长沙市天心区松升食品店", "经度": 112.985762, "纬度": 28.20065, "参考值1": 16.64, "参考值2": 1042, "参考值3": 2.44 }, "geometry": { "type": "Point", "coordinates": [ 112.979182843664219, 28.19499002352455 ] } }, { "type": "Feature", "properties": { "id": 206, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区景星便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 17.34, "参考值2": 1356, "参考值3": 2.44 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 207, "geom": "SRID=4326;POINT(113.003932 28.145592)", "零售户": "长沙市天心区松江超市", "经度": 113.003932, "纬度": 28.145592, "参考值1": 17.22, "参考值2": 1281, "参考值3": 2.44 }, "geometry": { "type": "Point", "coordinates": [ 112.997379956219945, 28.139799218393978 ] } }, { "type": "Feature", "properties": { "id": 208, "geom": "SRID=4326;POINT(112.978425 28.200548)", "零售户": "长沙市天心区五合一食品店(", "经度": 112.978425, "纬度": 28.200548, "参考值1": 16.96, "参考值2": 1158, "参考值3": 2.43 }, "geometry": { "type": "Point", "coordinates": [ 112.971853328750498, 28.194858434934968 ] } }, { "type": "Feature", "properties": { "id": 209, "geom": "SRID=4326;POINT(113.000576 28.101515)", "零售户": "长沙市天心区丛芬便利店", "经度": 113.000576, "纬度": 28.101515, "参考值1": 17.22, "参考值2": 1212, "参考值3": 2.42 }, "geometry": { "type": "Point", "coordinates": [ 112.993999498251668, 28.095762504940968 ] } }, { "type": "Feature", "properties": { "id": 210, "geom": "SRID=4326;POINT(113.010845 28.131463)", "零售户": "长沙市天心区荆沙超市", "经度": 113.010845, "纬度": 28.131463, "参考值1": 16.92, "参考值2": 1050, "参考值3": 2.41 }, "geometry": { "type": "Point", "coordinates": [ 113.004306993209809, 28.125558587923219 ] } }, { "type": "Feature", "properties": { "id": 211, "geom": "SRID=4326;POINT(112.979382 28.158919)", "零售户": "长沙市天心区高剑便利店", "经度": 112.979382, "纬度": 28.158919, "参考值1": 16.98, "参考值2": 1259, "参考值3": 2.41 }, "geometry": { "type": "Point", "coordinates": [ 112.972815487846844, 28.153237678778797 ] } }, { "type": "Feature", "properties": { "id": 212, "geom": "SRID=4326;POINT(112.993101 28.144241)", "零售户": "中国石油化工股份有限公司湖", "经度": 112.993101, "纬度": 28.144241, "参考值1": 16.66, "参考值2": 992, "参考值3": 2.4 }, "geometry": { "type": "Point", "coordinates": [ 112.986519791959765, 28.138559470118423 ] } }, { "type": "Feature", "properties": { "id": 213, "geom": "SRID=4326;POINT(112.977438 28.184915)", "零售户": "长沙市天心区恋恋食品店", "经度": 112.977438, "纬度": 28.184915, "参考值1": 17.26, "参考值2": 1294, "参考值3": 2.39 }, "geometry": { "type": "Point", "coordinates": [ 112.970880131180962, 28.179220794956176 ] } }, { "type": "Feature", "properties": { "id": 214, "geom": "SRID=4326;POINT(113.016559 28.116645)", "零售户": "长沙市天心区鑫祖达商贸行", "经度": 113.016559, "纬度": 28.116645, "参考值1": 16.63, "参考值2": 1162, "参考值3": 2.38 }, "geometry": { "type": "Point", "coordinates": [ 113.010039863018349, 28.110639127634265 ] } }, { "type": "Feature", "properties": { "id": 215, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区森运超市", "经度": 112.996195, "纬度": 28.144471, "参考值1": 16.38, "参考值2": 981, "参考值3": 2.37 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 216, "geom": "SRID=4326;POINT(113.004871 28.132908)", "零售户": "长沙市天心区厚礼超市", "经度": 113.004871, "纬度": 28.132908, "参考值1": 15.6, "参考值2": 729, "参考值3": 2.37 }, "geometry": { "type": "Point", "coordinates": [ 112.99831045122329, 28.127098833285554 ] } }, { "type": "Feature", "properties": { "id": 217, "geom": "SRID=4326;POINT(112.978357 28.141391)", "零售户": "长沙市天心区蒙祺食品店", "经度": 112.978357, "纬度": 28.141391, "参考值1": 16.54, "参考值2": 1156, "参考值3": 2.36 }, "geometry": { "type": "Point", "coordinates": [ 112.971775511772364, 28.135698418731781 ] } }, { "type": "Feature", "properties": { "id": 218, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区思姣便利店", "经度": 112.978226, "纬度": 28.139107, "参考值1": 16.47, "参考值2": 1161, "参考值3": 2.36 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 219, "geom": "SRID=4326;POINT(112.990205 28.153811)", "零售户": "长沙市天心区子珊便利店", "经度": 112.990205, "纬度": 28.153811, "参考值1": 16.16, "参考值2": 947, "参考值3": 2.36 }, "geometry": { "type": "Point", "coordinates": [ 112.983629857672625, 28.14814551575364 ] } }, { "type": "Feature", "properties": { "id": 220, "geom": "SRID=4326;POINT(112.978939 28.196076)", "零售户": "长沙市天心区准利便利店", "经度": 112.978939, "纬度": 28.196076, "参考值1": 16.46, "参考值2": 1157, "参考值3": 2.35 }, "geometry": { "type": "Point", "coordinates": [ 112.972370606169363, 28.190391107208278 ] } }, { "type": "Feature", "properties": { "id": 221, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区纯予便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 16.43, "参考值2": 1157, "参考值3": 2.35 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 222, "geom": "SRID=4326;POINT(113.00412 28.121889)", "零售户": "长沙市天心区宸逸超市", "经度": 113.00412, "纬度": 28.121889, "参考值1": 16.35, "参考值2": 1168, "参考值3": 2.34 }, "geometry": { "type": "Point", "coordinates": [ 112.997550580810199, 28.116089070461779 ] } }, { "type": "Feature", "properties": { "id": 223, "geom": "SRID=4326;POINT(112.995688 28.14293)", "零售户": "长沙市天心区多福超市", "经度": 112.995688, "纬度": 28.14293, "参考值1": 16.5, "参考值2": 1199, "参考值3": 2.34 }, "geometry": { "type": "Point", "coordinates": [ 112.989110063695122, 28.137229719256585 ] } }, { "type": "Feature", "properties": { "id": 224, "geom": "SRID=4326;POINT(112.993046 28.117038)", "零售户": "长沙市天心区雷鸣超市", "经度": 112.993046, "纬度": 28.117038, "参考值1": 16.27, "参考值2": 872, "参考值3": 2.34 }, "geometry": { "type": "Point", "coordinates": [ 112.986447192043556, 28.111352422147277 ] } }, { "type": "Feature", "properties": { "id": 225, "geom": "SRID=4326;POINT(112.983669 28.189782)", "零售户": "长沙市天心区刘顺烟酒店", "经度": 112.983669, "纬度": 28.189782, "参考值1": 16.08, "参考值2": 962, "参考值3": 2.33 }, "geometry": { "type": "Point", "coordinates": [ 112.977099943556652, 28.184120848924877 ] } }, { "type": "Feature", "properties": { "id": 226, "geom": "SRID=4326;POINT(112.979578 28.179671)", "零售户": "长沙市天心区浩燕便利店", "经度": 112.979578, "纬度": 28.179671, "参考值1": 16.09, "参考值2": 1033, "参考值3": 2.33 }, "geometry": { "type": "Point", "coordinates": [ 112.973018017614763, 28.1739926520433 ] } }, { "type": "Feature", "properties": { "id": 227, "geom": "SRID=4326;POINT(112.989962 28.175053)", "零售户": "长沙市天心区锦妙便利店", "经度": 112.989962, "纬度": 28.175053, "参考值1": 16.63, "参考值2": 1250, "参考值3": 2.33 }, "geometry": { "type": "Point", "coordinates": [ 112.983398259037074, 28.169391229152804 ] } }, { "type": "Feature", "properties": { "id": 228, "geom": "SRID=4326;POINT(112.976997 28.184688)", "零售户": "长沙市天心区泰戈食品店", "经度": 112.976997, "纬度": 28.184688, "参考值1": 16.1, "参考值2": 1237, "参考值3": 2.33 }, "geometry": { "type": "Point", "coordinates": [ 112.97044014616651, 28.178990163887839 ] } }, { "type": "Feature", "properties": { "id": 229, "geom": "SRID=4326;POINT(112.984238 28.187126)", "零售户": "长沙市天心区玲逸食品店", "经度": 112.984238, "纬度": 28.187126, "参考值1": 16.72, "参考值2": 1228, "参考值3": 2.32 }, "geometry": { "type": "Point", "coordinates": [ 112.977670253047066, 28.181466600795154 ] } }, { "type": "Feature", "properties": { "id": 230, "geom": "SRID=4326;POINT(112.979071 28.032325)", "零售户": "长沙市天心区宁望烟酒商行", "经度": 112.979071, "纬度": 28.032325, "参考值1": 15.42, "参考值2": 916, "参考值3": 2.32 }, "geometry": { "type": "Point", "coordinates": [ 112.972499513423344, 28.026640164875211 ] } }, { "type": "Feature", "properties": { "id": 231, "geom": "SRID=4326;POINT(112.991597 28.152611)", "零售户": "长沙市天心区争展便利店", "经度": 112.991597, "纬度": 28.152611, "参考值1": 16.04, "参考值2": 1057, "参考值3": 2.32 }, "geometry": { "type": "Point", "coordinates": [ 112.985022133314757, 28.146939596068719 ] } }, { "type": "Feature", "properties": { "id": 232, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区程姐便利店", "经度": 112.978226, "纬度": 28.139107, "参考值1": 15.78, "参考值2": 978, "参考值3": 2.31 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 233, "geom": "SRID=4326;POINT(112.986191 28.106185)", "零售户": "长沙市天心区张丽亚便利店", "经度": 112.986191, "纬度": 28.106185, "参考值1": 15.95, "参考值2": 1083, "参考值3": 2.3 }, "geometry": { "type": "Point", "coordinates": [ 112.979589808355371, 28.100519690781169 ] } }, { "type": "Feature", "properties": { "id": 234, "geom": "SRID=4326;POINT(113.007955 28.137475)", "零售户": "长沙市天心区习坤便利店", "经度": 113.007955, "纬度": 28.137475, "参考值1": 16.3, "参考值2": 1241, "参考值3": 2.3 }, "geometry": { "type": "Point", "coordinates": [ 113.001410109664178, 28.13161957993221 ] } }, { "type": "Feature", "properties": { "id": 235, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区创润烟店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 15.72, "参考值2": 837, "参考值3": 2.29 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 236, "geom": "SRID=4326;POINT(112.988415 28.170588)", "零售户": "长沙市天心区品惠超市", "经度": 112.988415, "纬度": 28.170588, "参考值1": 16.22, "参考值2": 1167, "参考值3": 2.29 }, "geometry": { "type": "Point", "coordinates": [ 112.981849562273226, 28.164929887939032 ] } }, { "type": "Feature", "properties": { "id": 237, "geom": "SRID=4326;POINT(112.995021 28.090515)", "零售户": "长沙市天心区赛婷便利店", "经度": 112.995021, "纬度": 28.090515, "参考值1": 16.15, "参考值2": 1143, "参考值3": 2.28 }, "geometry": { "type": "Point", "coordinates": [ 112.988440447651485, 28.084819654650509 ] } }, { "type": "Feature", "properties": { "id": 238, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区芸林便利店", "经度": 112.978226, "纬度": 28.139107, "参考值1": 15.91, "参考值2": 1148, "参考值3": 2.28 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 239, "geom": "SRID=4326;POINT(112.996014 28.186857)", "零售户": "长沙市天心区乐狸便利店", "经度": 112.996014, "纬度": 28.186857, "参考值1": 15.69, "参考值2": 945, "参考值3": 2.27 }, "geometry": { "type": "Point", "coordinates": [ 112.989456085258993, 28.181158851411993 ] } }, { "type": "Feature", "properties": { "id": 240, "geom": "SRID=4326;POINT(112.982045 28.197949)", "零售户": "长沙市天心区梅嫂烟酒店", "经度": 112.982045, "纬度": 28.197949, "参考值1": 15.58, "参考值2": 925, "参考值3": 2.27 }, "geometry": { "type": "Point", "coordinates": [ 112.975470654224438, 28.192280728830394 ] } }, { "type": "Feature", "properties": { "id": 241, "geom": "SRID=4326;POINT(112.943377 28.086724)", "零售户": "长沙市天心区添一家商行", "经度": 112.943377, "纬度": 28.086724, "参考值1": 15.91, "参考值2": 1089, "参考值3": 2.26 }, "geometry": { "type": "Point", "coordinates": [ 112.936929700051266, 28.080508905291023 ] } }, { "type": "Feature", "properties": { "id": 242, "geom": "SRID=4326;POINT(112.977717 28.182141)", "零售户": "长沙市天心区森活便利店", "经度": 112.977717, "纬度": 28.182141, "参考值1": 15.84, "参考值2": 1046, "参考值3": 2.25 }, "geometry": { "type": "Point", "coordinates": [ 112.971159664044748, 28.176449294788721 ] } }, { "type": "Feature", "properties": { "id": 243, "geom": "SRID=4326;POINT(112.980514 28.199817)", "零售户": "长沙市天心区张维军便利店", "经度": 112.980514, "纬度": 28.199817, "参考值1": 15.5, "参考值2": 1034, "参考值3": 2.25 }, "geometry": { "type": "Point", "coordinates": [ 112.973939711644249, 28.194140951137587 ] } }, { "type": "Feature", "properties": { "id": 244, "geom": "SRID=4326;POINT(112.980474 28.199577)", "零售户": "长沙市天心区爱良食品商行", "经度": 112.980474, "纬度": 28.199577, "参考值1": 15.59, "参考值2": 1042, "参考值3": 2.24 }, "geometry": { "type": "Point", "coordinates": [ 112.973899997814257, 28.193900789018869 ] } }, { "type": "Feature", "properties": { "id": 245, "geom": "SRID=4326;POINT(112.98398 28.027812)", "零售户": "长沙市天心区乐俊宇烟酒商行", "经度": 112.98398, "纬度": 28.027812, "参考值1": 15.92, "参考值2": 1493, "参考值3": 2.24 }, "geometry": { "type": "Point", "coordinates": [ 112.977398503746244, 28.02214844231198 ] } }, { "type": "Feature", "properties": { "id": 246, "geom": "SRID=4326;POINT(112.989962 28.175053)", "零售户": "长沙市天心区朱灿烟酒店", "经度": 112.989962, "纬度": 28.175053, "参考值1": 15.71, "参考值2": 1085, "参考值3": 2.22 }, "geometry": { "type": "Point", "coordinates": [ 112.983398259037074, 28.169391229152804 ] } }, { "type": "Feature", "properties": { "id": 247, "geom": "SRID=4326;POINT(112.980862 28.170661)", "零售户": "长沙市天心区朕韩便利店", "经度": 112.980862, "纬度": 28.170661, "参考值1": 15.02, "参考值2": 916, "参考值3": 2.22 }, "geometry": { "type": "Point", "coordinates": [ 112.974299813225883, 28.16498991220719 ] } }, { "type": "Feature", "properties": { "id": 248, "geom": "SRID=4326;POINT(112.983858 28.129008)", "零售户": "长沙市天心区艾百客子墨便利", "经度": 112.983858, "纬度": 28.129008, "参考值1": 15.37, "参考值2": 1014, "参考值3": 2.22 }, "geometry": { "type": "Point", "coordinates": [ 112.977259358933765, 28.123339940893132 ] } }, { "type": "Feature", "properties": { "id": 249, "geom": "SRID=4326;POINT(112.993345 28.190259)", "零售户": "湖南新佳宜商贸有限公司芙蓉", "经度": 112.993345, "纬度": 28.190259, "参考值1": 15.41, "参考值2": 887, "参考值3": 2.21 }, "geometry": { "type": "Point", "coordinates": [ 112.986780063004431, 28.184579975287274 ] } }, { "type": "Feature", "properties": { "id": 250, "geom": "SRID=4326;POINT(112.979363 28.187071)", "零售户": "长沙市天心区豪恒食品店", "经度": 112.979363, "纬度": 28.187071, "参考值1": 15.62, "参考值2": 1157, "参考值3": 2.21 }, "geometry": { "type": "Point", "coordinates": [ 112.972800526322374, 28.181390578205669 ] } }, { "type": "Feature", "properties": { "id": 251, "geom": "SRID=4326;POINT(112.981634 28.183918)", "零售户": "长沙市天心区林御食品店", "经度": 112.981634, "纬度": 28.183918, "参考值1": 15.43, "参考值2": 1061, "参考值3": 2.21 }, "geometry": { "type": "Point", "coordinates": [ 112.975069956217894, 28.178250414164165 ] } }, { "type": "Feature", "properties": { "id": 252, "geom": "SRID=4326;POINT(112.980979 28.188281)", "零售户": "长沙市天心区港宏食品商行", "经度": 112.980979, "纬度": 28.188281, "参考值1": 15.5, "参考值2": 1171, "参考值3": 2.18 }, "geometry": { "type": "Point", "coordinates": [ 112.974413490517861, 28.182609734368516 ] } }, { "type": "Feature", "properties": { "id": 253, "geom": "SRID=4326;POINT(112.995261 28.068772)", "零售户": "长沙市天心区科成便利店", "经度": 112.995261, "纬度": 28.068772, "参考值1": 15.25, "参考值2": 1148, "参考值3": 2.17 }, "geometry": { "type": "Point", "coordinates": [ 112.988700744204166, 28.06307970564572 ] } }, { "type": "Feature", "properties": { "id": 254, "geom": "SRID=4326;POINT(112.978039 28.088755)", "零售户": "长沙市天心区上冲副食品批发", "经度": 112.978039, "纬度": 28.088755, "参考值1": 15.46, "参考值2": 998, "参考值3": 2.16 }, "geometry": { "type": "Point", "coordinates": [ 112.971460094316186, 28.083060502968063 ] } }, { "type": "Feature", "properties": { "id": 255, "geom": "SRID=4326;POINT(112.982346 28.164306)", "零售户": "长沙市天心区橒熙便利店", "经度": 112.982346, "纬度": 28.164306, "参考值1": 15.1, "参考值2": 1097, "参考值3": 2.16 }, "geometry": { "type": "Point", "coordinates": [ 112.975779395639904, 28.158640900259371 ] } }, { "type": "Feature", "properties": { "id": 256, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区隆四食品店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 15.55, "参考值2": 1196, "参考值3": 2.16 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 257, "geom": "SRID=4326;POINT(112.976315 28.153307)", "零售户": "长沙市天心区志展便利店", "经度": 112.976315, "纬度": 28.153307, "参考值1": 15.03, "参考值2": 1044, "参考值3": 2.15 }, "geometry": { "type": "Point", "coordinates": [ 112.969749528227936, 28.147600654095836 ] } }, { "type": "Feature", "properties": { "id": 258, "geom": "SRID=4326;POINT(112.999459 28.065801)", "零售户": "长沙市天心区冰冰烟酒店", "经度": 112.999459, "纬度": 28.065801, "参考值1": 14.24, "参考值2": 832, "参考值3": 2.15 }, "geometry": { "type": "Point", "coordinates": [ 112.992910376570563, 28.060069092715811 ] } }, { "type": "Feature", "properties": { "id": 259, "geom": "SRID=4326;POINT(112.984624 28.135725)", "零售户": "长沙市天心区良妍超市", "经度": 112.984624, "纬度": 28.135725, "参考值1": 14.91, "参考值2": 901, "参考值3": 2.15 }, "geometry": { "type": "Point", "coordinates": [ 112.978030072383802, 28.130059824337195 ] } }, { "type": "Feature", "properties": { "id": 260, "geom": "SRID=4326;POINT(112.99023 28.072334)", "零售户": "长沙市天心区蒋红英超市", "经度": 112.99023, "纬度": 28.072334, "参考值1": 15.1, "参考值2": 1233, "参考值3": 2.15 }, "geometry": { "type": "Point", "coordinates": [ 112.983660134855398, 28.066669670490338 ] } }, { "type": "Feature", "properties": { "id": 261, "geom": "SRID=4326;POINT(112.981352 28.155661)", "零售户": "长沙市天心区唛坤便利店", "经度": 112.981352, "纬度": 28.155661, "参考值1": 14.99, "参考值2": 1044, "参考值3": 2.15 }, "geometry": { "type": "Point", "coordinates": [ 112.974780003382264, 28.149990029346785 ] } }, { "type": "Feature", "properties": { "id": 262, "geom": "SRID=4326;POINT(112.993223 28.13976)", "零售户": "长沙市天心区芙蓉南路保富烟", "经度": 112.993223, "纬度": 28.13976, "参考值1": 14.65, "参考值2": 926, "参考值3": 2.14 }, "geometry": { "type": "Point", "coordinates": [ 112.986637545104685, 28.134076623958318 ] } }, { "type": "Feature", "properties": { "id": 263, "geom": "SRID=4326;POINT(112.976315 28.153307)", "零售户": "长沙市天心区皓华食品商行", "经度": 112.976315, "纬度": 28.153307, "参考值1": 14.83, "参考值2": 1088, "参考值3": 2.14 }, "geometry": { "type": "Point", "coordinates": [ 112.969749528227936, 28.147600654095836 ] } }, { "type": "Feature", "properties": { "id": 264, "geom": "SRID=4326;POINT(112.965059 28.057616)", "零售户": "长沙市天心区小衡便利店", "经度": 112.965059, "纬度": 28.057616, "参考值1": 14.39, "参考值2": 1042, "参考值3": 2.13 }, "geometry": { "type": "Point", "coordinates": [ 112.958541876812802, 28.051767636981545 ] } }, { "type": "Feature", "properties": { "id": 265, "geom": "SRID=4326;POINT(112.989598 28.171707)", "零售户": "长沙市天心区锦亭便利店", "经度": 112.989598, "纬度": 28.171707, "参考值1": 14.76, "参考值2": 974, "参考值3": 2.12 }, "geometry": { "type": "Point", "coordinates": [ 112.983033529476373, 28.166046215779144 ] } }, { "type": "Feature", "properties": { "id": 266, "geom": "SRID=4326;POINT(112.981626 28.088578)", "零售户": "长沙市天心区盛天超市", "经度": 112.981626, "纬度": 28.088578, "参考值1": 14.51, "参考值2": 996, "参考值3": 2.12 }, "geometry": { "type": "Point", "coordinates": [ 112.975041868383201, 28.082905298970044 ] } }, { "type": "Feature", "properties": { "id": 267, "geom": "SRID=4326;POINT(112.993168 28.198806)", "零售户": "长沙市天心区丰彤超市", "经度": 112.993168, "纬度": 28.198806, "参考值1": 14.28, "参考值2": 823, "参考值3": 2.12 }, "geometry": { "type": "Point", "coordinates": [ 112.986595661647968, 28.193126291075071 ] } }, { "type": "Feature", "properties": { "id": 268, "geom": "SRID=4326;POINT(112.986675 28.134264)", "零售户": "长沙市天心区六卓百货店", "经度": 112.986675, "纬度": 28.134264, "参考值1": 14.73, "参考值2": 1035, "参考值3": 2.11 }, "geometry": { "type": "Point", "coordinates": [ 112.980079428890988, 28.128600140362014 ] } }, { "type": "Feature", "properties": { "id": 269, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区夏长春超市", "经度": 112.996195, "纬度": 28.144471, "参考值1": 14.78, "参考值2": 1066, "参考值3": 2.11 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 270, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区喜绮日用百货商", "经度": 112.996195, "纬度": 28.144471, "参考值1": 13.95, "参考值2": 682, "参考值3": 2.11 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 271, "geom": "SRID=4326;POINT(112.980488 28.122263)", "零售户": "长沙市天心区晨轩生活超市", "经度": 112.980488, "纬度": 28.122263, "参考值1": 14.65, "参考值2": 937, "参考值3": 2.1 }, "geometry": { "type": "Point", "coordinates": [ 112.973889421728728, 28.11658069516136 ] } }, { "type": "Feature", "properties": { "id": 272, "geom": "SRID=4326;POINT(112.980419 28.198618)", "零售户": "长沙市天心区朵果便利店", "经度": 112.980419, "纬度": 28.198618, "参考值1": 14.18, "参考值2": 783, "参考值3": 2.09 }, "geometry": { "type": "Point", "coordinates": [ 112.973845987814741, 28.192941712031381 ] } }, { "type": "Feature", "properties": { "id": 273, "geom": "SRID=4326;POINT(113.03712 28.102694)", "零售户": "长沙市天心区明砣食品批发部", "经度": 113.03712, "纬度": 28.102694, "参考值1": 14.58, "参考值2": 862, "参考值3": 2.09 }, "geometry": { "type": "Point", "coordinates": [ 113.030679440151317, 28.0963912891124 ] } }, { "type": "Feature", "properties": { "id": 274, "geom": "SRID=4326;POINT(112.943377 28.086724)", "零售户": "长沙市天心区李启烟草商行", "经度": 112.943377, "纬度": 28.086724, "参考值1": 14.4, "参考值2": 1158, "参考值3": 2.09 }, "geometry": { "type": "Point", "coordinates": [ 112.936929700051266, 28.080508905291023 ] } }, { "type": "Feature", "properties": { "id": 275, "geom": "SRID=4326;POINT(112.978585 28.150396)", "零售户": "长沙市天心区谐帆便利店", "经度": 112.978585, "纬度": 28.150396, "参考值1": 14.68, "参考值2": 1103, "参考值3": 2.08 }, "geometry": { "type": "Point", "coordinates": [ 112.972012141546827, 28.144707328792151 ] } }, { "type": "Feature", "properties": { "id": 276, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区荷塘超市", "经度": 112.978226, "纬度": 28.139107, "参考值1": 14.77, "参考值2": 1149, "参考值3": 2.08 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 277, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区谭庆琳食品店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 14.71, "参考值2": 937, "参考值3": 2.07 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 278, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区全功便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 14.76, "参考值2": 1140, "参考值3": 2.06 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 279, "geom": "SRID=4326;POINT(112.995092 28.091356)", "零售户": "长沙市天心区豪勇烟勇烟酒商", "经度": 112.995092, "纬度": 28.091356, "参考值1": 14.02, "参考值2": 868, "参考值3": 2.06 }, "geometry": { "type": "Point", "coordinates": [ 112.988510754830372, 28.085659903574431 ] } }, { "type": "Feature", "properties": { "id": 280, "geom": "SRID=4326;POINT(112.99023 28.072334)", "零售户": "长沙市天心区海旋便利店", "经度": 112.99023, "纬度": 28.072334, "参考值1": 14.52, "参考值2": 1064, "参考值3": 2.06 }, "geometry": { "type": "Point", "coordinates": [ 112.983660134855398, 28.066669670490338 ] } }, { "type": "Feature", "properties": { "id": 281, "geom": "SRID=4326;POINT(112.994689 28.132843)", "零售户": "长沙市天心区福桃超市", "经度": 112.994689, "纬度": 28.132843, "参考值1": 14.07, "参考值2": 900, "参考值3": 2.05 }, "geometry": { "type": "Point", "coordinates": [ 112.988099920312621, 28.127148208721774 ] } }, { "type": "Feature", "properties": { "id": 282, "geom": "SRID=4326;POINT(112.982433 28.178594)", "零售户": "长沙市天心区淑南食品店", "经度": 112.982433, "纬度": 28.178594, "参考值1": 14.2, "参考值2": 1034, "参考值3": 2.05 }, "geometry": { "type": "Point", "coordinates": [ 112.975869617801877, 28.172930066706733 ] } }, { "type": "Feature", "properties": { "id": 283, "geom": "SRID=4326;POINT(112.978939 28.196076)", "零售户": "长沙市天心区朱文兵食品店", "经度": 112.978939, "纬度": 28.196076, "参考值1": 14.09, "参考值2": 1039, "参考值3": 2.04 }, "geometry": { "type": "Point", "coordinates": [ 112.972370606169363, 28.190391107208278 ] } }, { "type": "Feature", "properties": { "id": 285, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区安德食品店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 14.45, "参考值2": 971, "参考值3": 2.04 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 286, "geom": "SRID=4326;POINT(113.007975 28.121666)", "零售户": "湖南电力服务有限公司天一康", "经度": 113.007975, "纬度": 28.121666, "参考值1": 14.32, "参考值2": 897, "参考值3": 2.04 }, "geometry": { "type": "Point", "coordinates": [ 113.001420027539424, 28.115807727538854 ] } }, { "type": "Feature", "properties": { "id": 287, "geom": "SRID=4326;POINT(113.001487 28.143991)", "零售户": "宜而惠烟酒超市", "经度": 113.001487, "纬度": 28.143991, "参考值1": 14.23, "参考值2": 1160, "参考值3": 2.02 }, "geometry": { "type": "Point", "coordinates": [ 112.994925231725844, 28.138230354168282 ] } }, { "type": "Feature", "properties": { "id": 288, "geom": "SRID=4326;POINT(112.979388 28.194312)", "零售户": "长沙市天心区双双红烟店", "经度": 112.979388, "纬度": 28.194312, "参考值1": 14.05, "参考值2": 888, "参考值3": 2.01 }, "geometry": { "type": "Point", "coordinates": [ 112.972820378496564, 28.188630471641989 ] } }, { "type": "Feature", "properties": { "id": 289, "geom": "SRID=4326;POINT(112.980341 28.174934)", "零售户": "长沙市天心区康蕾便利店", "经度": 112.980341, "纬度": 28.174934, "参考值1": 14.18, "参考值2": 1231, "参考值3": 2.01 }, "geometry": { "type": "Point", "coordinates": [ 112.973780224609925, 28.169260281510407 ] } }, { "type": "Feature", "properties": { "id": 290, "geom": "SRID=4326;POINT(112.986675 28.134264)", "零售户": "长沙家多福百货贸易有限公司", "经度": 112.986675, "纬度": 28.134264, "参考值1": 14.07, "参考值2": 1032, "参考值3": 2.0 }, "geometry": { "type": "Point", "coordinates": [ 112.980079428890988, 28.128600140362014 ] } }, { "type": "Feature", "properties": { "id": 291, "geom": "SRID=4326;POINT(112.988931 28.175235)", "零售户": "长沙市天心区旺嫂便利店", "经度": 112.988931, "纬度": 28.175235, "参考值1": 14.19, "参考值2": 1025, "参考值3": 2.0 }, "geometry": { "type": "Point", "coordinates": [ 112.982366565818182, 28.169576039612949 ] } }, { "type": "Feature", "properties": { "id": 292, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区安迪商店", "经度": 112.978226, "纬度": 28.139107, "参考值1": 13.69, "参考值2": 856, "参考值3": 2.0 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 293, "geom": "SRID=4326;POINT(112.979291 28.153334)", "零售户": "长沙市天心区华群便利店", "经度": 112.979291, "纬度": 28.153334, "参考值1": 13.85, "参考值2": 825, "参考值3": 2.0 }, "geometry": { "type": "Point", "coordinates": [ 112.972719772537829, 28.14765087087472 ] } }, { "type": "Feature", "properties": { "id": 294, "geom": "SRID=4326;POINT(112.968369 28.105898)", "零售户": "长沙市天心区仙河便利店", "经度": 112.968369, "纬度": 28.105898, "参考值1": 13.98, "参考值2": 1055, "参考值3": 1.99 }, "geometry": { "type": "Point", "coordinates": [ 112.961803162468968, 28.100091138487425 ] } }, { "type": "Feature", "properties": { "id": 295, "geom": "SRID=4326;POINT(112.992212 28.171671)", "零售户": "长沙市天心区良泽炒货店", "经度": 112.992212, "纬度": 28.171671, "参考值1": 13.45, "参考值2": 914, "参考值3": 1.97 }, "geometry": { "type": "Point", "coordinates": [ 112.985650163216164, 28.165999624029446 ] } }, { "type": "Feature", "properties": { "id": 296, "geom": "SRID=4326;POINT(112.982507 28.188175)", "零售户": "长沙市天心区聪龙便利店", "经度": 112.982507, "纬度": 28.188175, "参考值1": 13.79, "参考值2": 862, "参考值3": 1.97 }, "geometry": { "type": "Point", "coordinates": [ 112.975939888167005, 28.182510437346963 ] } }, { "type": "Feature", "properties": { "id": 297, "geom": "SRID=4326;POINT(112.995261 28.068772)", "零售户": "长沙市天心区亮秋便利店", "经度": 112.995261, "纬度": 28.068772, "参考值1": 13.77, "参考值2": 954, "参考值3": 1.97 }, "geometry": { "type": "Point", "coordinates": [ 112.988700744204166, 28.06307970564572 ] } }, { "type": "Feature", "properties": { "id": 298, "geom": "SRID=4326;POINT(112.979943 28.188288)", "零售户": "长沙市天心区锦传便利店", "经度": 112.979943, "纬度": 28.188288, "参考值1": 13.65, "参考值2": 905, "参考值3": 1.97 }, "geometry": { "type": "Point", "coordinates": [ 112.973378912192089, 28.182611014193451 ] } }, { "type": "Feature", "properties": { "id": 299, "geom": "SRID=4326;POINT(112.979239 28.195903)", "零售户": "长沙市天心区波比食品店", "经度": 112.979239, "纬度": 28.195903, "参考值1": 13.61, "参考值2": 802, "参考值3": 1.97 }, "geometry": { "type": "Point", "coordinates": [ 112.972670256191051, 28.190220160325026 ] } }, { "type": "Feature", "properties": { "id": 300, "geom": "SRID=4326;POINT(112.979317 28.178743)", "零售户": "长沙市天心区礽和便利店", "经度": 112.979317, "纬度": 28.178743, "参考值1": 13.74, "参考值2": 953, "参考值3": 1.96 }, "geometry": { "type": "Point", "coordinates": [ 112.972757594713372, 28.17306301877451 ] } }, { "type": "Feature", "properties": { "id": 301, "geom": "SRID=4326;POINT(113.008296 28.083586)", "零售户": "长沙市天心区佛绿便利店", "经度": 113.008296, "纬度": 28.083586, "参考值1": 13.48, "参考值2": 1042, "参考值3": 1.96 }, "geometry": { "type": "Point", "coordinates": [ 113.001763366202454, 28.077727793925927 ] } }, { "type": "Feature", "properties": { "id": 302, "geom": "SRID=4326;POINT(112.98644 28.188737)", "零售户": "长沙市天心区全卓食品店", "经度": 112.98644, "纬度": 28.188737, "参考值1": 14.0, "参考值2": 967, "参考值3": 1.96 }, "geometry": { "type": "Point", "coordinates": [ 112.979870699220555, 28.183079741548998 ] } }, { "type": "Feature", "properties": { "id": 303, "geom": "SRID=4326;POINT(112.993044 28.146251)", "零售户": "长沙博大酒业有限公司", "经度": 112.993044, "纬度": 28.146251, "参考值1": 13.06, "参考值2": 685, "参考值3": 1.96 }, "geometry": { "type": "Point", "coordinates": [ 112.986464741225703, 28.14057031930329 ] } }, { "type": "Feature", "properties": { "id": 304, "geom": "SRID=4326;POINT(112.99604 28.091436)", "零售户": "长沙市天心区宏古酒类商行", "经度": 112.99604, "纬度": 28.091436, "参考值1": 14.0, "参考值2": 829, "参考值3": 1.95 }, "geometry": { "type": "Point", "coordinates": [ 112.989460587923716, 28.085732197177681 ] } }, { "type": "Feature", "properties": { "id": 305, "geom": "SRID=4326;POINT(112.980419 28.198618)", "零售户": "长沙市天心区宋记烟店", "经度": 112.980419, "纬度": 28.198618, "参考值1": 13.64, "参考值2": 934, "参考值3": 1.95 }, "geometry": { "type": "Point", "coordinates": [ 112.973845987814741, 28.192941712031381 ] } }, { "type": "Feature", "properties": { "id": 306, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区群润超市", "经度": 112.978226, "纬度": 28.139107, "参考值1": 13.55, "参考值2": 941, "参考值3": 1.95 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 307, "geom": "SRID=4326;POINT(112.979943 28.188288)", "零售户": "长沙市天心区杰彪食品店", "经度": 112.979943, "纬度": 28.188288, "参考值1": 13.9, "参考值2": 1012, "参考值3": 1.95 }, "geometry": { "type": "Point", "coordinates": [ 112.973378912192089, 28.182611014193451 ] } }, { "type": "Feature", "properties": { "id": 308, "geom": "SRID=4326;POINT(112.977556 28.196493)", "零售户": "长沙市天心区吉泽食品店", "经度": 112.977556, "纬度": 28.196493, "参考值1": 13.04, "参考值2": 790, "参考值3": 1.95 }, "geometry": { "type": "Point", "coordinates": [ 112.970989799091384, 28.190797735706902 ] } }, { "type": "Feature", "properties": { "id": 309, "geom": "SRID=4326;POINT(112.999459 28.065801)", "零售户": "湖南千惠商贸连锁有限公司芙", "经度": 112.999459, "纬度": 28.065801, "参考值1": 13.55, "参考值2": 840, "参考值3": 1.94 }, "geometry": { "type": "Point", "coordinates": [ 112.992910376570563, 28.060069092715811 ] } }, { "type": "Feature", "properties": { "id": 310, "geom": "SRID=4326;POINT(112.977502 28.153207)", "零售户": "长沙市天心区迈佳便利店", "经度": 112.977502, "纬度": 28.153207, "参考值1": 13.25, "参考值2": 864, "参考值3": 1.94 }, "geometry": { "type": "Point", "coordinates": [ 112.970933908240113, 28.147510771355755 ] } }, { "type": "Feature", "properties": { "id": 311, "geom": "SRID=4326;POINT(112.986502 28.138113)", "零售户": "长沙市天心区仙爹烟酒商行", "经度": 112.986502, "纬度": 28.138113, "参考值1": 13.27, "参考值2": 809, "参考值3": 1.94 }, "geometry": { "type": "Point", "coordinates": [ 112.979909814493837, 28.132450000470207 ] } }, { "type": "Feature", "properties": { "id": 312, "geom": "SRID=4326;POINT(112.989852 28.214318)", "零售户": "长沙市天心区米威烟酒行", "经度": 112.989852, "纬度": 28.214318, "参考值1": 13.68, "参考值2": 1058, "参考值3": 1.94 }, "geometry": { "type": "Point", "coordinates": [ 112.983260488087481, 28.208649698898704 ] } }, { "type": "Feature", "properties": { "id": 313, "geom": "SRID=4326;POINT(112.979305 28.149484)", "零售户": "长沙市天心区廖树林经营部", "经度": 112.979305, "纬度": 28.149484, "参考值1": 13.34, "参考值2": 741, "参考值3": 1.93 }, "geometry": { "type": "Point", "coordinates": [ 112.972730010609325, 28.14380002797671 ] } }, { "type": "Feature", "properties": { "id": 314, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区雨桐便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 13.28, "参考值2": 958, "参考值3": 1.93 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 315, "geom": "SRID=4326;POINT(112.989292 28.084306)", "零售户": "长沙市天心区雯沁便利店", "经度": 112.989292, "纬度": 28.084306, "参考值1": 13.12, "参考值2": 924, "参考值3": 1.93 }, "geometry": { "type": "Point", "coordinates": [ 112.982710382408996, 28.078641760128228 ] } }, { "type": "Feature", "properties": { "id": 316, "geom": "SRID=4326;POINT(112.987541 28.191218)", "零售户": "长沙市天心区牵谊食品店", "经度": 112.987541, "纬度": 28.191218, "参考值1": 13.59, "参考值2": 940, "参考值3": 1.93 }, "geometry": { "type": "Point", "coordinates": [ 112.980970133489976, 28.185559823479394 ] } }, { "type": "Feature", "properties": { "id": 317, "geom": "SRID=4326;POINT(112.980217 28.125334)", "零售户": "湖南千惠商贸连锁有限公司新", "经度": 112.980217, "纬度": 28.125334, "参考值1": 13.15, "参考值2": 818, "参考值3": 1.93 }, "geometry": { "type": "Point", "coordinates": [ 112.973620029593889, 28.119650480641429 ] } }, { "type": "Feature", "properties": { "id": 318, "geom": "SRID=4326;POINT(112.996016 28.183824)", "零售户": "长沙市天心区潭辉便利店", "经度": 112.996016, "纬度": 28.183824, "参考值1": 13.53, "参考值2": 968, "参考值3": 1.92 }, "geometry": { "type": "Point", "coordinates": [ 112.989459543885076, 28.178126194730535 ] } }, { "type": "Feature", "properties": { "id": 319, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区可圈食品店", "经度": 112.978226, "纬度": 28.139107, "参考值1": 13.46, "参考值2": 1004, "参考值3": 1.92 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 320, "geom": "SRID=4326;POINT(112.99604 28.091436)", "零售户": "长沙市天心区芬金烟酒行", "经度": 112.99604, "纬度": 28.091436, "参考值1": 13.45, "参考值2": 1119, "参考值3": 1.92 }, "geometry": { "type": "Point", "coordinates": [ 112.989460587923716, 28.085732197177681 ] } }, { "type": "Feature", "properties": { "id": 321, "geom": "SRID=4326;POINT(112.979318 28.159729)", "零售户": "长沙市天心区金哲便利店", "经度": 112.979318, "纬度": 28.159729, "参考值1": 13.53, "参考值2": 975, "参考值3": 1.91 }, "geometry": { "type": "Point", "coordinates": [ 112.972752219774847, 28.154047420540753 ] } }, { "type": "Feature", "properties": { "id": 322, "geom": "SRID=4326;POINT(112.996553 28.142866)", "零售户": "长沙市天心区民谐超市", "经度": 112.996553, "纬度": 28.142866, "参考值1": 13.5, "参考值2": 1079, "参考值3": 1.91 }, "geometry": { "type": "Point", "coordinates": [ 112.989976844917351, 28.137158295710666 ] } }, { "type": "Feature", "properties": { "id": 323, "geom": "SRID=4326;POINT(112.993168 28.198806)", "零售户": "长沙市天心区明业烟酒食杂店", "经度": 112.993168, "纬度": 28.198806, "参考值1": 13.14, "参考值2": 874, "参考值3": 1.91 }, "geometry": { "type": "Point", "coordinates": [ 112.986595661647968, 28.193126291075071 ] } }, { "type": "Feature", "properties": { "id": 324, "geom": "SRID=4326;POINT(112.99023 28.072334)", "零售户": "长沙市天心区午杰百货店", "经度": 112.99023, "纬度": 28.072334, "参考值1": 13.12, "参考值2": 836, "参考值3": 1.91 }, "geometry": { "type": "Point", "coordinates": [ 112.983660134855398, 28.066669670490338 ] } }, { "type": "Feature", "properties": { "id": 325, "geom": "SRID=4326;POINT(112.990893 28.171395)", "零售户": "长沙市天心区睿娟便利店", "经度": 112.990893, "纬度": 28.171395, "参考值1": 13.08, "参考值2": 771, "参考值3": 1.91 }, "geometry": { "type": "Point", "coordinates": [ 112.984329573458183, 28.165729723665844 ] } }, { "type": "Feature", "properties": { "id": 326, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区红彬便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 13.41, "参考值2": 999, "参考值3": 1.9 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 327, "geom": "SRID=4326;POINT(112.981247 28.189641)", "零售户": "长沙市天心区双燕烟酒店", "经度": 112.981247, "纬度": 28.189641, "参考值1": 13.53, "参考值2": 1052, "参考值3": 1.9 }, "geometry": { "type": "Point", "coordinates": [ 112.974680289088496, 28.183970842697949 ] } }, { "type": "Feature", "properties": { "id": 328, "geom": "SRID=4326;POINT(113.002148 28.118339)", "零售户": "长沙市天心区乾圆便利店", "经度": 113.002148, "纬度": 28.118339, "参考值1": 13.2, "参考值2": 866, "参考值3": 1.9 }, "geometry": { "type": "Point", "coordinates": [ 112.995571158820383, 28.112565638179021 ] } }, { "type": "Feature", "properties": { "id": 329, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区樊来便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 13.69, "参考值2": 983, "参考值3": 1.9 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 330, "geom": "SRID=4326;POINT(112.96893 28.12103)", "零售户": "长沙市天心区华沫便利店", "经度": 112.96893, "纬度": 28.12103, "参考值1": 13.27, "参考值2": 927, "参考值3": 1.9 }, "geometry": { "type": "Point", "coordinates": [ 112.96236016069291, 28.11523065079114 ] } }, { "type": "Feature", "properties": { "id": 331, "geom": "SRID=4326;POINT(112.988171 28.160029)", "零售户": "长沙市天心区喻涵酒类饮料经", "经度": 112.988171, "纬度": 28.160029, "参考值1": 13.24, "参考值2": 878, "参考值3": 1.9 }, "geometry": { "type": "Point", "coordinates": [ 112.981599867867118, 28.154369889753326 ] } }, { "type": "Feature", "properties": { "id": 332, "geom": "SRID=4326;POINT(112.995261 28.068772)", "零售户": "长沙市天心区东静超市", "经度": 112.995261, "纬度": 28.068772, "参考值1": 13.31, "参考值2": 1063, "参考值3": 1.89 }, "geometry": { "type": "Point", "coordinates": [ 112.988700744204166, 28.06307970564572 ] } }, { "type": "Feature", "properties": { "id": 333, "geom": "SRID=4326;POINT(112.948115 28.059238)", "零售户": "长沙市天心区大托百货商店", "经度": 112.948115, "纬度": 28.059238, "参考值1": 12.66, "参考值2": 901, "参考值3": 1.87 }, "geometry": { "type": "Point", "coordinates": [ 112.941669905454418, 28.053098728296259 ] } }, { "type": "Feature", "properties": { "id": 334, "geom": "SRID=4326;POINT(113.001094 28.146761)", "零售户": "长沙市天心区谢炟便利店", "经度": 113.001094, "纬度": 28.146761, "参考值1": 13.16, "参考值2": 930, "参考值3": 1.87 }, "geometry": { "type": "Point", "coordinates": [ 112.994533821826451, 28.141005931180022 ] } }, { "type": "Feature", "properties": { "id": 335, "geom": "SRID=4326;POINT(112.982909 28.125879)", "零售户": "长沙市天心区程正来烟酒店", "经度": 112.982909, "纬度": 28.125879, "参考值1": 12.65, "参考值2": 672, "参考值3": 1.86 }, "geometry": { "type": "Point", "coordinates": [ 112.976309257843553, 28.120207756915235 ] } }, { "type": "Feature", "properties": { "id": 336, "geom": "SRID=4326;POINT(113.007183 28.099934)", "零售户": "长沙市天心区日和晟便利店", "经度": 113.007183, "纬度": 28.099934, "参考值1": 12.78, "参考值2": 812, "参考值3": 1.86 }, "geometry": { "type": "Point", "coordinates": [ 113.000630558307449, 28.094089679289162 ] } }, { "type": "Feature", "properties": { "id": 337, "geom": "SRID=4326;POINT(112.97205 28.111479)", "零售户": "长沙市天心区捌惠便利店", "经度": 112.97205, "纬度": 28.111479, "参考值1": 12.67, "参考值2": 904, "参考值3": 1.84 }, "geometry": { "type": "Point", "coordinates": [ 112.965469819936729, 28.105720742649307 ] } }, { "type": "Feature", "properties": { "id": 338, "geom": "SRID=4326;POINT(113.006418 28.126155)", "零售户": "长沙市天心区博曦生活超市", "经度": 113.006418, "纬度": 28.126155, "参考值1": 13.05, "参考值2": 693, "参考值3": 1.84 }, "geometry": { "type": "Point", "coordinates": [ 112.999858777771692, 28.120321595825143 ] } }, { "type": "Feature", "properties": { "id": 339, "geom": "SRID=4326;POINT(113.001854 28.143688)", "零售户": "长沙市天心区万宁超市", "经度": 113.001854, "纬度": 28.143688, "参考值1": 12.96, "参考值2": 1017, "参考值3": 1.84 }, "geometry": { "type": "Point", "coordinates": [ 112.995293083615493, 28.137922631829987 ] } }, { "type": "Feature", "properties": { "id": 340, "geom": "SRID=4326;POINT(112.943377 28.086724)", "零售户": "长沙市天心区凯新综合批发部", "经度": 112.943377, "纬度": 28.086724, "参考值1": 12.79, "参考值2": 998, "参考值3": 1.83 }, "geometry": { "type": "Point", "coordinates": [ 112.936929700051266, 28.080508905291023 ] } }, { "type": "Feature", "properties": { "id": 341, "geom": "SRID=4326;POINT(112.974569 28.145326)", "零售户": "长沙市天心区清音轩餐馆", "经度": 112.974569, "纬度": 28.145326, "参考值1": 12.76, "参考值2": 914, "参考值3": 1.83 }, "geometry": { "type": "Point", "coordinates": [ 112.967999840524328, 28.139600726510597 ] } }, { "type": "Feature", "properties": { "id": 342, "geom": "SRID=4326;POINT(112.993044 28.146251)", "零售户": "湖南千惠商贸连锁有限公司芙", "经度": 112.993044, "纬度": 28.146251, "参考值1": 12.68, "参考值2": 819, "参考值3": 1.83 }, "geometry": { "type": "Point", "coordinates": [ 112.986464741225703, 28.14057031930329 ] } }, { "type": "Feature", "properties": { "id": 343, "geom": "SRID=4326;POINT(112.995021 28.090515)", "零售户": "长沙市天心区帆威便利店", "经度": 112.995021, "纬度": 28.090515, "参考值1": 12.45, "参考值2": 854, "参考值3": 1.83 }, "geometry": { "type": "Point", "coordinates": [ 112.988440447651485, 28.084819654650509 ] } }, { "type": "Feature", "properties": { "id": 344, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区快洁食品店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 12.46, "参考值2": 858, "参考值3": 1.83 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 345, "geom": "SRID=4326;POINT(112.979239 28.195903)", "零售户": "长沙市天心区思甜烟酒店", "经度": 112.979239, "纬度": 28.195903, "参考值1": 12.62, "参考值2": 870, "参考值3": 1.83 }, "geometry": { "type": "Point", "coordinates": [ 112.972670256191051, 28.190220160325026 ] } }, { "type": "Feature", "properties": { "id": 346, "geom": "SRID=4326;POINT(112.986993 28.111206)", "零售户": "长沙市天心区怡琪百货超市", "经度": 112.986993, "纬度": 28.111206, "参考值1": 12.97, "参考值2": 992, "参考值3": 1.83 }, "geometry": { "type": "Point", "coordinates": [ 112.98038991172325, 28.105540151597651 ] } }, { "type": "Feature", "properties": { "id": 347, "geom": "SRID=4326;POINT(112.989347 28.16576)", "零售户": "长沙市天心区永礽生活超市", "经度": 112.989347, "纬度": 28.16576, "参考值1": 12.89, "参考值2": 899, "参考值3": 1.82 }, "geometry": { "type": "Point", "coordinates": [ 112.98278014020697, 28.160099347558265 ] } }, { "type": "Feature", "properties": { "id": 348, "geom": "SRID=4326;POINT(112.976724 28.170855)", "零售户": "长沙市天心区汇际食品店", "经度": 112.976724, "纬度": 28.170855, "参考值1": 12.55, "参考值2": 670, "参考值3": 1.82 }, "geometry": { "type": "Point", "coordinates": [ 112.970169040774778, 28.165155136099138 ] } }, { "type": "Feature", "properties": { "id": 349, "geom": "SRID=4326;POINT(113.006387 28.130741)", "零售户": "长沙市天心区实宜便利店", "经度": 113.006387, "纬度": 28.130741, "参考值1": 12.39, "参考值2": 783, "参考值3": 1.82 }, "geometry": { "type": "Point", "coordinates": [ 112.999830472875885, 28.124908772168201 ] } }, { "type": "Feature", "properties": { "id": 350, "geom": "SRID=4326;POINT(112.985409 28.159971)", "零售户": "长沙市天心区东理超市", "经度": 112.985409, "纬度": 28.159971, "参考值1": 12.73, "参考值2": 940, "参考值3": 1.82 }, "geometry": { "type": "Point", "coordinates": [ 112.978837638920012, 28.154312614257652 ] } }, { "type": "Feature", "properties": { "id": 351, "geom": "SRID=4326;POINT(112.982909 28.125879)", "零售户": "湖南千惠商贸连锁有限公司新", "经度": 112.982909, "纬度": 28.125879, "参考值1": 12.47, "参考值2": 779, "参考值3": 1.81 }, "geometry": { "type": "Point", "coordinates": [ 112.976309257843553, 28.120207756915235 ] } }, { "type": "Feature", "properties": { "id": 352, "geom": "SRID=4326;POINT(112.999299 28.153272)", "零售户": "长沙市天心区轩豪超市", "经度": 112.999299, "纬度": 28.153272, "参考值1": 12.4, "参考值2": 820, "参考值3": 1.81 }, "geometry": { "type": "Point", "coordinates": [ 112.992740032576677, 28.147539462707865 ] } }, { "type": "Feature", "properties": { "id": 353, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "湖南千惠商贸连锁有限公司白", "经度": 112.996195, "纬度": 28.144471, "参考值1": 12.38, "参考值2": 766, "参考值3": 1.81 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 354, "geom": "SRID=4326;POINT(113.00068 28.150175)", "零售户": "湖南千惠商贸连锁有限公司竹", "经度": 113.00068, "纬度": 28.150175, "参考值1": 12.3, "参考值2": 753, "参考值3": 1.81 }, "geometry": { "type": "Point", "coordinates": [ 112.994121998095792, 28.144425812435916 ] } }, { "type": "Feature", "properties": { "id": 355, "geom": "SRID=4326;POINT(112.987401 28.191598)", "零售户": "长沙市天心区伟贤食品店", "经度": 112.987401, "纬度": 28.191598, "参考值1": 12.5, "参考值2": 702, "参考值3": 1.81 }, "geometry": { "type": "Point", "coordinates": [ 112.980829822060116, 28.185939879823025 ] } }, { "type": "Feature", "properties": { "id": 356, "geom": "SRID=4326;POINT(112.978339 28.179178)", "零售户": "长沙市天心区地富综合经营部", "经度": 112.978339, "纬度": 28.179178, "参考值1": 13.16, "参考值2": 1013, "参考值3": 1.81 }, "geometry": { "type": "Point", "coordinates": [ 112.971781217293355, 28.17349121421444 ] } }, { "type": "Feature", "properties": { "id": 357, "geom": "SRID=4326;POINT(112.977438 28.184915)", "零售户": "长沙市天心区怪物鼠超市", "经度": 112.977438, "纬度": 28.184915, "参考值1": 12.66, "参考值2": 939, "参考值3": 1.8 }, "geometry": { "type": "Point", "coordinates": [ 112.970880131180962, 28.179220794956176 ] } }, { "type": "Feature", "properties": { "id": 358, "geom": "SRID=4326;POINT(112.990374 28.180223)", "零售户": "长沙市天心区域城食品店", "经度": 112.990374, "纬度": 28.180223, "参考值1": 12.44, "参考值2": 715, "参考值3": 1.8 }, "geometry": { "type": "Point", "coordinates": [ 112.983810142996802, 28.174559723656852 ] } }, { "type": "Feature", "properties": { "id": 359, "geom": "SRID=4326;POINT(113.005479 28.128658)", "零售户": "长沙市天心区颐庄酒窖", "经度": 113.005479, "纬度": 28.128658, "参考值1": 12.12, "参考值2": 478, "参考值3": 1.8 }, "geometry": { "type": "Point", "coordinates": [ 112.998917672875791, 28.122839135829942 ] } }, { "type": "Feature", "properties": { "id": 360, "geom": "SRID=4326;POINT(112.981476 28.185608)", "零售户": "长沙市天心区尊诚便利店", "经度": 112.981476, "纬度": 28.185608, "参考值1": 12.43, "参考值2": 906, "参考值3": 1.79 }, "geometry": { "type": "Point", "coordinates": [ 112.974911370038967, 28.179939506429271 ] } }, { "type": "Feature", "properties": { "id": 361, "geom": "SRID=4326;POINT(112.978345 28.15766)", "零售户": "长沙市天心区函宇超市", "经度": 112.978345, "纬度": 28.15766, "参考值1": 12.56, "参考值2": 876, "参考值3": 1.79 }, "geometry": { "type": "Point", "coordinates": [ 112.971779253011661, 28.151971258137365 ] } }, { "type": "Feature", "properties": { "id": 362, "geom": "SRID=4326;POINT(113.002148 28.118339)", "零售户": "湖南千惠商贸连锁有限公司湘", "经度": 113.002148, "纬度": 28.118339, "参考值1": 12.31, "参考值2": 771, "参考值3": 1.79 }, "geometry": { "type": "Point", "coordinates": [ 112.995571158820383, 28.112565638179021 ] } }, { "type": "Feature", "properties": { "id": 363, "geom": "SRID=4326;POINT(113.001399 28.131309)", "零售户": "长沙市天心区爱门前生活超市", "经度": 113.001399, "纬度": 28.131309, "参考值1": 12.79, "参考值2": 1019, "参考值3": 1.79 }, "geometry": { "type": "Point", "coordinates": [ 112.994825522692068, 28.125546602383924 ] } }, { "type": "Feature", "properties": { "id": 364, "geom": "SRID=4326;POINT(113.001949 28.134318)", "零售户": "长沙市天心区军丰超市", "经度": 113.001949, "纬度": 28.134318, "参考值1": 12.35, "参考值2": 755, "参考值3": 1.79 }, "geometry": { "type": "Point", "coordinates": [ 112.995379605181142, 28.12854922425311 ] } }, { "type": "Feature", "properties": { "id": 365, "geom": "SRID=4326;POINT(112.977119 28.188508)", "零售户": "长沙市天心区归武食品店", "经度": 112.977119, "纬度": 28.188508, "参考值1": 12.72, "参考值2": 965, "参考值3": 1.79 }, "geometry": { "type": "Point", "coordinates": [ 112.970559838152823, 28.182810682689354 ] } }, { "type": "Feature", "properties": { "id": 366, "geom": "SRID=4326;POINT(112.994956 28.115658)", "零售户": "长沙市天心区建杰烟酒店", "经度": 112.994956, "纬度": 28.115658, "参考值1": 12.75, "参考值2": 1115, "参考值3": 1.78 }, "geometry": { "type": "Point", "coordinates": [ 112.988360396788181, 28.109959452666931 ] } }, { "type": "Feature", "properties": { "id": 367, "geom": "SRID=4326;POINT(112.978721 28.199298)", "零售户": "长沙市天心区鲜蕾食品店", "经度": 112.978721, "纬度": 28.199298, "参考值1": 12.84, "参考值2": 937, "参考值3": 1.78 }, "geometry": { "type": "Point", "coordinates": [ 112.972150009666137, 28.193610854765112 ] } }, { "type": "Feature", "properties": { "id": 368, "geom": "SRID=4326;POINT(112.978357 28.141391)", "零售户": "长沙市天心区忠群便利店", "经度": 112.978357, "纬度": 28.141391, "参考值1": 12.33, "参考值2": 834, "参考值3": 1.78 }, "geometry": { "type": "Point", "coordinates": [ 112.971775511772364, 28.135698418731781 ] } }, { "type": "Feature", "properties": { "id": 369, "geom": "SRID=4326;POINT(112.998213 28.186168)", "零售户": "长沙市天心区欣泽超市", "经度": 112.998213, "纬度": 28.186168, "参考值1": 12.44, "参考值2": 875, "参考值3": 1.77 }, "geometry": { "type": "Point", "coordinates": [ 112.9916605856953, 28.18044936953935 ] } }, { "type": "Feature", "properties": { "id": 370, "geom": "SRID=4326;POINT(112.992679 28.146868)", "零售户": "湖南千惠商贸连锁有限公司友", "经度": 112.992679, "纬度": 28.146868, "参考值1": 12.13, "参考值2": 752, "参考值3": 1.77 }, "geometry": { "type": "Point", "coordinates": [ 112.986099838623474, 28.141189592370502 ] } }, { "type": "Feature", "properties": { "id": 372, "geom": "SRID=4326;POINT(112.974374 28.127552)", "零售户": "湖南千惠商贸连锁有限公司新", "经度": 112.974374, "纬度": 28.127552, "参考值1": 12.2, "参考值2": 762, "参考值3": 1.77 }, "geometry": { "type": "Point", "coordinates": [ 112.967790111462492, 28.121820884418174 ] } }, { "type": "Feature", "properties": { "id": 373, "geom": "SRID=4326;POINT(112.987859 28.102391)", "零售户": "长沙市天心区汇尚食品店", "经度": 112.987859, "纬度": 28.102391, "参考值1": 12.32, "参考值2": 793, "参考值3": 1.76 }, "geometry": { "type": "Point", "coordinates": [ 112.98126023720414, 28.096725433930924 ] } }, { "type": "Feature", "properties": { "id": 374, "geom": "SRID=4326;POINT(112.995867 28.148635)", "零售户": "长沙市天心区蔚然锦和便利店", "经度": 112.995867, "纬度": 28.148635, "参考值1": 12.25, "参考值2": 809, "参考值3": 1.76 }, "geometry": { "type": "Point", "coordinates": [ 112.989295193247443, 28.142934674785611 ] } }, { "type": "Feature", "properties": { "id": 375, "geom": "SRID=4326;POINT(113.009479 28.13686)", "零售户": "长沙市天心区军鹏百货店", "经度": 113.009479, "纬度": 28.13686, "参考值1": 12.23, "参考值2": 794, "参考值3": 1.76 }, "geometry": { "type": "Point", "coordinates": [ 113.002939732301598, 28.130979612964477 ] } }, { "type": "Feature", "properties": { "id": 376, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区寿林超市", "经度": 112.996195, "纬度": 28.144471, "参考值1": 12.24, "参考值2": 873, "参考值3": 1.76 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 377, "geom": "SRID=4326;POINT(112.995021 28.090515)", "零售户": "长沙市天心区辉协便利店", "经度": 112.995021, "纬度": 28.090515, "参考值1": 12.28, "参考值2": 905, "参考值3": 1.75 }, "geometry": { "type": "Point", "coordinates": [ 112.988440447651485, 28.084819654650509 ] } }, { "type": "Feature", "properties": { "id": 378, "geom": "SRID=4326;POINT(113.007841 28.141801)", "零售户": "湖南千惠商贸连锁有限公司南", "经度": 113.007841, "纬度": 28.141801, "参考值1": 12.03, "参考值2": 758, "参考值3": 1.74 }, "geometry": { "type": "Point", "coordinates": [ 113.001299795974262, 28.13594843336406 ] } }, { "type": "Feature", "properties": { "id": 379, "geom": "SRID=4326;POINT(112.98041 28.195366)", "零售户": "长沙市天心区腾久便利店", "经度": 112.98041, "纬度": 28.195366, "参考值1": 12.23, "参考值2": 931, "参考值3": 1.74 }, "geometry": { "type": "Point", "coordinates": [ 112.973839949474367, 28.189690395339902 ] } }, { "type": "Feature", "properties": { "id": 380, "geom": "SRID=4326;POINT(113.007841 28.141801)", "零售户": "湖南千惠商贸连锁有限公司井", "经度": 113.007841, "纬度": 28.141801, "参考值1": 12.03, "参考值2": 756, "参考值3": 1.74 }, "geometry": { "type": "Point", "coordinates": [ 113.001299795974262, 28.13594843336406 ] } }, { "type": "Feature", "properties": { "id": 381, "geom": "SRID=4326;POINT(112.999495 28.121314)", "零售户": "长沙市天心区俊玖鸿平价超市", "经度": 112.999495, "纬度": 28.121314, "参考值1": 12.18, "参考值2": 877, "参考值3": 1.74 }, "geometry": { "type": "Point", "coordinates": [ 112.992910774925832, 28.115572848380435 ] } }, { "type": "Feature", "properties": { "id": 382, "geom": "SRID=4326;POINT(112.985562 28.158169)", "零售户": "长沙市天心区绿筱食品便利店", "经度": 112.985562, "纬度": 28.158169, "参考值1": 11.74, "参考值2": 653, "参考值3": 1.74 }, "geometry": { "type": "Point", "coordinates": [ 112.978989190203094, 28.152510405277994 ] } }, { "type": "Feature", "properties": { "id": 383, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区森远食品店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 11.55, "参考值2": 763, "参考值3": 1.74 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 384, "geom": "SRID=4326;POINT(112.9794 28.14862)", "零售户": "长沙市天心区爽润超市", "经度": 112.9794, "纬度": 28.14862, "参考值1": 12.0, "参考值2": 741, "参考值3": 1.74 }, "geometry": { "type": "Point", "coordinates": [ 112.972823992813574, 28.142936428602045 ] } }, { "type": "Feature", "properties": { "id": 385, "geom": "SRID=4326;POINT(112.999479 28.131879)", "零售户": "湖南千惠商贸连锁有限公司五", "经度": 112.999479, "纬度": 28.131879, "参考值1": 12.02, "参考值2": 755, "参考值3": 1.74 }, "geometry": { "type": "Point", "coordinates": [ 112.992900290154509, 28.126139415207803 ] } }, { "type": "Feature", "properties": { "id": 386, "geom": "SRID=4326;POINT(112.984471 28.19196)", "零售户": "长沙市天心区豪放烟酒店", "经度": 112.984471, "纬度": 28.19196, "参考值1": 12.26, "参考值2": 776, "参考值3": 1.74 }, "geometry": { "type": "Point", "coordinates": [ 112.977899933139142, 28.186300269883198 ] } }, { "type": "Feature", "properties": { "id": 387, "geom": "SRID=4326;POINT(112.993547 28.108758)", "零售户": "长沙市天心区林喜食品店", "经度": 112.993547, "纬度": 28.108758, "参考值1": 12.14, "参考值2": 728, "参考值3": 1.73 }, "geometry": { "type": "Point", "coordinates": [ 112.98695033565015, 28.103069662924369 ] } }, { "type": "Feature", "properties": { "id": 388, "geom": "SRID=4326;POINT(112.993091 28.198961)", "零售户": "长沙市天心区万品惠烟酒商行", "经度": 112.993091, "纬度": 28.198961, "参考值1": 12.08, "参考值2": 831, "参考值3": 1.73 }, "geometry": { "type": "Point", "coordinates": [ 112.986518398523799, 28.193281719167803 ] } }, { "type": "Feature", "properties": { "id": 389, "geom": "SRID=4326;POINT(112.982223 28.196508)", "零售户": "长沙市天心区润勇食品店", "经度": 112.982223, "纬度": 28.196508, "参考值1": 12.12, "参考值2": 838, "参考值3": 1.73 }, "geometry": { "type": "Point", "coordinates": [ 112.975649791917519, 28.190840772497353 ] } }, { "type": "Feature", "properties": { "id": 390, "geom": "SRID=4326;POINT(112.999459 28.065801)", "零售户": "湖南千惠商贸连锁有限公司南", "经度": 112.999459, "纬度": 28.065801, "参考值1": 11.9, "参考值2": 756, "参考值3": 1.73 }, "geometry": { "type": "Point", "coordinates": [ 112.992910376570563, 28.060069092715811 ] } }, { "type": "Feature", "properties": { "id": 392, "geom": "SRID=4326;POINT(112.996539 28.091528)", "零售户": "湖南千惠商贸连锁有限公司芙", "经度": 112.996539, "纬度": 28.091528, "参考值1": 11.91, "参考值2": 755, "参考值3": 1.72 }, "geometry": { "type": "Point", "coordinates": [ 112.989960577620991, 28.08581983289924 ] } }, { "type": "Feature", "properties": { "id": 393, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区坤坤食品店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 12.18, "参考值2": 822, "参考值3": 1.72 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 394, "geom": "SRID=4326;POINT(112.965059 28.057616)", "零售户": "长沙市天心区双琪副食商店", "经度": 112.965059, "纬度": 28.057616, "参考值1": 12.24, "参考值2": 892, "参考值3": 1.72 }, "geometry": { "type": "Point", "coordinates": [ 112.958541876812802, 28.051767636981545 ] } }, { "type": "Feature", "properties": { "id": 395, "geom": "SRID=4326;POINT(113.016559 28.116645)", "零售户": "长沙市天心区湘之香食品店", "经度": 113.016559, "纬度": 28.116645, "参考值1": 12.12, "参考值2": 821, "参考值3": 1.72 }, "geometry": { "type": "Point", "coordinates": [ 113.010039863018349, 28.110639127634265 ] } }, { "type": "Feature", "properties": { "id": 396, "geom": "SRID=4326;POINT(112.977735 28.179132)", "零售户": "长沙市天心区九之九食品店", "经度": 112.977735, "纬度": 28.179132, "参考值1": 12.07, "参考值2": 714, "参考值3": 1.72 }, "geometry": { "type": "Point", "coordinates": [ 112.971178371127266, 28.173440619109062 ] } }, { "type": "Feature", "properties": { "id": 397, "geom": "SRID=4326;POINT(112.998043 28.099934)", "零售户": "长沙市天心区妙言商贸服务部", "经度": 112.998043, "纬度": 28.099934, "参考值1": 11.97, "参考值2": 789, "参考值3": 1.71 }, "geometry": { "type": "Point", "coordinates": [ 112.991460711208319, 28.09420970807593 ] } }, { "type": "Feature", "properties": { "id": 398, "geom": "SRID=4326;POINT(112.984053 28.205094)", "零售户": "长沙市天心区吉彩多超市", "经度": 112.984053, "纬度": 28.205094, "参考值1": 12.28, "参考值2": 908, "参考值3": 1.71 }, "geometry": { "type": "Point", "coordinates": [ 112.977470015813779, 28.199430384069903 ] } }, { "type": "Feature", "properties": { "id": 399, "geom": "SRID=4326;POINT(112.974496 28.123642)", "零售户": "长沙市天心区金娥超市", "经度": 112.974496, "纬度": 28.123642, "参考值1": 11.54, "参考值2": 761, "参考值3": 1.71 }, "geometry": { "type": "Point", "coordinates": [ 112.967909892298778, 28.117911688205897 ] } }, { "type": "Feature", "properties": { "id": 400, "geom": "SRID=4326;POINT(112.982534 28.154806)", "零售户": "长沙市天心区旺迎超市", "经度": 112.982534, "纬度": 28.154806, "参考值1": 12.06, "参考值2": 735, "参考值3": 1.71 }, "geometry": { "type": "Point", "coordinates": [ 112.975960001678786, 28.149139797850154 ] } }, { "type": "Feature", "properties": { "id": 401, "geom": "SRID=4326;POINT(113.008143 28.138867)", "零售户": "长沙市天心区黑旺烟酒店", "经度": 113.008143, "纬度": 28.138867, "参考值1": 11.99, "参考值2": 851, "参考值3": 1.7 }, "geometry": { "type": "Point", "coordinates": [ 113.00160015569783, 28.133008887361989 ] } }, { "type": "Feature", "properties": { "id": 402, "geom": "SRID=4326;POINT(113.007302 28.099775)", "零售户": "长沙市天心区楷瑞便利店", "经度": 113.007302, "纬度": 28.099775, "参考值1": 11.85, "参考值2": 824, "参考值3": 1.7 }, "geometry": { "type": "Point", "coordinates": [ 113.000750144077344, 28.093928840596966 ] } }, { "type": "Feature", "properties": { "id": 403, "geom": "SRID=4326;POINT(112.993168 28.198806)", "零售户": "湖南千惠商贸连锁有限公司贺", "经度": 112.993168, "纬度": 28.198806, "参考值1": 11.66, "参考值2": 731, "参考值3": 1.7 }, "geometry": { "type": "Point", "coordinates": [ 112.986595661647968, 28.193126291075071 ] } }, { "type": "Feature", "properties": { "id": 404, "geom": "SRID=4326;POINT(112.97205 28.111479)", "零售户": "长沙市天心区伟芳便利店", "经度": 112.97205, "纬度": 28.111479, "参考值1": 11.73, "参考值2": 822, "参考值3": 1.69 }, "geometry": { "type": "Point", "coordinates": [ 112.965469819936729, 28.105720742649307 ] } }, { "type": "Feature", "properties": { "id": 406, "geom": "SRID=4326;POINT(112.981092 28.17875)", "零售户": "长沙市天心区田昌华便利店", "经度": 112.981092, "纬度": 28.17875, "参考值1": 11.65, "参考值2": 753, "参考值3": 1.69 }, "geometry": { "type": "Point", "coordinates": [ 112.974530051949785, 28.173080215834382 ] } }, { "type": "Feature", "properties": { "id": 407, "geom": "SRID=4326;POINT(112.986386 28.180696)", "零售户": "湖南千惠商贸连锁有限公司嘉", "经度": 112.986386, "纬度": 28.180696, "参考值1": 11.88, "参考值2": 754, "参考值3": 1.69 }, "geometry": { "type": "Point", "coordinates": [ 112.979820298917602, 28.175039627347562 ] } }, { "type": "Feature", "properties": { "id": 408, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区建浩便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 11.47, "参考值2": 763, "参考值3": 1.69 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 409, "geom": "SRID=4326;POINT(112.981313 28.169729)", "零售户": "长沙市天心区珍伍超市", "经度": 112.981313, "纬度": 28.169729, "参考值1": 11.57, "参考值2": 742, "参考值3": 1.69 }, "geometry": { "type": "Point", "coordinates": [ 112.974749974649313, 28.164060080560819 ] } }, { "type": "Feature", "properties": { "id": 410, "geom": "SRID=4326;POINT(112.981855 28.199352)", "零售户": "长沙市天心区旺威食品店", "经度": 112.981855, "纬度": 28.199352, "参考值1": 11.8, "参考值2": 841, "参考值3": 1.68 }, "geometry": { "type": "Point", "coordinates": [ 112.975279527726485, 28.193682603020758 ] } }, { "type": "Feature", "properties": { "id": 411, "geom": "SRID=4326;POINT(112.988821 28.169672)", "零售户": "长沙市天心区绣锦便利超市", "经度": 112.988821, "纬度": 28.169672, "参考值1": 11.98, "参考值2": 826, "参考值3": 1.68 }, "geometry": { "type": "Point", "coordinates": [ 112.982255482265103, 28.164013021395935 ] } }, { "type": "Feature", "properties": { "id": 412, "geom": "SRID=4326;POINT(112.995867 28.148635)", "零售户": "湖南六三六连锁管理有限公司", "经度": 112.995867, "纬度": 28.148635, "参考值1": 11.42, "参考值2": 559, "参考值3": 1.67 }, "geometry": { "type": "Point", "coordinates": [ 112.989295193247443, 28.142934674785611 ] } }, { "type": "Feature", "properties": { "id": 413, "geom": "SRID=4326;POINT(112.978357 28.141391)", "零售户": "长沙市天心区先赞食品店", "经度": 112.978357, "纬度": 28.141391, "参考值1": 11.86, "参考值2": 981, "参考值3": 1.67 }, "geometry": { "type": "Point", "coordinates": [ 112.971775511772364, 28.135698418731781 ] } }, { "type": "Feature", "properties": { "id": 414, "geom": "SRID=4326;POINT(113.000576 28.101515)", "零售户": "长沙市天心区响丹丹综合超市", "经度": 113.000576, "纬度": 28.101515, "参考值1": 11.49, "参考值2": 870, "参考值3": 1.67 }, "geometry": { "type": "Point", "coordinates": [ 112.993999498251668, 28.095762504940968 ] } }, { "type": "Feature", "properties": { "id": 415, "geom": "SRID=4326;POINT(112.983095 28.181792)", "零售户": "湖南千惠商贸连锁有限公司白", "经度": 112.983095, "纬度": 28.181792, "参考值1": 11.47, "参考值2": 731, "参考值3": 1.66 }, "geometry": { "type": "Point", "coordinates": [ 112.976530331987718, 28.176130176218738 ] } }, { "type": "Feature", "properties": { "id": 416, "geom": "SRID=4326;POINT(113.001068 28.120553)", "零售户": "长沙市天心区清琪便利店", "经度": 113.001068, "纬度": 28.120553, "参考值1": 11.4, "参考值2": 866, "参考值3": 1.65 }, "geometry": { "type": "Point", "coordinates": [ 112.994488166758771, 28.114793365163525 ] } }, { "type": "Feature", "properties": { "id": 417, "geom": "SRID=4326;POINT(112.986171 28.125495)", "零售户": "长沙市天心区丹隆便利店", "经度": 112.986171, "纬度": 28.125495, "参考值1": 11.67, "参考值2": 743, "参考值3": 1.64 }, "geometry": { "type": "Point", "coordinates": [ 112.979569595109481, 28.119829642877281 ] } }, { "type": "Feature", "properties": { "id": 418, "geom": "SRID=4326;POINT(112.986585 28.178446)", "零售户": "湖南千惠商贸连锁有限公司天", "经度": 112.986585, "纬度": 28.178446, "参考值1": 11.29, "参考值2": 713, "参考值3": 1.64 }, "geometry": { "type": "Point", "coordinates": [ 112.980019729821549, 28.172789736176838 ] } }, { "type": "Feature", "properties": { "id": 419, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区文潇食品店", "经度": 112.978226, "纬度": 28.139107, "参考值1": 11.37, "参考值2": 793, "参考值3": 1.64 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 420, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区润瑞食品商行", "经度": 112.978226, "纬度": 28.139107, "参考值1": 11.4, "参考值2": 882, "参考值3": 1.63 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 421, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区古堆山便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 11.42, "参考值2": 777, "参考值3": 1.63 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 422, "geom": "SRID=4326;POINT(112.978753 28.1229)", "零售户": "长沙市天心区康训姣食品店", "经度": 112.978753, "纬度": 28.1229, "参考值1": 11.49, "参考值2": 806, "参考值3": 1.63 }, "geometry": { "type": "Point", "coordinates": [ 112.972157338631447, 28.117206896108069 ] } }, { "type": "Feature", "properties": { "id": 423, "geom": "SRID=4326;POINT(112.9794 28.14862)", "零售户": "长沙市天心区乐礽便利店", "经度": 112.9794, "纬度": 28.14862, "参考值1": 11.21, "参考值2": 799, "参考值3": 1.63 }, "geometry": { "type": "Point", "coordinates": [ 112.972823992813574, 28.142936428602045 ] } }, { "type": "Feature", "properties": { "id": 424, "geom": "SRID=4326;POINT(112.978347 28.156179)", "零售户": "湖南千惠商贸连锁有限公司书", "经度": 112.978347, "纬度": 28.156179, "参考值1": 11.22, "参考值2": 707, "参考值3": 1.63 }, "geometry": { "type": "Point", "coordinates": [ 112.971779988200467, 28.150489957430569 ] } }, { "type": "Feature", "properties": { "id": 425, "geom": "SRID=4326;POINT(112.990517 28.073601)", "零售户": "长沙市天心区晴隆便利店", "经度": 112.990517, "纬度": 28.073601, "参考值1": 11.43, "参考值2": 833, "参考值3": 1.63 }, "geometry": { "type": "Point", "coordinates": [ 112.983946386834617, 28.067935397281236 ] } }, { "type": "Feature", "properties": { "id": 426, "geom": "SRID=4326;POINT(112.948115 28.059238)", "零售户": "长沙市天心区吉庆商店", "经度": 112.948115, "纬度": 28.059238, "参考值1": 10.8, "参考值2": 703, "参考值3": 1.62 }, "geometry": { "type": "Point", "coordinates": [ 112.941669905454418, 28.053098728296259 ] } }, { "type": "Feature", "properties": { "id": 427, "geom": "SRID=4326;POINT(112.994956 28.115658)", "零售户": "长沙市天心区宜邻居超市", "经度": 112.994956, "纬度": 28.115658, "参考值1": 10.81, "参考值2": 761, "参考值3": 1.62 }, "geometry": { "type": "Point", "coordinates": [ 112.988360396788181, 28.109959452666931 ] } }, { "type": "Feature", "properties": { "id": 428, "geom": "SRID=4326;POINT(112.974496 28.123642)", "零售户": "长沙市天心区新邵便利店", "经度": 112.974496, "纬度": 28.123642, "参考值1": 11.51, "参考值2": 825, "参考值3": 1.62 }, "geometry": { "type": "Point", "coordinates": [ 112.967909892298778, 28.117911688205897 ] } }, { "type": "Feature", "properties": { "id": 429, "geom": "SRID=4326;POINT(112.999679 28.066093)", "零售户": "湖南千惠商贸连锁有限公司芙", "经度": 112.999679, "纬度": 28.066093, "参考值1": 11.18, "参考值2": 709, "参考值3": 1.62 }, "geometry": { "type": "Point", "coordinates": [ 112.993130841176679, 28.060358588311317 ] } }, { "type": "Feature", "properties": { "id": 430, "geom": "SRID=4326;POINT(113.03712 28.102694)", "零售户": "长沙市天心区宏鑫烟酒商行", "经度": 113.03712, "纬度": 28.102694, "参考值1": 11.33, "参考值2": 896, "参考值3": 1.62 }, "geometry": { "type": "Point", "coordinates": [ 113.030679440151317, 28.0963912891124 ] } }, { "type": "Feature", "properties": { "id": 431, "geom": "SRID=4326;POINT(112.987861 28.159479)", "零售户": "长沙市天心区睿汉食品经营部", "经度": 112.987861, "纬度": 28.159479, "参考值1": 11.28, "参考值2": 818, "参考值3": 1.62 }, "geometry": { "type": "Point", "coordinates": [ 112.981289340729262, 28.153820220333436 ] } }, { "type": "Feature", "properties": { "id": 432, "geom": "SRID=4326;POINT(112.993547 28.108758)", "零售户": "湖南千惠商贸连锁有限公司芙", "经度": 112.993547, "纬度": 28.108758, "参考值1": 11.13, "参考值2": 696, "参考值3": 1.62 }, "geometry": { "type": "Point", "coordinates": [ 112.98695033565015, 28.103069662924369 ] } }, { "type": "Feature", "properties": { "id": 433, "geom": "SRID=4326;POINT(112.989962 28.175053)", "零售户": "长沙市天心区岳母娘食品店", "经度": 112.989962, "纬度": 28.175053, "参考值1": 11.12, "参考值2": 641, "参考值3": 1.61 }, "geometry": { "type": "Point", "coordinates": [ 112.983398259037074, 28.169391229152804 ] } }, { "type": "Feature", "properties": { "id": 434, "geom": "SRID=4326;POINT(113.019931 28.105005)", "零售户": "长沙市天心区植数便利店", "经度": 113.019931, "纬度": 28.105005, "参考值1": 11.26, "参考值2": 866, "参考值3": 1.59 }, "geometry": { "type": "Point", "coordinates": [ 113.013429781757864, 28.098940371693754 ] } }, { "type": "Feature", "properties": { "id": 435, "geom": "SRID=4326;POINT(112.991475 28.186608)", "零售户": "长沙市天心区豪爵名烟名酒形", "经度": 112.991475, "纬度": 28.186608, "参考值1": 10.73, "参考值2": 559, "参考值3": 1.59 }, "geometry": { "type": "Point", "coordinates": [ 112.984909798117414, 28.180939632298948 ] } }, { "type": "Feature", "properties": { "id": 436, "geom": "SRID=4326;POINT(112.996539 28.091528)", "零售户": "长沙市天心区海仕生鲜综合超", "经度": 112.996539, "纬度": 28.091528, "参考值1": 11.37, "参考值2": 953, "参考值3": 1.59 }, "geometry": { "type": "Point", "coordinates": [ 112.989960577620991, 28.08581983289924 ] } }, { "type": "Feature", "properties": { "id": 437, "geom": "SRID=4326;POINT(112.978725 28.172681)", "零售户": "长沙市天心区昊昌便利店", "经度": 112.978725, "纬度": 28.172681, "参考值1": 11.45, "参考值2": 878, "参考值3": 1.59 }, "geometry": { "type": "Point", "coordinates": [ 112.972166519027581, 28.166996983703878 ] } }, { "type": "Feature", "properties": { "id": 438, "geom": "SRID=4326;POINT(112.976316 28.17651)", "零售户": "长沙市天心区雪文食品店", "经度": 112.976316, "纬度": 28.17651, "参考值1": 11.04, "参考值2": 814, "参考值3": 1.59 }, "geometry": { "type": "Point", "coordinates": [ 112.969762619806005, 28.170806695343057 ] } }, { "type": "Feature", "properties": { "id": 439, "geom": "SRID=4326;POINT(112.981152 28.16782)", "零售户": "长沙市天心区南湖蔚然锦和便", "经度": 112.981152, "纬度": 28.16782, "参考值1": 11.07, "参考值2": 815, "参考值3": 1.59 }, "geometry": { "type": "Point", "coordinates": [ 112.974588458013955, 28.162150123230745 ] } }, { "type": "Feature", "properties": { "id": 440, "geom": "SRID=4326;POINT(113.007941 28.114509)", "零售户": "长沙市天心区书令超市", "经度": 113.007941, "纬度": 28.114509, "参考值1": 11.06, "参考值2": 796, "参考值3": 1.58 }, "geometry": { "type": "Point", "coordinates": [ 113.001385112430341, 28.108651076546391 ] } }, { "type": "Feature", "properties": { "id": 441, "geom": "SRID=4326;POINT(112.998695 28.138229)", "零售户": "长沙市天心区川流超市", "经度": 112.998695, "纬度": 28.138229, "参考值1": 11.24, "参考值2": 820, "参考值3": 1.58 }, "geometry": { "type": "Point", "coordinates": [ 112.992119550768265, 28.132499276850254 ] } }, { "type": "Feature", "properties": { "id": 442, "geom": "SRID=4326;POINT(112.999997 28.14441)", "零售户": "长沙市天心区安林便利店", "经度": 112.999997, "纬度": 28.14441, "参考值1": 11.29, "参考值2": 865, "参考值3": 1.58 }, "geometry": { "type": "Point", "coordinates": [ 112.993431187417897, 28.138667395400763 ] } }, { "type": "Feature", "properties": { "id": 443, "geom": "SRID=4326;POINT(112.997585 28.080054)", "零售户": "长沙市天心区李锦鹏批发超市", "经度": 112.997585, "纬度": 28.080054, "参考值1": 10.93, "参考值2": 718, "参考值3": 1.58 }, "geometry": { "type": "Point", "coordinates": [ 112.991020515598663, 28.07433893964452 ] } }, { "type": "Feature", "properties": { "id": 444, "geom": "SRID=4326;POINT(112.986502 28.138113)", "零售户": "湖南千惠商贸连锁有限公司新", "经度": 112.986502, "纬度": 28.138113, "参考值1": 10.93, "参考值2": 689, "参考值3": 1.58 }, "geometry": { "type": "Point", "coordinates": [ 112.979909814493837, 28.132450000470207 ] } }, { "type": "Feature", "properties": { "id": 445, "geom": "SRID=4326;POINT(112.99036 28.191814)", "零售户": "长沙市天心区容和食品店", "经度": 112.99036, "纬度": 28.191814, "参考值1": 11.22, "参考值2": 747, "参考值3": 1.58 }, "geometry": { "type": "Point", "coordinates": [ 112.983790287687356, 28.186149326401793 ] } }, { "type": "Feature", "properties": { "id": 446, "geom": "SRID=4326;POINT(112.986993 28.111206)", "零售户": "长沙市天心区让利超市", "经度": 112.986993, "纬度": 28.111206, "参考值1": 10.95, "参考值2": 722, "参考值3": 1.58 }, "geometry": { "type": "Point", "coordinates": [ 112.98038991172325, 28.105540151597651 ] } }, { "type": "Feature", "properties": { "id": 447, "geom": "SRID=4326;POINT(112.993168 28.198806)", "零售户": "长沙市天心区奥贺烟酒超市", "经度": 112.993168, "纬度": 28.198806, "参考值1": 10.53, "参考值2": 609, "参考值3": 1.58 }, "geometry": { "type": "Point", "coordinates": [ 112.986595661647968, 28.193126291075071 ] } }, { "type": "Feature", "properties": { "id": 448, "geom": "SRID=4326;POINT(112.988459 28.162269)", "零售户": "长沙市天心区蓉儿便利店", "经度": 112.988459, "纬度": 28.162269, "参考值1": 11.15, "参考值2": 845, "参考值3": 1.58 }, "geometry": { "type": "Point", "coordinates": [ 112.981889577911389, 28.156609803579883 ] } }, { "type": "Feature", "properties": { "id": 449, "geom": "SRID=4326;POINT(112.98855 28.174388)", "零售户": "建邦便利店", "经度": 112.98855, "纬度": 28.174388, "参考值1": 11.23, "参考值2": 923, "参考值3": 1.58 }, "geometry": { "type": "Point", "coordinates": [ 112.981985317539767, 28.16872981641054 ] } }, { "type": "Feature", "properties": { "id": 450, "geom": "SRID=4326;POINT(112.978939 28.196076)", "零售户": "长沙市天心区陈百钢烟酒店", "经度": 112.978939, "纬度": 28.196076, "参考值1": 10.79, "参考值2": 604, "参考值3": 1.57 }, "geometry": { "type": "Point", "coordinates": [ 112.972370606169363, 28.190391107208278 ] } }, { "type": "Feature", "properties": { "id": 451, "geom": "SRID=4326;POINT(112.981103 28.186624)", "零售户": "长沙市天心区辉涵食品店", "经度": 112.981103, "纬度": 28.186624, "参考值1": 10.89, "参考值2": 736, "参考值3": 1.57 }, "geometry": { "type": "Point", "coordinates": [ 112.974538290429464, 28.180953591889413 ] } }, { "type": "Feature", "properties": { "id": 452, "geom": "SRID=4326;POINT(112.993932 28.199084)", "零售户": "湖南千惠商贸连锁有限公司贺", "经度": 112.993932, "纬度": 28.199084, "参考值1": 10.8, "参考值2": 693, "参考值3": 1.56 }, "geometry": { "type": "Point", "coordinates": [ 112.987360618165283, 28.193399335425784 ] } }, { "type": "Feature", "properties": { "id": 453, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区应和烟酒行", "经度": 112.978226, "纬度": 28.139107, "参考值1": 10.88, "参考值2": 862, "参考值3": 1.56 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 454, "geom": "SRID=4326;POINT(112.978357 28.141391)", "零售户": "长沙市天心区利万家超市", "经度": 112.978357, "纬度": 28.141391, "参考值1": 11.08, "参考值2": 815, "参考值3": 1.56 }, "geometry": { "type": "Point", "coordinates": [ 112.971775511772364, 28.135698418731781 ] } }, { "type": "Feature", "properties": { "id": 455, "geom": "SRID=4326;POINT(112.982035 28.185886)", "零售户": "长沙市天心区振奋服饰店", "经度": 112.982035, "纬度": 28.185886, "参考值1": 10.74, "参考值2": 785, "参考值3": 1.55 }, "geometry": { "type": "Point", "coordinates": [ 112.975469622871813, 28.180219912659254 ] } }, { "type": "Feature", "properties": { "id": 456, "geom": "SRID=4326;POINT(113.00611 28.127718)", "零售户": "长沙市天心区贺小建便利店", "经度": 113.00611, "纬度": 28.127718, "参考值1": 10.81, "参考值2": 715, "参考值3": 1.55 }, "geometry": { "type": "Point", "coordinates": [ 112.999550466091321, 28.121889509606216 ] } }, { "type": "Feature", "properties": { "id": 457, "geom": "SRID=4326;POINT(112.997585 28.080054)", "零售户": "长沙市天心区文毫超市", "经度": 112.997585, "纬度": 28.080054, "参考值1": 10.87, "参考值2": 751, "参考值3": 1.55 }, "geometry": { "type": "Point", "coordinates": [ 112.991020515598663, 28.07433893964452 ] } }, { "type": "Feature", "properties": { "id": 458, "geom": "SRID=4326;POINT(112.980772 28.170614)", "零售户": "长沙市天心区百如超市", "经度": 112.980772, "纬度": 28.170614, "参考值1": 10.73, "参考值2": 769, "参考值3": 1.55 }, "geometry": { "type": "Point", "coordinates": [ 112.974209916868006, 28.164942440383104 ] } }, { "type": "Feature", "properties": { "id": 459, "geom": "SRID=4326;POINT(112.985562 28.158169)", "零售户": "长沙市天心区邹星宇便利店", "经度": 112.985562, "纬度": 28.158169, "参考值1": 10.98, "参考值2": 764, "参考值3": 1.55 }, "geometry": { "type": "Point", "coordinates": [ 112.978989190203094, 28.152510405277994 ] } }, { "type": "Feature", "properties": { "id": 460, "geom": "SRID=4326;POINT(112.993684 28.193838)", "零售户": "长沙市天心区长益超市", "经度": 112.993684, "纬度": 28.193838, "参考值1": 10.62, "参考值2": 493, "参考值3": 1.54 }, "geometry": { "type": "Point", "coordinates": [ 112.98711688719473, 28.188156141522231 ] } }, { "type": "Feature", "properties": { "id": 461, "geom": "SRID=4326;POINT(112.980575 28.188344)", "零售户": "长沙市天心区细龙便利店", "经度": 112.980575, "纬度": 28.188344, "参考值1": 10.75, "参考值2": 752, "参考值3": 1.54 }, "geometry": { "type": "Point", "coordinates": [ 112.97400997979679, 28.182670607342619 ] } }, { "type": "Feature", "properties": { "id": 462, "geom": "SRID=4326;POINT(112.990867 28.069386)", "零售户": "长沙市天心区玉交便利店", "经度": 112.990867, "纬度": 28.069386, "参考值1": 10.89, "参考值2": 820, "参考值3": 1.54 }, "geometry": { "type": "Point", "coordinates": [ 112.984299835272822, 28.063719815424029 ] } }, { "type": "Feature", "properties": { "id": 463, "geom": "SRID=4326;POINT(112.978357 28.141391)", "零售户": "长沙市天心区旺收便利店", "经度": 112.978357, "纬度": 28.141391, "参考值1": 10.81, "参考值2": 790, "参考值3": 1.54 }, "geometry": { "type": "Point", "coordinates": [ 112.971775511772364, 28.135698418731781 ] } }, { "type": "Feature", "properties": { "id": 464, "geom": "SRID=4326;POINT(112.976316 28.17651)", "零售户": "长沙市天心区年新食品店", "经度": 112.976316, "纬度": 28.17651, "参考值1": 10.76, "参考值2": 815, "参考值3": 1.54 }, "geometry": { "type": "Point", "coordinates": [ 112.969762619806005, 28.170806695343057 ] } }, { "type": "Feature", "properties": { "id": 465, "geom": "SRID=4326;POINT(112.977809 28.198814)", "零售户": "长沙市天心区凯桃便利店", "经度": 112.977809, "纬度": 28.198814, "参考值1": 10.78, "参考值2": 732, "参考值3": 1.54 }, "geometry": { "type": "Point", "coordinates": [ 112.971240158467154, 28.193120203586513 ] } }, { "type": "Feature", "properties": { "id": 466, "geom": "SRID=4326;POINT(112.99001 28.191473)", "零售户": "长沙市天心区邹记食品店", "经度": 112.99001, "纬度": 28.191473, "参考值1": 10.78, "参考值2": 793, "参考值3": 1.54 }, "geometry": { "type": "Point", "coordinates": [ 112.983440244669879, 28.185809579550419 ] } }, { "type": "Feature", "properties": { "id": 467, "geom": "SRID=4326;POINT(112.990781 28.137031)", "零售户": "湖南千惠商贸连锁有限公司木", "经度": 112.990781, "纬度": 28.137031, "参考值1": 10.63, "参考值2": 687, "参考值3": 1.54 }, "geometry": { "type": "Point", "coordinates": [ 112.984189934971354, 28.131359286307379 ] } }, { "type": "Feature", "properties": { "id": 468, "geom": "SRID=4326;POINT(112.989598 28.171707)", "零售户": "长沙市天心区喜宏便利店", "经度": 112.989598, "纬度": 28.171707, "参考值1": 10.93, "参考值2": 781, "参考值3": 1.53 }, "geometry": { "type": "Point", "coordinates": [ 112.983033529476373, 28.166046215779144 ] } }, { "type": "Feature", "properties": { "id": 469, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区来惠便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 10.65, "参考值2": 739, "参考值3": 1.53 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 470, "geom": "SRID=4326;POINT(112.999459 28.065801)", "零售户": "长沙市天心区爱莱客便利店", "经度": 112.999459, "纬度": 28.065801, "参考值1": 10.68, "参考值2": 705, "参考值3": 1.53 }, "geometry": { "type": "Point", "coordinates": [ 112.992910376570563, 28.060069092715811 ] } }, { "type": "Feature", "properties": { "id": 471, "geom": "SRID=4326;POINT(112.986357 28.041941)", "零售户": "长沙市天心区玉嫦便利店", "经度": 112.986357, "纬度": 28.041941, "参考值1": 10.56, "参考值2": 703, "参考值3": 1.53 }, "geometry": { "type": "Point", "coordinates": [ 112.979787279207017, 28.036283499671146 ] } }, { "type": "Feature", "properties": { "id": 472, "geom": "SRID=4326;POINT(112.989564 28.17171)", "零售户": "长沙市天心区蓉娇烟店", "经度": 112.989564, "纬度": 28.17171, "参考值1": 10.76, "参考值2": 820, "参考值3": 1.53 }, "geometry": { "type": "Point", "coordinates": [ 112.982999505984452, 28.166049312770372 ] } }, { "type": "Feature", "properties": { "id": 473, "geom": "SRID=4326;POINT(112.990517 28.073601)", "零售户": "长沙市天心区龙晖凤便利店", "经度": 112.990517, "纬度": 28.073601, "参考值1": 10.66, "参考值2": 775, "参考值3": 1.53 }, "geometry": { "type": "Point", "coordinates": [ 112.983946386834617, 28.067935397281236 ] } }, { "type": "Feature", "properties": { "id": 474, "geom": "SRID=4326;POINT(112.977133 28.196491)", "零售户": "长沙市天心区高老倌土特产店", "经度": 112.977133, "纬度": 28.196491, "参考值1": 10.04, "参考值2": 446, "参考值3": 1.53 }, "geometry": { "type": "Point", "coordinates": [ 112.970567664805344, 28.190792272971635 ] } }, { "type": "Feature", "properties": { "id": 475, "geom": "SRID=4326;POINT(112.975795 28.198558)", "零售户": "湖南千惠商贸连锁有限公司沿", "经度": 112.975795, "纬度": 28.198558, "参考值1": 10.6, "参考值2": 676, "参考值3": 1.53 }, "geometry": { "type": "Point", "coordinates": [ 112.969230735237659, 28.19284688868045 ] } }, { "type": "Feature", "properties": { "id": 476, "geom": "SRID=4326;POINT(112.996539 28.091528)", "零售户": "长沙市天心区博韬蔬菜店", "经度": 112.996539, "纬度": 28.091528, "参考值1": 10.57, "参考值2": 652, "参考值3": 1.52 }, "geometry": { "type": "Point", "coordinates": [ 112.989960577620991, 28.08581983289924 ] } }, { "type": "Feature", "properties": { "id": 477, "geom": "SRID=4326;POINT(112.981626 28.088578)", "零售户": "中国石油天然气股份有限公司", "经度": 112.981626, "纬度": 28.088578, "参考值1": 10.3, "参考值2": 593, "参考值3": 1.52 }, "geometry": { "type": "Point", "coordinates": [ 112.975041868383201, 28.082905298970044 ] } }, { "type": "Feature", "properties": { "id": 478, "geom": "SRID=4326;POINT(112.985116 28.181407)", "零售户": "湖南千惠商贸连锁有限公司石", "经度": 112.985116, "纬度": 28.181407, "参考值1": 10.48, "参考值2": 676, "参考值3": 1.51 }, "geometry": { "type": "Point", "coordinates": [ 112.978550328232998, 28.175749693097416 ] } }, { "type": "Feature", "properties": { "id": 479, "geom": "SRID=4326;POINT(113.000262 28.120549)", "零售户": "长沙市天心区磊发烟酒超市", "经度": 113.000262, "纬度": 28.120549, "参考值1": 10.51, "参考值2": 620, "参考值3": 1.5 }, "geometry": { "type": "Point", "coordinates": [ 112.993679761455184, 28.114799026298286 ] } }, { "type": "Feature", "properties": { "id": 480, "geom": "SRID=4326;POINT(112.994956 28.115658)", "零售户": "长沙市天心区永淼祥便利店", "经度": 112.994956, "纬度": 28.115658, "参考值1": 10.12, "参考值2": 601, "参考值3": 1.5 }, "geometry": { "type": "Point", "coordinates": [ 112.988360396788181, 28.109959452666931 ] } }, { "type": "Feature", "properties": { "id": 481, "geom": "SRID=4326;POINT(112.983586 28.188042)", "零售户": "湖南千惠商贸连锁有限公司城", "经度": 112.983586, "纬度": 28.188042, "参考值1": 10.37, "参考值2": 675, "参考值3": 1.5 }, "geometry": { "type": "Point", "coordinates": [ 112.977018109706478, 28.182380903631536 ] } }, { "type": "Feature", "properties": { "id": 482, "geom": "SRID=4326;POINT(112.997585 28.080054)", "零售户": "长沙市天心区湘和美烟酒商行", "经度": 112.997585, "纬度": 28.080054, "参考值1": 10.38, "参考值2": 596, "参考值3": 1.5 }, "geometry": { "type": "Point", "coordinates": [ 112.991020515598663, 28.07433893964452 ] } }, { "type": "Feature", "properties": { "id": 483, "geom": "SRID=4326;POINT(112.993532 28.226302)", "零售户": "长沙市天心区云广烟酒店", "经度": 112.993532, "纬度": 28.226302, "参考值1": 10.37, "参考值2": 574, "参考值3": 1.5 }, "geometry": { "type": "Point", "coordinates": [ 112.986936057157024, 28.220614008384725 ] } }, { "type": "Feature", "properties": { "id": 484, "geom": "SRID=4326;POINT(113.007136 28.120963)", "零售户": "长沙市天心区娇姐超市", "经度": 113.007136, "纬度": 28.120963, "参考值1": 10.8, "参考值2": 811, "参考值3": 1.5 }, "geometry": { "type": "Point", "coordinates": [ 113.000577526162104, 28.115117965387931 ] } }, { "type": "Feature", "properties": { "id": 486, "geom": "SRID=4326;POINT(112.993827 28.199117)", "零售户": "长沙市天心区鑫煌烟酒店", "经度": 112.993827, "纬度": 28.199117, "参考值1": 10.04, "参考值2": 494, "参考值3": 1.5 }, "geometry": { "type": "Point", "coordinates": [ 112.987255411472404, 28.193433029579236 ] } }, { "type": "Feature", "properties": { "id": 487, "geom": "SRID=4326;POINT(112.980613 28.113738)", "零售户": "长沙市天心区逸昊便利店", "经度": 112.980613, "纬度": 28.113738, "参考值1": 10.23, "参考值2": 658, "参考值3": 1.49 }, "geometry": { "type": "Point", "coordinates": [ 112.974013378282436, 28.108056153226958 ] } }, { "type": "Feature", "properties": { "id": 488, "geom": "SRID=4326;POINT(112.977035 28.177898)", "零售户": "湖南千惠商贸连锁有限公司大", "经度": 112.977035, "纬度": 28.177898, "参考值1": 10.31, "参考值2": 664, "参考值3": 1.49 }, "geometry": { "type": "Point", "coordinates": [ 112.970479961933847, 28.172200952526765 ] } }, { "type": "Feature", "properties": { "id": 489, "geom": "SRID=4326;POINT(112.992212 28.171671)", "零售户": "长沙市天心区新礽便利店", "经度": 112.992212, "纬度": 28.171671, "参考值1": 10.63, "参考值2": 740, "参考值3": 1.49 }, "geometry": { "type": "Point", "coordinates": [ 112.985650163216164, 28.165999624029446 ] } }, { "type": "Feature", "properties": { "id": 490, "geom": "SRID=4326;POINT(112.985486 28.181057)", "零售户": "湖南千惠商贸连锁有限公司仰", "经度": 112.985486, "纬度": 28.181057, "参考值1": 10.3, "参考值2": 668, "参考值3": 1.49 }, "geometry": { "type": "Point", "coordinates": [ 112.978920322770193, 28.175400130078895 ] } }, { "type": "Feature", "properties": { "id": 491, "geom": "SRID=4326;POINT(112.980659 28.157524)", "零售户": "湖南千惠商贸连锁有限公司赤", "经度": 112.980659, "纬度": 28.157524, "参考值1": 10.33, "参考值2": 665, "参考值3": 1.49 }, "geometry": { "type": "Point", "coordinates": [ 112.97408947606192, 28.151849939142668 ] } }, { "type": "Feature", "properties": { "id": 492, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区常望便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 10.23, "参考值2": 772, "参考值3": 1.48 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 493, "geom": "SRID=4326;POINT(113.00895 28.018441)", "零售户": "长沙市天心区唯水便利店", "经度": 113.00895, "纬度": 28.018441, "参考值1": 10.52, "参考值2": 780, "参考值3": 1.48 }, "geometry": { "type": "Point", "coordinates": [ 113.002410152896147, 28.012569696711445 ] } }, { "type": "Feature", "properties": { "id": 494, "geom": "SRID=4326;POINT(112.981247 28.189641)", "零售户": "长沙市天心区普之斯便利店", "经度": 112.981247, "纬度": 28.189641, "参考值1": 10.42, "参考值2": 679, "参考值3": 1.48 }, "geometry": { "type": "Point", "coordinates": [ 112.974680289088496, 28.183970842697949 ] } }, { "type": "Feature", "properties": { "id": 495, "geom": "SRID=4326;POINT(112.977565 28.176629)", "零售户": "湖南千惠商贸连锁有限公司书", "经度": 112.977565, "纬度": 28.176629, "参考值1": 10.31, "参考值2": 666, "参考值3": 1.48 }, "geometry": { "type": "Point", "coordinates": [ 112.971008964034411, 28.170936332151193 ] } }, { "type": "Feature", "properties": { "id": 497, "geom": "SRID=4326;POINT(112.978357 28.141391)", "零售户": "长沙市天心区腊清食品店", "经度": 112.978357, "纬度": 28.141391, "参考值1": 10.37, "参考值2": 728, "参考值3": 1.47 }, "geometry": { "type": "Point", "coordinates": [ 112.971775511772364, 28.135698418731781 ] } }, { "type": "Feature", "properties": { "id": 498, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区倩莹便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 10.33, "参考值2": 848, "参考值3": 1.47 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 499, "geom": "SRID=4326;POINT(112.98072 28.194754)", "零售户": "长沙市天心区超桐烟店", "经度": 112.98072, "纬度": 28.194754, "参考值1": 10.48, "参考值2": 759, "参考值3": 1.47 }, "geometry": { "type": "Point", "coordinates": [ 112.974150054049133, 28.189080208689649 ] } }, { "type": "Feature", "properties": { "id": 500, "geom": "SRID=4326;POINT(112.989292 28.084306)", "零售户": "长沙市天心区宋艳俊便利店", "经度": 112.989292, "纬度": 28.084306, "参考值1": 10.32, "参考值2": 788, "参考值3": 1.47 }, "geometry": { "type": "Point", "coordinates": [ 112.982710382408996, 28.078641760128228 ] } }, { "type": "Feature", "properties": { "id": 501, "geom": "SRID=4326;POINT(112.978757 28.166861)", "零售户": "长沙市天心区夏勇便利店", "经度": 112.978757, "纬度": 28.166861, "参考值1": 10.64, "参考值2": 1012, "参考值3": 1.47 }, "geometry": { "type": "Point", "coordinates": [ 112.972196591930313, 28.161176736780927 ] } }, { "type": "Feature", "properties": { "id": 502, "geom": "SRID=4326;POINT(112.977565 28.176629)", "零售户": "长沙市天心区吉沁便利店", "经度": 112.977565, "纬度": 28.176629, "参考值1": 10.13, "参考值2": 645, "参考值3": 1.46 }, "geometry": { "type": "Point", "coordinates": [ 112.971008964034411, 28.170936332151193 ] } }, { "type": "Feature", "properties": { "id": 503, "geom": "SRID=4326;POINT(112.977704 28.169187)", "零售户": "长沙市天心区湾蓝便利店", "经度": 112.977704, "纬度": 28.169187, "参考值1": 10.28, "参考值2": 720, "参考值3": 1.46 }, "geometry": { "type": "Point", "coordinates": [ 112.971146497765417, 28.16349513368084 ] } }, { "type": "Feature", "properties": { "id": 505, "geom": "SRID=4326;POINT(112.992169 28.147195)", "零售户": "长沙市天心区兰新食品店", "经度": 112.992169, "纬度": 28.147195, "参考值1": 10.06, "参考值2": 738, "参考值3": 1.46 }, "geometry": { "type": "Point", "coordinates": [ 112.985589481385361, 28.14151943622317 ] } }, { "type": "Feature", "properties": { "id": 506, "geom": "SRID=4326;POINT(112.97108 28.154249)", "零售户": "长沙市天心区易晓兰便利店", "经度": 112.97108, "纬度": 28.154249, "参考值1": 10.02, "参考值2": 635, "参考值3": 1.46 }, "geometry": { "type": "Point", "coordinates": [ 112.964529739594084, 28.148485330951125 ] } }, { "type": "Feature", "properties": { "id": 507, "geom": "SRID=4326;POINT(112.98202 28.179535)", "零售户": "长沙市天心区荣姐粮油店", "经度": 112.98202, "纬度": 28.179535, "参考值1": 10.18, "参考值2": 743, "参考值3": 1.46 }, "geometry": { "type": "Point", "coordinates": [ 112.975456867820967, 28.173869401282332 ] } }, { "type": "Feature", "properties": { "id": 509, "geom": "SRID=4326;POINT(112.986191 28.106185)", "零售户": "长沙市天心区丁小芳便利店", "经度": 112.986191, "纬度": 28.106185, "参考值1": 10.03, "参考值2": 687, "参考值3": 1.45 }, "geometry": { "type": "Point", "coordinates": [ 112.979589808355371, 28.100519690781169 ] } }, { "type": "Feature", "properties": { "id": 510, "geom": "SRID=4326;POINT(112.995286 28.195623)", "零售户": "长沙市天心区富鑫食品店", "经度": 112.995286, "纬度": 28.195623, "参考值1": 10.29, "参考值2": 759, "参考值3": 1.45 }, "geometry": { "type": "Point", "coordinates": [ 112.98872025511892, 28.189929229467563 ] } }, { "type": "Feature", "properties": { "id": 511, "geom": "SRID=4326;POINT(112.979353 28.213478)", "零售户": "长沙市天心区利雄烟店", "经度": 112.979353, "纬度": 28.213478, "参考值1": 10.05, "参考值2": 781, "参考值3": 1.45 }, "geometry": { "type": "Point", "coordinates": [ 112.972766828424525, 28.207791614473116 ] } }, { "type": "Feature", "properties": { "id": 512, "geom": "SRID=4326;POINT(112.978064 28.192551)", "零售户": "长沙市天心区张启娜便利店", "经度": 112.978064, "纬度": 28.192551, "参考值1": 10.09, "参考值2": 791, "参考值3": 1.45 }, "geometry": { "type": "Point", "coordinates": [ 112.971500118888287, 28.186860521090857 ] } }, { "type": "Feature", "properties": { "id": 513, "geom": "SRID=4326;POINT(112.989912 28.175301)", "零售户": "长沙市天心区春满便利店", "经度": 112.989912, "纬度": 28.175301, "参考值1": 10.05, "参考值2": 695, "参考值3": 1.45 }, "geometry": { "type": "Point", "coordinates": [ 112.983348229549506, 28.169639390584994 ] } }, { "type": "Feature", "properties": { "id": 514, "geom": "SRID=4326;POINT(112.978357 28.141391)", "零售户": "长沙市天心区贾锋便利店", "经度": 112.978357, "纬度": 28.141391, "参考值1": 10.12, "参考值2": 801, "参考值3": 1.45 }, "geometry": { "type": "Point", "coordinates": [ 112.971775511772364, 28.135698418731781 ] } }, { "type": "Feature", "properties": { "id": 515, "geom": "SRID=4326;POINT(112.980117 28.191767)", "零售户": "长沙市天心区龙它烟酒店", "经度": 112.980117, "纬度": 28.191767, "参考值1": 9.95, "参考值2": 715, "参考值3": 1.45 }, "geometry": { "type": "Point", "coordinates": [ 112.973550280458866, 28.186090451028821 ] } }, { "type": "Feature", "properties": { "id": 516, "geom": "SRID=4326;POINT(112.978357 28.141391)", "零售户": "长沙市天心区尚尚超市", "经度": 112.978357, "纬度": 28.141391, "参考值1": 10.24, "参考值2": 799, "参考值3": 1.45 }, "geometry": { "type": "Point", "coordinates": [ 112.971775511772364, 28.135698418731781 ] } }, { "type": "Feature", "properties": { "id": 517, "geom": "SRID=4326;POINT(112.976929 28.200223)", "零售户": "长沙市天心区伟云烟店", "经度": 112.976929, "纬度": 28.200223, "参考值1": 10.34, "参考值2": 778, "参考值3": 1.45 }, "geometry": { "type": "Point", "coordinates": [ 112.970360597983841, 28.194521680373008 ] } }, { "type": "Feature", "properties": { "id": 518, "geom": "SRID=4326;POINT(112.987255 28.176533)", "零售户": "长沙市天心区颜祝华便利店", "经度": 112.987255, "纬度": 28.176533, "参考值1": 10.3, "参考值2": 837, "参考值3": 1.45 }, "geometry": { "type": "Point", "coordinates": [ 112.980689952212643, 28.170876514147697 ] } }, { "type": "Feature", "properties": { "id": 519, "geom": "SRID=4326;POINT(112.996499 28.12748)", "零售户": "长沙市天心区玖悦商贸行", "经度": 112.996499, "纬度": 28.12748, "参考值1": 9.52, "参考值2": 557, "参考值3": 1.45 }, "geometry": { "type": "Point", "coordinates": [ 112.989909929583945, 28.121769581695638 ] } }, { "type": "Feature", "properties": { "id": 520, "geom": "SRID=4326;POINT(112.983669 28.189782)", "零售户": "长沙市天心区任全明粮油店", "经度": 112.983669, "纬度": 28.189782, "参考值1": 9.63, "参考值2": 576, "参考值3": 1.44 }, "geometry": { "type": "Point", "coordinates": [ 112.977099943556652, 28.184120848924877 ] } }, { "type": "Feature", "properties": { "id": 521, "geom": "SRID=4326;POINT(112.992999 28.186757)", "零售户": "长沙市天心区刚浩烟酒商行", "经度": 112.992999, "纬度": 28.186757, "参考值1": 9.26, "参考值2": 515, "参考值3": 1.44 }, "geometry": { "type": "Point", "coordinates": [ 112.986435712989049, 28.181080615573538 ] } }, { "type": "Feature", "properties": { "id": 522, "geom": "SRID=4326;POINT(112.999679 28.066093)", "零售户": "长沙市天心区倩如便利店", "经度": 112.999679, "纬度": 28.066093, "参考值1": 10.07, "参考值2": 695, "参考值3": 1.44 }, "geometry": { "type": "Point", "coordinates": [ 112.993130841176679, 28.060358588311317 ] } }, { "type": "Feature", "properties": { "id": 523, "geom": "SRID=4326;POINT(112.990865 28.073836)", "零售户": "长沙市天心区好先生食品店", "经度": 112.990865, "纬度": 28.073836, "参考值1": 10.16, "参考值2": 750, "参考值3": 1.44 }, "geometry": { "type": "Point", "coordinates": [ 112.984294529002838, 28.068169006411424 ] } }, { "type": "Feature", "properties": { "id": 524, "geom": "SRID=4326;POINT(112.989962 28.175053)", "零售户": "长沙市天心区金礽烟酒店", "经度": 112.989962, "纬度": 28.175053, "参考值1": 10.04, "参考值2": 725, "参考值3": 1.44 }, "geometry": { "type": "Point", "coordinates": [ 112.983398259037074, 28.169391229152804 ] } }, { "type": "Feature", "properties": { "id": 525, "geom": "SRID=4326;POINT(112.995261 28.068772)", "零售户": "长沙市天心区小明明便利店", "经度": 112.995261, "纬度": 28.068772, "参考值1": 9.33, "参考值2": 621, "参考值3": 1.44 }, "geometry": { "type": "Point", "coordinates": [ 112.988700744204166, 28.06307970564572 ] } }, { "type": "Feature", "properties": { "id": 526, "geom": "SRID=4326;POINT(112.990093 28.146633)", "零售户": "长沙市天心区久红食品店", "经度": 112.990093, "纬度": 28.146633, "参考值1": 10.19, "参考值2": 724, "参考值3": 1.44 }, "geometry": { "type": "Point", "coordinates": [ 112.983510710268604, 28.140966130342544 ] } }, { "type": "Feature", "properties": { "id": 527, "geom": "SRID=4326;POINT(113.007841 28.141801)", "零售户": "长沙市天心区佳星便利店", "经度": 113.007841, "纬度": 28.141801, "参考值1": 9.88, "参考值2": 645, "参考值3": 1.43 }, "geometry": { "type": "Point", "coordinates": [ 113.001299795974262, 28.13594843336406 ] } }, { "type": "Feature", "properties": { "id": 528, "geom": "SRID=4326;POINT(113.003932 28.145592)", "零售户": "长沙市天心区锦钊生活超市", "经度": 113.003932, "纬度": 28.145592, "参考值1": 10.01, "参考值2": 683, "参考值3": 1.43 }, "geometry": { "type": "Point", "coordinates": [ 112.997379956219945, 28.139799218393978 ] } }, { "type": "Feature", "properties": { "id": 529, "geom": "SRID=4326;POINT(112.995021 28.090515)", "零售户": "长沙市天心区豪宇烟酒经营部", "经度": 112.995021, "纬度": 28.090515, "参考值1": 9.22, "参考值2": 415, "参考值3": 1.43 }, "geometry": { "type": "Point", "coordinates": [ 112.988440447651485, 28.084819654650509 ] } }, { "type": "Feature", "properties": { "id": 530, "geom": "SRID=4326;POINT(112.977637 28.169543)", "零售户": "长沙市天心区王乾光烟酒店", "经度": 112.977637, "纬度": 28.169543, "参考值1": 10.07, "参考值2": 736, "参考值3": 1.43 }, "geometry": { "type": "Point", "coordinates": [ 112.971079752150587, 28.163850633968597 ] } }, { "type": "Feature", "properties": { "id": 531, "geom": "SRID=4326;POINT(112.997585 28.080054)", "零售户": "长沙市天心区生兴隆超市", "经度": 112.997585, "纬度": 28.080054, "参考值1": 9.74, "参考值2": 687, "参考值3": 1.43 }, "geometry": { "type": "Point", "coordinates": [ 112.991020515598663, 28.07433893964452 ] } }, { "type": "Feature", "properties": { "id": 533, "geom": "SRID=4326;POINT(112.980341 28.174934)", "零售户": "长沙市天心区中木便利店", "经度": 112.980341, "纬度": 28.174934, "参考值1": 10.0, "参考值2": 727, "参考值3": 1.43 }, "geometry": { "type": "Point", "coordinates": [ 112.973780224609925, 28.169260281510407 ] } }, { "type": "Feature", "properties": { "id": 534, "geom": "SRID=4326;POINT(112.995867 28.148635)", "零售户": "长沙市天心区昊夲超市", "经度": 112.995867, "纬度": 28.148635, "参考值1": 9.97, "参考值2": 711, "参考值3": 1.42 }, "geometry": { "type": "Point", "coordinates": [ 112.989295193247443, 28.142934674785611 ] } }, { "type": "Feature", "properties": { "id": 535, "geom": "SRID=4326;POINT(112.977637 28.169543)", "零售户": "长沙市天心区观海食品店", "经度": 112.977637, "纬度": 28.169543, "参考值1": 10.18, "参考值2": 756, "参考值3": 1.42 }, "geometry": { "type": "Point", "coordinates": [ 112.971079752150587, 28.163850633968597 ] } }, { "type": "Feature", "properties": { "id": 536, "geom": "SRID=4326;POINT(112.974992 28.185257)", "零售户": "湖南购玖电子商务有限公司华", "经度": 112.974992, "纬度": 28.185257, "参考值1": 9.7, "参考值2": 421, "参考值3": 1.42 }, "geometry": { "type": "Point", "coordinates": [ 112.968439520132421, 28.179540503401746 ] } }, { "type": "Feature", "properties": { "id": 537, "geom": "SRID=4326;POINT(112.995021 28.090515)", "零售户": "长沙市天心区艺哲便利店", "经度": 112.995021, "纬度": 28.090515, "参考值1": 10.02, "参考值2": 783, "参考值3": 1.42 }, "geometry": { "type": "Point", "coordinates": [ 112.988440447651485, 28.084819654650509 ] } }, { "type": "Feature", "properties": { "id": 538, "geom": "SRID=4326;POINT(112.993168 28.198806)", "零售户": "湖南千悪商贸连锁有限公司贺", "经度": 112.993168, "纬度": 28.198806, "参考值1": 9.79, "参考值2": 630, "参考值3": 1.42 }, "geometry": { "type": "Point", "coordinates": [ 112.986595661647968, 28.193126291075071 ] } }, { "type": "Feature", "properties": { "id": 539, "geom": "SRID=4326;POINT(112.991703 28.153791)", "零售户": "长沙市天心区诺芳便利店", "经度": 112.991703, "纬度": 28.153791, "参考值1": 9.76, "参考值2": 634, "参考值3": 1.42 }, "geometry": { "type": "Point", "coordinates": [ 112.985129369380545, 28.148119372970797 ] } }, { "type": "Feature", "properties": { "id": 540, "geom": "SRID=4326;POINT(112.999679 28.066093)", "零售户": "长沙市天心区融洽生活超市", "经度": 112.999679, "纬度": 28.066093, "参考值1": 9.89, "参考值2": 732, "参考值3": 1.41 }, "geometry": { "type": "Point", "coordinates": [ 112.993130841176679, 28.060358588311317 ] } }, { "type": "Feature", "properties": { "id": 541, "geom": "SRID=4326;POINT(112.985384 28.157823)", "零售户": "湖南千惠商贸连锁有限公司赤", "经度": 112.985384, "纬度": 28.157823, "参考值1": 9.76, "参考值2": 621, "参考值3": 1.41 }, "geometry": { "type": "Point", "coordinates": [ 112.978810949080469, 28.152164164046944 ] } }, { "type": "Feature", "properties": { "id": 542, "geom": "SRID=4326;POINT(112.982776 28.178961)", "零售户": "长沙市天心区罗家铺子南食店", "经度": 112.982776, "纬度": 28.178961, "参考值1": 9.96, "参考值2": 641, "参考值3": 1.41 }, "geometry": { "type": "Point", "coordinates": [ 112.976212255212872, 28.173298287220383 ] } }, { "type": "Feature", "properties": { "id": 543, "geom": "SRID=4326;POINT(112.986171 28.125495)", "零售户": "长沙市天心区小叮铛便利超市", "经度": 112.986171, "纬度": 28.125495, "参考值1": 9.96, "参考值2": 715, "参考值3": 1.41 }, "geometry": { "type": "Point", "coordinates": [ 112.979569595109481, 28.119829642877281 ] } }, { "type": "Feature", "properties": { "id": 544, "geom": "SRID=4326;POINT(112.981092 28.17875)", "零售户": "长沙市天心区汇湾便利店", "经度": 112.981092, "纬度": 28.17875, "参考值1": 9.89, "参考值2": 585, "参考值3": 1.41 }, "geometry": { "type": "Point", "coordinates": [ 112.974530051949785, 28.173080215834382 ] } }, { "type": "Feature", "properties": { "id": 545, "geom": "SRID=4326;POINT(112.988778 28.187229)", "零售户": "长沙市天心区亮莎便利店", "经度": 112.988778, "纬度": 28.187229, "参考值1": 9.97, "参考值2": 598, "参考值3": 1.41 }, "geometry": { "type": "Point", "coordinates": [ 112.982210203361191, 28.18156956608976 ] } }, { "type": "Feature", "properties": { "id": 546, "geom": "SRID=4326;POINT(112.990867 28.069386)", "零售户": "长沙市天心区晟惠超市", "经度": 112.990867, "纬度": 28.069386, "参考值1": 9.76, "参考值2": 713, "参考值3": 1.41 }, "geometry": { "type": "Point", "coordinates": [ 112.984299835272822, 28.063719815424029 ] } }, { "type": "Feature", "properties": { "id": 547, "geom": "SRID=4326;POINT(112.999679 28.066093)", "零售户": "长沙市天心区嘉定便利店", "经度": 112.999679, "纬度": 28.066093, "参考值1": 9.82, "参考值2": 678, "参考值3": 1.41 }, "geometry": { "type": "Point", "coordinates": [ 112.993130841176679, 28.060358588311317 ] } }, { "type": "Feature", "properties": { "id": 549, "geom": "SRID=4326;POINT(112.983791 28.178245)", "零售户": "长沙市天心区夏夏食品店", "经度": 112.983791, "纬度": 28.178245, "参考值1": 9.64, "参考值2": 662, "参考值3": 1.4 }, "geometry": { "type": "Point", "coordinates": [ 112.977226603385603, 28.172585333629833 ] } }, { "type": "Feature", "properties": { "id": 551, "geom": "SRID=4326;POINT(112.977499 28.14213)", "零售户": "长沙市天心区宏正食品店", "经度": 112.977499, "纬度": 28.14213, "参考值1": 9.93, "参考值2": 737, "参考值3": 1.4 }, "geometry": { "type": "Point", "coordinates": [ 112.97091988751167, 28.136430992792992 ] } }, { "type": "Feature", "properties": { "id": 552, "geom": "SRID=4326;POINT(112.990865 28.073836)", "零售户": "长沙市天心区涌杰便利店", "经度": 112.990865, "纬度": 28.073836, "参考值1": 9.7, "参考值2": 675, "参考值3": 1.4 }, "geometry": { "type": "Point", "coordinates": [ 112.984294529002838, 28.068169006411424 ] } }, { "type": "Feature", "properties": { "id": 553, "geom": "SRID=4326;POINT(112.991043 28.171396)", "零售户": "湖南千惠商贸连锁有限公司南", "经度": 112.991043, "纬度": 28.171396, "参考值1": 9.71, "参考值2": 635, "参考值3": 1.4 }, "geometry": { "type": "Point", "coordinates": [ 112.984479727541, 28.165730107035557 ] } }, { "type": "Feature", "properties": { "id": 554, "geom": "SRID=4326;POINT(113.004871 28.132908)", "零售户": "长沙市天心区张君山超市", "经度": 113.004871, "纬度": 28.132908, "参考值1": 9.85, "参考值2": 615, "参考值3": 1.39 }, "geometry": { "type": "Point", "coordinates": [ 112.99831045122329, 28.127098833285554 ] } }, { "type": "Feature", "properties": { "id": 555, "geom": "SRID=4326;POINT(112.994689 28.132843)", "零售户": "长沙市天心区小智烟酒超市", "经度": 112.994689, "纬度": 28.132843, "参考值1": 9.88, "参考值2": 756, "参考值3": 1.38 }, "geometry": { "type": "Point", "coordinates": [ 112.988099920312621, 28.127148208721774 ] } }, { "type": "Feature", "properties": { "id": 556, "geom": "SRID=4326;POINT(112.9794 28.14862)", "零售户": "长沙市天心区刘亚军便利店", "经度": 112.9794, "纬度": 28.14862, "参考值1": 9.64, "参考值2": 607, "参考值3": 1.38 }, "geometry": { "type": "Point", "coordinates": [ 112.972823992813574, 28.142936428602045 ] } }, { "type": "Feature", "properties": { "id": 558, "geom": "SRID=4326;POINT(112.989356 28.16697)", "零售户": "长沙市天心区恩妮便利店", "经度": 112.989356, "纬度": 28.16697, "参考值1": 9.52, "参考值2": 638, "参考值3": 1.37 }, "geometry": { "type": "Point", "coordinates": [ 112.982789736683856, 28.161309472096463 ] } }, { "type": "Feature", "properties": { "id": 559, "geom": "SRID=4326;POINT(112.980177 28.191177)", "零售户": "长沙市天心区鸽庆食品店", "经度": 112.980177, "纬度": 28.191177, "参考值1": 9.64, "参考值2": 670, "参考值3": 1.37 }, "geometry": { "type": "Point", "coordinates": [ 112.973610629622812, 28.185500907150043 ] } }, { "type": "Feature", "properties": { "id": 560, "geom": "SRID=4326;POINT(112.991475 28.186608)", "零售户": "长沙市天心区鑫大山超市", "经度": 112.991475, "纬度": 28.186608, "参考值1": 9.51, "参考值2": 707, "参考值3": 1.37 }, "geometry": { "type": "Point", "coordinates": [ 112.984909798117414, 28.180939632298948 ] } }, { "type": "Feature", "properties": { "id": 561, "geom": "SRID=4326;POINT(112.977133 28.196491)", "零售户": "湖南省绿滋肴贸易有限公司三", "经度": 112.977133, "纬度": 28.196491, "参考值1": 9.78, "参考值2": 551, "参考值3": 1.37 }, "geometry": { "type": "Point", "coordinates": [ 112.970567664805344, 28.190792272971635 ] } }, { "type": "Feature", "properties": { "id": 562, "geom": "SRID=4326;POINT(112.997368 28.187008)", "零售户": "长沙市天心区地利便利店", "经度": 112.997368, "纬度": 28.187008, "参考值1": 9.25, "参考值2": 651, "参考值3": 1.36 }, "geometry": { "type": "Point", "coordinates": [ 112.990813049764782, 28.181297613484613 ] } }, { "type": "Feature", "properties": { "id": 563, "geom": "SRID=4326;POINT(112.978757 28.166861)", "零售户": "长沙市天心区品利超市", "经度": 112.978757, "纬度": 28.166861, "参考值1": 9.48, "参考值2": 777, "参考值3": 1.36 }, "geometry": { "type": "Point", "coordinates": [ 112.972196591930313, 28.161176736780927 ] } }, { "type": "Feature", "properties": { "id": 564, "geom": "SRID=4326;POINT(113.007841 28.141801)", "零售户": "长沙步步高商业连锁有限责任", "经度": 113.007841, "纬度": 28.141801, "参考值1": 9.35, "参考值2": 573, "参考值3": 1.36 }, "geometry": { "type": "Point", "coordinates": [ 113.001299795974262, 28.13594843336406 ] } }, { "type": "Feature", "properties": { "id": 566, "geom": "SRID=4326;POINT(112.999679 28.066093)", "零售户": "长沙市天心区华兴旺超市", "经度": 112.999679, "纬度": 28.066093, "参考值1": 9.47, "参考值2": 745, "参考值3": 1.36 }, "geometry": { "type": "Point", "coordinates": [ 112.993130841176679, 28.060358588311317 ] } }, { "type": "Feature", "properties": { "id": 567, "geom": "SRID=4326;POINT(113.001418 28.146742)", "零售户": "长沙市天心区沙原便利店", "经度": 113.001418, "纬度": 28.146742, "参考值1": 9.49, "参考值2": 662, "参考值3": 1.36 }, "geometry": { "type": "Point", "coordinates": [ 112.994858802262613, 28.140982913020746 ] } }, { "type": "Feature", "properties": { "id": 568, "geom": "SRID=4326;POINT(112.97843 28.126007)", "零售户": "长沙市天心区御文台便利店", "经度": 112.97843, "纬度": 28.126007, "参考值1": 9.4, "参考值2": 620, "参考值3": 1.36 }, "geometry": { "type": "Point", "coordinates": [ 112.971836255053802, 28.120311924773308 ] } }, { "type": "Feature", "properties": { "id": 569, "geom": "SRID=4326;POINT(112.987155 28.176856)", "零售户": "长沙市天心区真妮超市", "经度": 112.987155, "纬度": 28.176856, "参考值1": 9.77, "参考值2": 783, "参考值3": 1.35 }, "geometry": { "type": "Point", "coordinates": [ 112.980589922967596, 28.17119957642468 ] } }, { "type": "Feature", "properties": { "id": 570, "geom": "SRID=4326;POINT(112.96893 28.12103)", "零售户": "长沙市天心区杰倩便利店", "经度": 112.96893, "纬度": 28.12103, "参考值1": 9.44, "参考值2": 649, "参考值3": 1.34 }, "geometry": { "type": "Point", "coordinates": [ 112.96236016069291, 28.11523065079114 ] } }, { "type": "Feature", "properties": { "id": 571, "geom": "SRID=4326;POINT(112.981092 28.17875)", "零售户": "长沙市天心区明乃便利店", "经度": 112.981092, "纬度": 28.17875, "参考值1": 9.48, "参考值2": 688, "参考值3": 1.34 }, "geometry": { "type": "Point", "coordinates": [ 112.974530051949785, 28.173080215834382 ] } }, { "type": "Feature", "properties": { "id": 572, "geom": "SRID=4326;POINT(112.959846 28.051646)", "零售户": "长沙市天心区万海南批发店", "经度": 112.959846, "纬度": 28.051646, "参考值1": 9.56, "参考值2": 808, "参考值3": 1.34 }, "geometry": { "type": "Point", "coordinates": [ 112.95335024319283, 28.045709758587833 ] } }, { "type": "Feature", "properties": { "id": 573, "geom": "SRID=4326;POINT(112.98041 28.195366)", "零售户": "湖南天福连锁商业有限公司五", "经度": 112.98041, "纬度": 28.195366, "参考值1": 9.5, "参考值2": 623, "参考值3": 1.34 }, "geometry": { "type": "Point", "coordinates": [ 112.973839949474367, 28.189690395339902 ] } }, { "type": "Feature", "properties": { "id": 574, "geom": "SRID=4326;POINT(112.981527 28.128517)", "零售户": "长沙市天心区勇爱超市", "经度": 112.981527, "纬度": 28.128517, "参考值1": 9.22, "参考值2": 620, "参考值3": 1.34 }, "geometry": { "type": "Point", "coordinates": [ 112.974930089278274, 28.122840669854515 ] } }, { "type": "Feature", "properties": { "id": 575, "geom": "SRID=4326;POINT(112.993345 28.190259)", "零售户": "长沙市供销经贸发展总公司久", "经度": 112.993345, "纬度": 28.190259, "参考值1": 9.07, "参考值2": 578, "参考值3": 1.33 }, "geometry": { "type": "Point", "coordinates": [ 112.986780063004431, 28.184579975287274 ] } }, { "type": "Feature", "properties": { "id": 576, "geom": "SRID=4326;POINT(112.999619 28.13071)", "零售户": "长沙市天心区卫晓超市", "经度": 112.999619, "纬度": 28.13071, "参考值1": 9.31, "参考值2": 607, "参考值3": 1.33 }, "geometry": { "type": "Point", "coordinates": [ 112.993039830604914, 28.124968634707905 ] } }, { "type": "Feature", "properties": { "id": 577, "geom": "SRID=4326;POINT(113.00633 28.126723)", "零售户": "长沙市天心区云邻贸易商行", "经度": 113.00633, "纬度": 28.126723, "参考值1": 9.31, "参考值2": 608, "参考值3": 1.33 }, "geometry": { "type": "Point", "coordinates": [ 112.999770741589884, 28.120891017813893 ] } }, { "type": "Feature", "properties": { "id": 578, "geom": "SRID=4326;POINT(112.981527 28.128517)", "零售户": "长沙市天心区天伦食品店", "经度": 112.981527, "纬度": 28.128517, "参考值1": 9.27, "参考值2": 633, "参考值3": 1.33 }, "geometry": { "type": "Point", "coordinates": [ 112.974930089278274, 28.122840669854515 ] } }, { "type": "Feature", "properties": { "id": 579, "geom": "SRID=4326;POINT(112.979302 28.152024)", "零售户": "长沙市天心区筵博超市", "经度": 112.979302, "纬度": 28.152024, "参考值1": 9.22, "参考值2": 633, "参考值3": 1.33 }, "geometry": { "type": "Point", "coordinates": [ 112.972729507978912, 28.146340631209711 ] } }, { "type": "Feature", "properties": { "id": 580, "geom": "SRID=4326;POINT(112.987476 28.171057)", "零售户": "长沙市天心区芯如便利店", "经度": 112.987476, "纬度": 28.171057, "参考值1": 9.45, "参考值2": 662, "参考值3": 1.33 }, "geometry": { "type": "Point", "coordinates": [ 112.980910374361969, 28.165400176994567 ] } }, { "type": "Feature", "properties": { "id": 581, "geom": "SRID=4326;POINT(112.986675 28.134264)", "零售户": "长沙市天心区童话便利店", "经度": 112.986675, "纬度": 28.134264, "参考值1": 9.26, "参考值2": 658, "参考值3": 1.32 }, "geometry": { "type": "Point", "coordinates": [ 112.980079428890988, 28.128600140362014 ] } }, { "type": "Feature", "properties": { "id": 582, "geom": "SRID=4326;POINT(113.000378 28.129389)", "零售户": "长沙市天心区懋懋便利店", "经度": 113.000378, "纬度": 28.129389, "参考值1": 9.39, "参考值2": 663, "参考值3": 1.32 }, "geometry": { "type": "Point", "coordinates": [ 112.993800110240571, 28.123638664813445 ] } }, { "type": "Feature", "properties": { "id": 583, "geom": "SRID=4326;POINT(112.980025 28.102975)", "零售户": "长沙市天心区张鲁便利店", "经度": 112.980025, "纬度": 28.102975, "参考值1": 9.29, "参考值2": 630, "参考值3": 1.32 }, "geometry": { "type": "Point", "coordinates": [ 112.973430439239024, 28.097290880927527 ] } }, { "type": "Feature", "properties": { "id": 584, "geom": "SRID=4326;POINT(112.978996 28.143734)", "零售户": "长沙市天心区长赛食品商行", "经度": 112.978996, "纬度": 28.143734, "参考值1": 8.79, "参考值2": 562, "参考值3": 1.31 }, "geometry": { "type": "Point", "coordinates": [ 112.972415721500198, 28.138046519486874 ] } }, { "type": "Feature", "properties": { "id": 585, "geom": "SRID=4326;POINT(112.978961 28.089189)", "零售户": "长沙市天心区广惠超市", "经度": 112.978961, "纬度": 28.089189, "参考值1": 8.99, "参考值2": 620, "参考值3": 1.31 }, "geometry": { "type": "Point", "coordinates": [ 112.972380003276456, 28.083501051322312 ] } }, { "type": "Feature", "properties": { "id": 586, "geom": "SRID=4326;POINT(112.999984 28.118516)", "零售户": "长沙市天心区锦发贸易商行", "经度": 112.999984, "纬度": 28.118516, "参考值1": 9.03, "参考值2": 452, "参考值3": 1.31 }, "geometry": { "type": "Point", "coordinates": [ 112.99340058291979, 28.112769160076255 ] } }, { "type": "Feature", "properties": { "id": 587, "geom": "SRID=4326;POINT(112.974538 28.148955)", "零售户": "长沙市天心区锦恒食品店", "经度": 112.974538, "纬度": 28.148955, "参考值1": 8.98, "参考值2": 540, "参考值3": 1.31 }, "geometry": { "type": "Point", "coordinates": [ 112.967972587401505, 28.143230319977469 ] } }, { "type": "Feature", "properties": { "id": 588, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区平云便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 9.17, "参考值2": 703, "参考值3": 1.3 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 590, "geom": "SRID=4326;POINT(112.990693 28.16808)", "零售户": "长沙市天心区李杜烟酒行", "经度": 112.990693, "纬度": 28.16808, "参考值1": 8.86, "参考值2": 602, "参考值3": 1.3 }, "geometry": { "type": "Point", "coordinates": [ 112.984128302604233, 28.162415243660092 ] } }, { "type": "Feature", "properties": { "id": 591, "geom": "SRID=4326;POINT(112.998127 28.123635)", "零售户": "长沙市天心区娜展生活超市", "经度": 112.998127, "纬度": 28.123635, "参考值1": 9.21, "参考值2": 710, "参考值3": 1.3 }, "geometry": { "type": "Point", "coordinates": [ 112.99153992367232, 28.117908626215293 ] } }, { "type": "Feature", "properties": { "id": 592, "geom": "SRID=4326;POINT(112.978009 28.16684)", "零售户": "长沙市天心区美蕊食品店", "经度": 112.978009, "纬度": 28.16684, "参考值1": 9.04, "参考值2": 646, "参考值3": 1.3 }, "geometry": { "type": "Point", "coordinates": [ 112.971449946366064, 28.161150259579152 ] } }, { "type": "Feature", "properties": { "id": 593, "geom": "SRID=4326;POINT(112.986908 28.185447)", "零售户": "长沙市天心区万喜食品店", "经度": 112.986908, "纬度": 28.185447, "参考值1": 8.97, "参考值2": 699, "参考值3": 1.29 }, "geometry": { "type": "Point", "coordinates": [ 112.980340559943713, 28.179790123763805 ] } }, { "type": "Feature", "properties": { "id": 594, "geom": "SRID=4326;POINT(112.976803 28.176759)", "零售户": "长沙市天心区盛爽便利店", "经度": 112.976803, "纬度": 28.176759, "参考值1": 9.18, "参考值2": 544, "参考值3": 1.29 }, "geometry": { "type": "Point", "coordinates": [ 112.970248539090647, 28.171059992059273 ] } }, { "type": "Feature", "properties": { "id": 596, "geom": "SRID=4326;POINT(113.005983 28.121886)", "零售户": "长沙市天心区吴秀英超市", "经度": 113.005983, "纬度": 28.121886, "参考值1": 8.98, "参考值2": 570, "参考值3": 1.29 }, "geometry": { "type": "Point", "coordinates": [ 112.999420370524319, 28.116058781826656 ] } }, { "type": "Feature", "properties": { "id": 597, "geom": "SRID=4326;POINT(112.993223 28.13976)", "零售户": "长沙市天心区深沙烟酒店", "经度": 112.993223, "纬度": 28.13976, "参考值1": 8.79, "参考值2": 558, "参考值3": 1.29 }, "geometry": { "type": "Point", "coordinates": [ 112.986637545104685, 28.134076623958318 ] } }, { "type": "Feature", "properties": { "id": 598, "geom": "SRID=4326;POINT(112.996539 28.091528)", "零售户": "长沙市天心区和七食品店", "经度": 112.996539, "纬度": 28.091528, "参考值1": 9.11, "参考值2": 712, "参考值3": 1.28 }, "geometry": { "type": "Point", "coordinates": [ 112.989960577620991, 28.08581983289924 ] } }, { "type": "Feature", "properties": { "id": 600, "geom": "SRID=4326;POINT(112.986993 28.111206)", "零售户": "长沙市天心区刘姣便利店", "经度": 112.986993, "纬度": 28.111206, "参考值1": 8.91, "参考值2": 630, "参考值3": 1.27 }, "geometry": { "type": "Point", "coordinates": [ 112.98038991172325, 28.105540151597651 ] } }, { "type": "Feature", "properties": { "id": 601, "geom": "SRID=4326;POINT(112.985858 28.19968)", "零售户": "长沙市天心区思之乐便利店", "经度": 112.985858, "纬度": 28.19968, "参考值1": 8.81, "参考值2": 531, "参考值3": 1.27 }, "geometry": { "type": "Point", "coordinates": [ 112.979279771041973, 28.194020319837147 ] } }, { "type": "Feature", "properties": { "id": 602, "geom": "SRID=4326;POINT(112.978064 28.192551)", "零售户": "长沙市天心区胡胜昔摄影工作", "经度": 112.978064, "纬度": 28.192551, "参考值1": 9.07, "参考值2": 730, "参考值3": 1.27 }, "geometry": { "type": "Point", "coordinates": [ 112.971500118888287, 28.186860521090857 ] } }, { "type": "Feature", "properties": { "id": 603, "geom": "SRID=4326;POINT(112.978345 28.15766)", "零售户": "长沙市天心区农坨便利店", "经度": 112.978345, "纬度": 28.15766, "参考值1": 8.87, "参考值2": 665, "参考值3": 1.26 }, "geometry": { "type": "Point", "coordinates": [ 112.971779253011661, 28.151971258137365 ] } }, { "type": "Feature", "properties": { "id": 604, "geom": "SRID=4326;POINT(112.985543 28.169864)", "零售户": "长沙市天心区顺阳便利店", "经度": 112.985543, "纬度": 28.169864, "参考值1": 8.94, "参考值2": 611, "参考值3": 1.26 }, "geometry": { "type": "Point", "coordinates": [ 112.978977027079523, 28.164207101737276 ] } }, { "type": "Feature", "properties": { "id": 606, "geom": "SRID=4326;POINT(113.006867 28.127739)", "零售户": "长沙市天心区艺辉超市", "经度": 113.006867, "纬度": 28.127739, "参考值1": 8.74, "参考值2": 591, "参考值3": 1.26 }, "geometry": { "type": "Point", "coordinates": [ 113.000310373103616, 28.121898882075321 ] } }, { "type": "Feature", "properties": { "id": 607, "geom": "SRID=4326;POINT(113.016559 28.116645)", "零售户": "长沙市天心区朝柱便利店", "经度": 113.016559, "纬度": 28.116645, "参考值1": 8.89, "参考值2": 649, "参考值3": 1.26 }, "geometry": { "type": "Point", "coordinates": [ 113.010039863018349, 28.110639127634265 ] } }, { "type": "Feature", "properties": { "id": 608, "geom": "SRID=4326;POINT(112.965059 28.057616)", "零售户": "长沙市天心区芳伍便利店", "经度": 112.965059, "纬度": 28.057616, "参考值1": 8.83, "参考值2": 560, "参考值3": 1.26 }, "geometry": { "type": "Point", "coordinates": [ 112.958541876812802, 28.051767636981545 ] } }, { "type": "Feature", "properties": { "id": 609, "geom": "SRID=4326;POINT(112.981425 28.199382)", "零售户": "长沙市天心区顺煌便利店", "经度": 112.981425, "纬度": 28.199382, "参考值1": 8.9, "参考值2": 589, "参考值3": 1.26 }, "geometry": { "type": "Point", "coordinates": [ 112.974849978344096, 28.193710673750999 ] } }, { "type": "Feature", "properties": { "id": 610, "geom": "SRID=4326;POINT(112.978345 28.15766)", "零售户": "长沙市天心区唐彬便利店", "经度": 112.978345, "纬度": 28.15766, "参考值1": 8.91, "参考值2": 712, "参考值3": 1.25 }, "geometry": { "type": "Point", "coordinates": [ 112.971779253011661, 28.151971258137365 ] } }, { "type": "Feature", "properties": { "id": 611, "geom": "SRID=4326;POINT(112.986171 28.125495)", "零售户": "长沙市天心区连连食品店", "经度": 112.986171, "纬度": 28.125495, "参考值1": 8.74, "参考值2": 617, "参考值3": 1.25 }, "geometry": { "type": "Point", "coordinates": [ 112.979569595109481, 28.119829642877281 ] } }, { "type": "Feature", "properties": { "id": 612, "geom": "SRID=4326;POINT(112.993044 28.146251)", "零售户": "长沙市天心区鼎准超市", "经度": 112.993044, "纬度": 28.146251, "参考值1": 8.54, "参考值2": 546, "参考值3": 1.25 }, "geometry": { "type": "Point", "coordinates": [ 112.986464741225703, 28.14057031930329 ] } }, { "type": "Feature", "properties": { "id": 613, "geom": "SRID=4326;POINT(112.99023 28.072334)", "零售户": "长沙市天心区玖泽超市", "经度": 112.99023, "纬度": 28.072334, "参考值1": 8.7, "参考值2": 478, "参考值3": 1.24 }, "geometry": { "type": "Point", "coordinates": [ 112.983660134855398, 28.066669670490338 ] } }, { "type": "Feature", "properties": { "id": 614, "geom": "SRID=4326;POINT(113.002914 28.114558)", "零售户": "湖南梦客来电子商务有限公司", "经度": 113.002914, "纬度": 28.114558, "参考值1": 8.71, "参考值2": 616, "参考值3": 1.24 }, "geometry": { "type": "Point", "coordinates": [ 112.996339593245452, 28.108774500062776 ] } }, { "type": "Feature", "properties": { "id": 615, "geom": "SRID=4326;POINT(112.996539 28.091528)", "零售户": "长沙市天心区莫立超市", "经度": 112.996539, "纬度": 28.091528, "参考值1": 8.63, "参考值2": 576, "参考值3": 1.24 }, "geometry": { "type": "Point", "coordinates": [ 112.989960577620991, 28.08581983289924 ] } }, { "type": "Feature", "properties": { "id": 616, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区阿广便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 8.6, "参考值2": 570, "参考值3": 1.24 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 617, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区新农汇生活超市", "经度": 112.996195, "纬度": 28.144471, "参考值1": 8.75, "参考值2": 699, "参考值3": 1.24 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 618, "geom": "SRID=4326;POINT(112.967088 28.116005)", "零售户": "长沙市天心区姿美便利店", "经度": 112.967088, "纬度": 28.116005, "参考值1": 8.52, "参考值2": 597, "参考值3": 1.23 }, "geometry": { "type": "Point", "coordinates": [ 112.960524198618785, 28.110178564979908 ] } }, { "type": "Feature", "properties": { "id": 619, "geom": "SRID=4326;POINT(112.976934 28.199748)", "零售户": "长沙市天心区腾旭便利店", "经度": 112.976934, "纬度": 28.199748, "参考值1": 8.65, "参考值2": 555, "参考值3": 1.23 }, "geometry": { "type": "Point", "coordinates": [ 112.970366047473433, 28.194046837499616 ] } }, { "type": "Feature", "properties": { "id": 620, "geom": "SRID=4326;POINT(112.986833 28.193238)", "零售户": "长沙市天心区红顶食品店", "经度": 112.986833, "纬度": 28.193238, "参考值1": 8.69, "参考值2": 563, "参考值3": 1.23 }, "geometry": { "type": "Point", "coordinates": [ 112.980260473827784, 28.187579889034694 ] } }, { "type": "Feature", "properties": { "id": 621, "geom": "SRID=4326;POINT(112.984215 28.177609)", "零售户": "长沙市天心区可萱食品店", "经度": 112.984215, "纬度": 28.177609, "参考值1": 8.91, "参考值2": 651, "参考值3": 1.23 }, "geometry": { "type": "Point", "coordinates": [ 112.977650425784248, 28.171950331954285 ] } }, { "type": "Feature", "properties": { "id": 622, "geom": "SRID=4326;POINT(112.986675 28.134264)", "零售户": "长沙市天心区林创便利超市", "经度": 112.986675, "纬度": 28.134264, "参考值1": 8.48, "参考值2": 570, "参考值3": 1.23 }, "geometry": { "type": "Point", "coordinates": [ 112.980079428890988, 28.128600140362014 ] } }, { "type": "Feature", "properties": { "id": 623, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区咯咂烟酒商行", "经度": 112.996195, "纬度": 28.144471, "参考值1": 8.65, "参考值2": 599, "参考值3": 1.23 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 624, "geom": "SRID=4326;POINT(112.981626 28.088578)", "零售户": "长沙市天心区邻里超市", "经度": 112.981626, "纬度": 28.088578, "参考值1": 8.56, "参考值2": 664, "参考值3": 1.23 }, "geometry": { "type": "Point", "coordinates": [ 112.975041868383201, 28.082905298970044 ] } }, { "type": "Feature", "properties": { "id": 625, "geom": "SRID=4326;POINT(112.98043 28.172155)", "零售户": "长沙市天心区荣坤便利店", "经度": 112.98043, "纬度": 28.172155, "参考值1": 8.82, "参考值2": 688, "参考值3": 1.23 }, "geometry": { "type": "Point", "coordinates": [ 112.97386874697888, 28.166481688178898 ] } }, { "type": "Feature", "properties": { "id": 626, "geom": "SRID=4326;POINT(112.997585 28.080054)", "零售户": "长沙市天心区嘉铭便利店", "经度": 112.997585, "纬度": 28.080054, "参考值1": 8.49, "参考值2": 530, "参考值3": 1.23 }, "geometry": { "type": "Point", "coordinates": [ 112.991020515598663, 28.07433893964452 ] } }, { "type": "Feature", "properties": { "id": 627, "geom": "SRID=4326;POINT(112.990867 28.069386)", "零售户": "长沙市天心区义清便利店", "经度": 112.990867, "纬度": 28.069386, "参考值1": 8.56, "参考值2": 611, "参考值3": 1.23 }, "geometry": { "type": "Point", "coordinates": [ 112.984299835272822, 28.063719815424029 ] } }, { "type": "Feature", "properties": { "id": 628, "geom": "SRID=4326;POINT(112.959846 28.051646)", "零售户": "长沙市天心区晟露烟店", "经度": 112.959846, "纬度": 28.051646, "参考值1": 8.66, "参考值2": 626, "参考值3": 1.23 }, "geometry": { "type": "Point", "coordinates": [ 112.95335024319283, 28.045709758587833 ] } }, { "type": "Feature", "properties": { "id": 629, "geom": "SRID=4326;POINT(112.985666 28.180907)", "零售户": "长沙市天心区达宾烟酒店", "经度": 112.985666, "纬度": 28.180907, "参考值1": 8.27, "参考值2": 466, "参考值3": 1.22 }, "geometry": { "type": "Point", "coordinates": [ 112.979100324008826, 28.175250294876903 ] } }, { "type": "Feature", "properties": { "id": 630, "geom": "SRID=4326;POINT(112.981092 28.17875)", "零售户": "长沙市天心区晏韬烟酒店", "经度": 112.981092, "纬度": 28.17875, "参考值1": 8.42, "参考值2": 593, "参考值3": 1.22 }, "geometry": { "type": "Point", "coordinates": [ 112.974530051949785, 28.173080215834382 ] } }, { "type": "Feature", "properties": { "id": 631, "geom": "SRID=4326;POINT(112.995021 28.090515)", "零售户": "长沙市天心区时梅便利店", "经度": 112.995021, "纬度": 28.090515, "参考值1": 8.5, "参考值2": 660, "参考值3": 1.22 }, "geometry": { "type": "Point", "coordinates": [ 112.988440447651485, 28.084819654650509 ] } }, { "type": "Feature", "properties": { "id": 632, "geom": "SRID=4326;POINT(113.006387 28.130741)", "零售户": "长沙市天心区琪乐烟酒商行", "经度": 113.006387, "纬度": 28.130741, "参考值1": 8.38, "参考值2": 515, "参考值3": 1.21 }, "geometry": { "type": "Point", "coordinates": [ 112.999830472875885, 28.124908772168201 ] } }, { "type": "Feature", "properties": { "id": 633, "geom": "SRID=4326;POINT(112.99174 28.070407)", "零售户": "长沙市天心区连文副食店", "经度": 112.99174, "纬度": 28.070407, "参考值1": 8.46, "参考值2": 640, "参考值3": 1.21 }, "geometry": { "type": "Point", "coordinates": [ 112.985173099899143, 28.064736791124258 ] } }, { "type": "Feature", "properties": { "id": 634, "geom": "SRID=4326;POINT(112.995867 28.148635)", "零售户": "长沙市天心区铃雅便利店", "经度": 112.995867, "纬度": 28.148635, "参考值1": 8.52, "参考值2": 563, "参考值3": 1.21 }, "geometry": { "type": "Point", "coordinates": [ 112.989295193247443, 28.142934674785611 ] } }, { "type": "Feature", "properties": { "id": 636, "geom": "SRID=4326;POINT(112.978501 28.145612)", "零售户": "长沙市天心区万姐烟酒超市", "经度": 112.978501, "纬度": 28.145612, "参考值1": 8.32, "参考值2": 506, "参考值3": 1.2 }, "geometry": { "type": "Point", "coordinates": [ 112.971923483095267, 28.139921524086752 ] } }, { "type": "Feature", "properties": { "id": 637, "geom": "SRID=4326;POINT(113.002132 28.105932)", "零售户": "长沙市天心区帝君便利店", "经度": 113.002132, "纬度": 28.105932, "参考值1": 8.38, "参考值2": 641, "参考值3": 1.2 }, "geometry": { "type": "Point", "coordinates": [ 112.995557621730811, 28.100159466680708 ] } }, { "type": "Feature", "properties": { "id": 638, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区首锋烟酒商行", "经度": 112.996195, "纬度": 28.144471, "参考值1": 8.38, "参考值2": 642, "参考值3": 1.2 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 639, "geom": "SRID=4326;POINT(113.008273 28.13777)", "零售户": "长沙市天心区元商便利店", "经度": 113.008273, "纬度": 28.13777, "参考值1": 8.45, "参考值2": 625, "参考值3": 1.2 }, "geometry": { "type": "Point", "coordinates": [ 113.001729652585908, 28.131909538817521 ] } }, { "type": "Feature", "properties": { "id": 640, "geom": "SRID=4326;POINT(112.980933 28.153364)", "零售户": "长沙市天心区金团平价超市", "经度": 112.980933, "纬度": 28.153364, "参考值1": 8.36, "参考值2": 566, "参考值3": 1.2 }, "geometry": { "type": "Point", "coordinates": [ 112.974359418190105, 28.147690445040148 ] } }, { "type": "Feature", "properties": { "id": 641, "geom": "SRID=4326;POINT(112.979316 28.122967)", "零售户": "长沙市天心区淼轩然超市", "经度": 112.979316, "纬度": 28.122967, "参考值1": 8.46, "参考值2": 553, "参考值3": 1.19 }, "geometry": { "type": "Point", "coordinates": [ 112.972719415236853, 28.117277710198422 ] } }, { "type": "Feature", "properties": { "id": 642, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区正明利新食品商", "经度": 112.996195, "纬度": 28.144471, "参考值1": 8.38, "参考值2": 585, "参考值3": 1.19 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 644, "geom": "SRID=4326;POINT(112.97917 28.138968)", "零售户": "长沙市天心区瑞宁便利店", "经度": 112.97917, "纬度": 28.138968, "参考值1": 8.18, "参考值2": 550, "参考值3": 1.19 }, "geometry": { "type": "Point", "coordinates": [ 112.972584755449091, 28.133280521821369 ] } }, { "type": "Feature", "properties": { "id": 645, "geom": "SRID=4326;POINT(112.983009 28.201276)", "零售户": "长沙市天心区阳连食品店", "经度": 112.983009, "纬度": 28.201276, "参考值1": 8.22, "参考值2": 482, "参考值3": 1.19 }, "geometry": { "type": "Point", "coordinates": [ 112.97643057377222, 28.195610468764947 ] } }, { "type": "Feature", "properties": { "id": 646, "geom": "SRID=4326;POINT(112.993091 28.198961)", "零售户": "长沙市天心区隔观超市", "经度": 112.993091, "纬度": 28.198961, "参考值1": 8.39, "参考值2": 570, "参考值3": 1.19 }, "geometry": { "type": "Point", "coordinates": [ 112.986518398523799, 28.193281719167803 ] } }, { "type": "Feature", "properties": { "id": 647, "geom": "SRID=4326;POINT(112.984513 28.191946)", "零售户": "长沙市天心区凤明烟酒店", "经度": 112.984513, "纬度": 28.191946, "参考值1": 8.31, "参考值2": 550, "参考值3": 1.19 }, "geometry": { "type": "Point", "coordinates": [ 112.977941924214164, 28.186286350858531 ] } }, { "type": "Feature", "properties": { "id": 648, "geom": "SRID=4326;POINT(112.989292 28.084306)", "零售户": "长沙市天心区披源食品店", "经度": 112.989292, "纬度": 28.084306, "参考值1": 8.06, "参考值2": 561, "参考值3": 1.18 }, "geometry": { "type": "Point", "coordinates": [ 112.982710382408996, 28.078641760128228 ] } }, { "type": "Feature", "properties": { "id": 649, "geom": "SRID=4326;POINT(112.97973 28.170484)", "零售户": "长沙市天心区爱福便利店", "经度": 112.97973, "纬度": 28.170484, "参考值1": 8.26, "参考值2": 590, "参考值3": 1.18 }, "geometry": { "type": "Point", "coordinates": [ 112.973169361445812, 28.164806486027253 ] } }, { "type": "Feature", "properties": { "id": 650, "geom": "SRID=4326;POINT(112.981092 28.17875)", "零售户": "长沙市天心区芳彪便利店", "经度": 112.981092, "纬度": 28.17875, "参考值1": 8.48, "参考值2": 631, "参考值3": 1.18 }, "geometry": { "type": "Point", "coordinates": [ 112.974530051949785, 28.173080215834382 ] } }, { "type": "Feature", "properties": { "id": 651, "geom": "SRID=4326;POINT(112.989134 28.160337)", "零售户": "长沙市天心区旭和便利店", "经度": 112.989134, "纬度": 28.160337, "参考值1": 8.38, "参考值2": 630, "参考值3": 1.18 }, "geometry": { "type": "Point", "coordinates": [ 112.982563576434771, 28.154676028180617 ] } }, { "type": "Feature", "properties": { "id": 652, "geom": "SRID=4326;POINT(112.986993 28.111206)", "零售户": "长沙市天心区高鸣烟业商行", "经度": 112.986993, "纬度": 28.111206, "参考值1": 8.19, "参考值2": 430, "参考值3": 1.18 }, "geometry": { "type": "Point", "coordinates": [ 112.98038991172325, 28.105540151597651 ] } }, { "type": "Feature", "properties": { "id": 653, "geom": "SRID=4326;POINT(112.983791 28.178245)", "零售户": "长沙市天心区莲红自选商场", "经度": 112.983791, "纬度": 28.178245, "参考值1": 8.36, "参考值2": 655, "参考值3": 1.18 }, "geometry": { "type": "Point", "coordinates": [ 112.977226603385603, 28.172585333629833 ] } }, { "type": "Feature", "properties": { "id": 654, "geom": "SRID=4326;POINT(112.988415 28.170588)", "零售户": "长沙市天心区李韩烟酒行", "经度": 112.988415, "纬度": 28.170588, "参考值1": 8.1, "参考值2": 484, "参考值3": 1.18 }, "geometry": { "type": "Point", "coordinates": [ 112.981849562273226, 28.164929887939032 ] } }, { "type": "Feature", "properties": { "id": 655, "geom": "SRID=4326;POINT(112.97205 28.111479)", "零售户": "长沙市天心区吖丑便利店", "经度": 112.97205, "纬度": 28.111479, "参考值1": 8.35, "参考值2": 622, "参考值3": 1.18 }, "geometry": { "type": "Point", "coordinates": [ 112.965469819936729, 28.105720742649307 ] } }, { "type": "Feature", "properties": { "id": 656, "geom": "SRID=4326;POINT(112.977637 28.169543)", "零售户": "长沙市天心区雪铃便利店", "经度": 112.977637, "纬度": 28.169543, "参考值1": 8.13, "参考值2": 528, "参考值3": 1.17 }, "geometry": { "type": "Point", "coordinates": [ 112.971079752150587, 28.163850633968597 ] } }, { "type": "Feature", "properties": { "id": 657, "geom": "SRID=4326;POINT(112.980177 28.191177)", "零售户": "长沙市天心区阳英食品店", "经度": 112.980177, "纬度": 28.191177, "参考值1": 8.33, "参考值2": 663, "参考值3": 1.17 }, "geometry": { "type": "Point", "coordinates": [ 112.973610629622812, 28.185500907150043 ] } }, { "type": "Feature", "properties": { "id": 658, "geom": "SRID=4326;POINT(112.977556 28.196493)", "零售户": "湖南省绿滋肴贸易有限公司坡", "经度": 112.977556, "纬度": 28.196493, "参考值1": 7.6, "参考值2": 405, "参考值3": 1.16 }, "geometry": { "type": "Point", "coordinates": [ 112.970989799091384, 28.190797735706902 ] } }, { "type": "Feature", "properties": { "id": 659, "geom": "SRID=4326;POINT(113.002148 28.118339)", "零售户": "长沙市天心区该全便利店", "经度": 113.002148, "纬度": 28.118339, "参考值1": 8.09, "参考值2": 522, "参考值3": 1.16 }, "geometry": { "type": "Point", "coordinates": [ 112.995571158820383, 28.112565638179021 ] } }, { "type": "Feature", "properties": { "id": 661, "geom": "SRID=4326;POINT(112.994 28.134094)", "零售户": "长沙市天心区紫苏便利店", "经度": 112.994, "纬度": 28.134094, "参考值1": 8.15, "参考值2": 562, "参考值3": 1.16 }, "geometry": { "type": "Point", "coordinates": [ 112.987410708553625, 28.128404339760362 ] } }, { "type": "Feature", "properties": { "id": 662, "geom": "SRID=4326;POINT(112.998856 28.127353)", "零售户": "长沙市天心区尊佳烟酒商行", "经度": 112.998856, "纬度": 28.127353, "参考值1": 7.82, "参考值2": 474, "参考值3": 1.15 }, "geometry": { "type": "Point", "coordinates": [ 112.992272605111964, 28.121619475048316 ] } }, { "type": "Feature", "properties": { "id": 663, "geom": "SRID=4326;POINT(112.976141 28.193627)", "零售户": "长沙市天心区静卓烟店", "经度": 112.976141, "纬度": 28.193627, "参考值1": 8.08, "参考值2": 608, "参考值3": 1.15 }, "geometry": { "type": "Point", "coordinates": [ 112.969580284100033, 28.187920188668031 ] } }, { "type": "Feature", "properties": { "id": 664, "geom": "SRID=4326;POINT(112.992032 28.17929)", "零售户": "长沙市天心区杨苏食品店", "经度": 112.992032, "纬度": 28.17929, "参考值1": 8.13, "参考值2": 572, "参考值3": 1.15 }, "geometry": { "type": "Point", "coordinates": [ 112.985470119113572, 28.173619603732416 ] } }, { "type": "Feature", "properties": { "id": 665, "geom": "SRID=4326;POINT(112.997585 28.080054)", "零售户": "长沙市天心区刘四红超市", "经度": 112.997585, "纬度": 28.080054, "参考值1": 8.05, "参考值2": 801, "参考值3": 1.15 }, "geometry": { "type": "Point", "coordinates": [ 112.991020515598663, 28.07433893964452 ] } }, { "type": "Feature", "properties": { "id": 666, "geom": "SRID=4326;POINT(113.03712 28.102694)", "零售户": "长沙市天心区鸿飞便利超市", "经度": 113.03712, "纬度": 28.102694, "参考值1": 8.05, "参考值2": 582, "参考值3": 1.15 }, "geometry": { "type": "Point", "coordinates": [ 113.030679440151317, 28.0963912891124 ] } }, { "type": "Feature", "properties": { "id": 667, "geom": "SRID=4326;POINT(112.981092 28.17875)", "零售户": "长沙市天心区日冯汇超市", "经度": 112.981092, "纬度": 28.17875, "参考值1": 7.87, "参考值2": 434, "参考值3": 1.14 }, "geometry": { "type": "Point", "coordinates": [ 112.974530051949785, 28.173080215834382 ] } }, { "type": "Feature", "properties": { "id": 668, "geom": "SRID=4326;POINT(113.001971 28.144938)", "零售户": "长沙市天心区优越超市", "经度": 113.001971, "纬度": 28.144938, "参考值1": 7.9, "参考值2": 547, "参考值3": 1.14 }, "geometry": { "type": "Point", "coordinates": [ 112.995411719536989, 28.139171447285452 ] } }, { "type": "Feature", "properties": { "id": 669, "geom": "SRID=4326;POINT(112.999679 28.066093)", "零售户": "长沙市天心区和钦烟酒商行", "经度": 112.999679, "纬度": 28.066093, "参考值1": 7.52, "参考值2": 331, "参考值3": 1.14 }, "geometry": { "type": "Point", "coordinates": [ 112.993130841176679, 28.060358588311317 ] } }, { "type": "Feature", "properties": { "id": 671, "geom": "SRID=4326;POINT(112.995021 28.090515)", "零售户": "长沙市天心区琳子欣便利店", "经度": 112.995021, "纬度": 28.090515, "参考值1": 7.9, "参考值2": 608, "参考值3": 1.14 }, "geometry": { "type": "Point", "coordinates": [ 112.988440447651485, 28.084819654650509 ] } }, { "type": "Feature", "properties": { "id": 672, "geom": "SRID=4326;POINT(112.995261 28.068772)", "零售户": "长沙市天心区宴军便利店", "经度": 112.995261, "纬度": 28.068772, "参考值1": 8.02, "参考值2": 630, "参考值3": 1.14 }, "geometry": { "type": "Point", "coordinates": [ 112.988700744204166, 28.06307970564572 ] } }, { "type": "Feature", "properties": { "id": 673, "geom": "SRID=4326;POINT(112.980748 28.138439)", "零售户": "长沙市天心区韩潇平价超市", "经度": 112.980748, "纬度": 28.138439, "参考值1": 7.82, "参考值2": 600, "参考值3": 1.14 }, "geometry": { "type": "Point", "coordinates": [ 112.974159916947372, 28.132760803654456 ] } }, { "type": "Feature", "properties": { "id": 674, "geom": "SRID=4326;POINT(113.019931 28.105005)", "零售户": "长沙市天心区贵田超市", "经度": 113.019931, "纬度": 28.105005, "参考值1": 8.1, "参考值2": 619, "参考值3": 1.13 }, "geometry": { "type": "Point", "coordinates": [ 113.013429781757864, 28.098940371693754 ] } }, { "type": "Feature", "properties": { "id": 675, "geom": "SRID=4326;POINT(112.976316 28.17651)", "零售户": "长沙市天心区林罗食品店", "经度": 112.976316, "纬度": 28.17651, "参考值1": 7.95, "参考值2": 555, "参考值3": 1.13 }, "geometry": { "type": "Point", "coordinates": [ 112.969762619806005, 28.170806695343057 ] } }, { "type": "Feature", "properties": { "id": 676, "geom": "SRID=4326;POINT(112.976315 28.153307)", "零售户": "长沙市天心区威仔便利店", "经度": 112.976315, "纬度": 28.153307, "参考值1": 7.78, "参考值2": 590, "参考值3": 1.12 }, "geometry": { "type": "Point", "coordinates": [ 112.969749528227936, 28.147600654095836 ] } }, { "type": "Feature", "properties": { "id": 677, "geom": "SRID=4326;POINT(112.980613 28.113738)", "零售户": "长沙市天心区钱双便利店", "经度": 112.980613, "纬度": 28.113738, "参考值1": 7.93, "参考值2": 578, "参考值3": 1.12 }, "geometry": { "type": "Point", "coordinates": [ 112.974013378282436, 28.108056153226958 ] } }, { "type": "Feature", "properties": { "id": 678, "geom": "SRID=4326;POINT(112.986502 28.138113)", "零售户": "长沙市天心区广飞超市", "经度": 112.986502, "纬度": 28.138113, "参考值1": 7.76, "参考值2": 545, "参考值3": 1.12 }, "geometry": { "type": "Point", "coordinates": [ 112.979909814493837, 28.132450000470207 ] } }, { "type": "Feature", "properties": { "id": 679, "geom": "SRID=4326;POINT(112.989009 28.16153)", "零售户": "长沙市天心区有泉便利店", "经度": 112.989009, "纬度": 28.16153, "参考值1": 7.91, "参考值2": 625, "参考值3": 1.11 }, "geometry": { "type": "Point", "coordinates": [ 112.982439358661637, 28.155869540056777 ] } }, { "type": "Feature", "properties": { "id": 680, "geom": "SRID=4326;POINT(113.004972 28.13108)", "零售户": "邹袁烟酒店", "经度": 113.004972, "纬度": 28.13108, "参考值1": 7.63, "参考值2": 395, "参考值3": 1.11 }, "geometry": { "type": "Point", "coordinates": [ 112.998410441452918, 28.125269017035563 ] } }, { "type": "Feature", "properties": { "id": 681, "geom": "SRID=4326;POINT(112.981626 28.088578)", "零售户": "长沙市天心区定超烟酒店", "经度": 112.981626, "纬度": 28.088578, "参考值1": 7.8, "参考值2": 599, "参考值3": 1.11 }, "geometry": { "type": "Point", "coordinates": [ 112.975041868383201, 28.082905298970044 ] } }, { "type": "Feature", "properties": { "id": 682, "geom": "SRID=4326;POINT(112.989347 28.16576)", "零售户": "长沙市天心区品恒超市", "经度": 112.989347, "纬度": 28.16576, "参考值1": 7.76, "参考值2": 572, "参考值3": 1.11 }, "geometry": { "type": "Point", "coordinates": [ 112.98278014020697, 28.160099347558265 ] } }, { "type": "Feature", "properties": { "id": 683, "geom": "SRID=4326;POINT(112.977499 28.14213)", "零售户": "长沙市天心区小致致超市", "经度": 112.977499, "纬度": 28.14213, "参考值1": 7.51, "参考值2": 486, "参考值3": 1.11 }, "geometry": { "type": "Point", "coordinates": [ 112.97091988751167, 28.136430992792992 ] } }, { "type": "Feature", "properties": { "id": 684, "geom": "SRID=4326;POINT(112.986833 28.193238)", "零售户": "长沙市天心区添景烟酒商行", "经度": 112.986833, "纬度": 28.193238, "参考值1": 7.68, "参考值2": 454, "参考值3": 1.11 }, "geometry": { "type": "Point", "coordinates": [ 112.980260473827784, 28.187579889034694 ] } }, { "type": "Feature", "properties": { "id": 685, "geom": "SRID=4326;POINT(112.990865 28.073836)", "零售户": "长沙市天心区城外城生活超市", "经度": 112.990865, "纬度": 28.073836, "参考值1": 7.81, "参考值2": 536, "参考值3": 1.1 }, "geometry": { "type": "Point", "coordinates": [ 112.984294529002838, 28.068169006411424 ] } }, { "type": "Feature", "properties": { "id": 686, "geom": "SRID=4326;POINT(112.988483 28.146473)", "零售户": "长沙市天心区友客便利店", "经度": 112.988483, "纬度": 28.146473, "参考值1": 7.74, "参考值2": 577, "参考值3": 1.1 }, "geometry": { "type": "Point", "coordinates": [ 112.981899513316634, 28.140810240147719 ] } }, { "type": "Feature", "properties": { "id": 687, "geom": "SRID=4326;POINT(113.018754 28.080389)", "零售户": "长沙市天心区加优生活超市", "经度": 113.018754, "纬度": 28.080389, "参考值1": 7.68, "参考值2": 492, "参考值3": 1.1 }, "geometry": { "type": "Point", "coordinates": [ 113.012269537705151, 28.074350476302033 ] } }, { "type": "Feature", "properties": { "id": 688, "geom": "SRID=4326;POINT(112.977237 28.131744)", "零售户": "长沙市天心区汤亚锋超市", "经度": 112.977237, "纬度": 28.131744, "参考值1": 7.57, "参考值2": 394, "参考值3": 1.1 }, "geometry": { "type": "Point", "coordinates": [ 112.970649175214916, 28.126040544555099 ] } }, { "type": "Feature", "properties": { "id": 689, "geom": "SRID=4326;POINT(112.998203 28.130145)", "零售户": "长沙市天心区印必佳图文商务", "经度": 112.998203, "纬度": 28.130145, "参考值1": 7.44, "参考值2": 378, "参考值3": 1.1 }, "geometry": { "type": "Point", "coordinates": [ 112.991619654178265, 28.124418736384172 ] } }, { "type": "Feature", "properties": { "id": 690, "geom": "SRID=4326;POINT(112.983477 28.187257)", "零售户": "长沙市天心区南宫食品店", "经度": 112.983477, "纬度": 28.187257, "参考值1": 7.69, "参考值2": 492, "参考值3": 1.09 }, "geometry": { "type": "Point", "coordinates": [ 112.976909643625206, 28.181595717725926 ] } }, { "type": "Feature", "properties": { "id": 691, "geom": "SRID=4326;POINT(112.988692 28.174066)", "零售户": "长沙市天心区卓贤超市", "经度": 112.988692, "纬度": 28.174066, "参考值1": 7.61, "参考值2": 547, "参考值3": 1.09 }, "geometry": { "type": "Point", "coordinates": [ 112.982127357817973, 28.168407529919769 ] } }, { "type": "Feature", "properties": { "id": 692, "geom": "SRID=4326;POINT(112.992863 28.132092)", "零售户": "长沙市天心区灏瑙便利店", "经度": 112.992863, "纬度": 28.132092, "参考值1": 7.64, "参考值2": 496, "参考值3": 1.09 }, "geometry": { "type": "Point", "coordinates": [ 112.986270344428945, 28.126409104769536 ] } }, { "type": "Feature", "properties": { "id": 693, "geom": "SRID=4326;POINT(112.980419 28.198618)", "零售户": "长沙市天心区良国便利店", "经度": 112.980419, "纬度": 28.198618, "参考值1": 7.88, "参考值2": 576, "参考值3": 1.09 }, "geometry": { "type": "Point", "coordinates": [ 112.973845987814741, 28.192941712031381 ] } }, { "type": "Feature", "properties": { "id": 694, "geom": "SRID=4326;POINT(113.000641 28.120623)", "零售户": "长沙市天心区芸蕊烟酒店", "经度": 113.000641, "纬度": 28.120623, "参考值1": 7.7, "参考值2": 550, "参考值3": 1.09 }, "geometry": { "type": "Point", "coordinates": [ 112.99405989596022, 28.114868543216904 ] } }, { "type": "Feature", "properties": { "id": 695, "geom": "SRID=4326;POINT(112.986241 28.181185)", "零售户": "长沙市天心区向武食品店", "经度": 112.986241, "纬度": 28.181185, "参考值1": 7.62, "参考值2": 492, "参考值3": 1.09 }, "geometry": { "type": "Point", "coordinates": [ 112.979675176598633, 28.175528570170496 ] } }, { "type": "Feature", "properties": { "id": 696, "geom": "SRID=4326;POINT(112.988325 28.171328)", "零售户": "长沙市天心区喜果食品店", "经度": 112.988325, "纬度": 28.171328, "参考值1": 7.65, "参考值2": 574, "参考值3": 1.08 }, "geometry": { "type": "Point", "coordinates": [ 112.98175971730393, 28.165670092839548 ] } }, { "type": "Feature", "properties": { "id": 697, "geom": "SRID=4326;POINT(112.992863 28.132092)", "零售户": "长沙市天心区玲轩便利超市", "经度": 112.992863, "纬度": 28.132092, "参考值1": 7.54, "参考值2": 528, "参考值3": 1.08 }, "geometry": { "type": "Point", "coordinates": [ 112.986270344428945, 28.126409104769536 ] } }, { "type": "Feature", "properties": { "id": 698, "geom": "SRID=4326;POINT(112.987859 28.102391)", "零售户": "长沙市天心区杰心烟酒商行", "经度": 112.987859, "纬度": 28.102391, "参考值1": 7.46, "参考值2": 569, "参考值3": 1.08 }, "geometry": { "type": "Point", "coordinates": [ 112.98126023720414, 28.096725433930924 ] } }, { "type": "Feature", "properties": { "id": 699, "geom": "SRID=4326;POINT(112.977704 28.169187)", "零售户": "晓浔烟酒店", "经度": 112.977704, "纬度": 28.169187, "参考值1": 7.19, "参考值2": 557, "参考值3": 1.08 }, "geometry": { "type": "Point", "coordinates": [ 112.971146497765417, 28.16349513368084 ] } }, { "type": "Feature", "properties": { "id": 700, "geom": "SRID=4326;POINT(112.980922 28.169501)", "零售户": "长沙市天心区半点心便利店", "经度": 112.980922, "纬度": 28.169501, "参考值1": 7.46, "参考值2": 619, "参考值3": 1.07 }, "geometry": { "type": "Point", "coordinates": [ 112.974359380356574, 28.163830130771842 ] } }, { "type": "Feature", "properties": { "id": 701, "geom": "SRID=4326;POINT(112.987657 28.111218)", "零售户": "长沙市天心区许珊珊便利店", "经度": 112.987657, "纬度": 28.111218, "参考值1": 7.64, "参考值2": 574, "参考值3": 1.07 }, "geometry": { "type": "Point", "coordinates": [ 112.981054035239111, 28.10555164401109 ] } }, { "type": "Feature", "properties": { "id": 702, "geom": "SRID=4326;POINT(112.990867 28.069386)", "零售户": "长沙市天心区锡芮便民商店", "经度": 112.990867, "纬度": 28.069386, "参考值1": 7.34, "参考值2": 448, "参考值3": 1.07 }, "geometry": { "type": "Point", "coordinates": [ 112.984299835272822, 28.063719815424029 ] } }, { "type": "Feature", "properties": { "id": 703, "geom": "SRID=4326;POINT(112.981722 28.18137)", "零售户": "长沙市天心区世南便利店", "经度": 112.981722, "纬度": 28.18137, "参考值1": 7.25, "参考值2": 465, "参考值3": 1.06 }, "geometry": { "type": "Point", "coordinates": [ 112.975158748351234, 28.175703024101114 ] } }, { "type": "Feature", "properties": { "id": 704, "geom": "SRID=4326;POINT(112.990517 28.073601)", "零售户": "长沙市天心区依依超市", "经度": 112.990517, "纬度": 28.073601, "参考值1": 7.38, "参考值2": 490, "参考值3": 1.06 }, "geometry": { "type": "Point", "coordinates": [ 112.983946386834617, 28.067935397281236 ] } }, { "type": "Feature", "properties": { "id": 705, "geom": "SRID=4326;POINT(112.996416 28.114412)", "零售户": "长沙市天心区彦佰便利店", "经度": 112.996416, "纬度": 28.114412, "参考值1": 7.37, "参考值2": 505, "参考值3": 1.06 }, "geometry": { "type": "Point", "coordinates": [ 112.989823445692707, 28.108701487312548 ] } }, { "type": "Feature", "properties": { "id": 706, "geom": "SRID=4326;POINT(112.979134 28.150075)", "零售户": "长沙市天心区千仞便利店", "经度": 112.979134, "纬度": 28.150075, "参考值1": 7.29, "参考值2": 505, "参考值3": 1.05 }, "geometry": { "type": "Point", "coordinates": [ 112.972559879002588, 28.144390045245046 ] } }, { "type": "Feature", "properties": { "id": 707, "geom": "SRID=4326;POINT(112.97736 28.171648)", "零售户": "长沙市天心区禾福便利店", "经度": 112.97736, "纬度": 28.171648, "参考值1": 7.29, "参考值2": 496, "参考值3": 1.05 }, "geometry": { "type": "Point", "coordinates": [ 112.9708038997899, 28.165953550473656 ] } }, { "type": "Feature", "properties": { "id": 708, "geom": "SRID=4326;POINT(112.978345 28.15766)", "零售户": "长沙步步高商业连锁有限责任", "经度": 112.978345, "纬度": 28.15766, "参考值1": 7.28, "参考值2": 465, "参考值3": 1.05 }, "geometry": { "type": "Point", "coordinates": [ 112.971779253011661, 28.151971258137365 ] } }, { "type": "Feature", "properties": { "id": 709, "geom": "SRID=4326;POINT(112.993345 28.190259)", "零售户": "长沙市天心区汇岭食品店", "经度": 112.993345, "纬度": 28.190259, "参考值1": 7.25, "参考值2": 414, "参考值3": 1.05 }, "geometry": { "type": "Point", "coordinates": [ 112.986780063004431, 28.184579975287274 ] } }, { "type": "Feature", "properties": { "id": 710, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区龙世食品商店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 7.73, "参考值2": 548, "参考值3": 1.05 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 711, "geom": "SRID=4326;POINT(112.995867 28.148635)", "零售户": "长沙市天心区有茜烟酒店", "经度": 112.995867, "纬度": 28.148635, "参考值1": 7.14, "参考值2": 478, "参考值3": 1.05 }, "geometry": { "type": "Point", "coordinates": [ 112.989295193247443, 28.142934674785611 ] } }, { "type": "Feature", "properties": { "id": 712, "geom": "SRID=4326;POINT(112.97784 28.151125)", "零售户": "长沙市天心区覃慧超市", "经度": 112.97784, "纬度": 28.151125, "参考值1": 7.4, "参考值2": 524, "参考值3": 1.05 }, "geometry": { "type": "Point", "coordinates": [ 112.971269242086009, 28.145430947563863 ] } }, { "type": "Feature", "properties": { "id": 714, "geom": "SRID=4326;POINT(112.985543 28.169864)", "零售户": "长沙市天心区都林新粮油经营", "经度": 112.985543, "纬度": 28.169864, "参考值1": 7.4, "参考值2": 530, "参考值3": 1.05 }, "geometry": { "type": "Point", "coordinates": [ 112.978977027079523, 28.164207101737276 ] } }, { "type": "Feature", "properties": { "id": 715, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区腾泰食品店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 7.42, "参考值2": 623, "参考值3": 1.05 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 716, "geom": "SRID=4326;POINT(112.981397 28.174821)", "零售户": "长沙市天心区彦鲁便利店", "经度": 112.981397, "纬度": 28.174821, "参考值1": 7.43, "参考值2": 513, "参考值3": 1.04 }, "geometry": { "type": "Point", "coordinates": [ 112.974834860589624, 28.169152727596387 ] } }, { "type": "Feature", "properties": { "id": 717, "geom": "SRID=4326;POINT(112.997585 28.080054)", "零售户": "长沙市天心区客汇隆超市", "经度": 112.997585, "纬度": 28.080054, "参考值1": 7.33, "参考值2": 615, "参考值3": 1.04 }, "geometry": { "type": "Point", "coordinates": [ 112.991020515598663, 28.07433893964452 ] } }, { "type": "Feature", "properties": { "id": 719, "geom": "SRID=4326;POINT(113.009624 28.130833)", "零售户": "长沙市天心区璞瑜食品店", "经度": 113.009624, "纬度": 28.130833, "参考值1": 7.31, "参考值2": 578, "参考值3": 1.04 }, "geometry": { "type": "Point", "coordinates": [ 113.003080431933057, 28.124948987340648 ] } }, { "type": "Feature", "properties": { "id": 720, "geom": "SRID=4326;POINT(112.983791 28.178245)", "零售户": "长沙市天心区欢君超市", "经度": 112.983791, "纬度": 28.178245, "参考值1": 7.39, "参考值2": 621, "参考值3": 1.04 }, "geometry": { "type": "Point", "coordinates": [ 112.977226603385603, 28.172585333629833 ] } }, { "type": "Feature", "properties": { "id": 721, "geom": "SRID=4326;POINT(112.996285 28.144471)", "零售户": "长沙市天心区妙雪便利店", "经度": 112.996285, "纬度": 28.144471, "参考值1": 7.38, "参考值2": 579, "参考值3": 1.04 }, "geometry": { "type": "Point", "coordinates": [ 112.989709871165928, 28.138766058767715 ] } }, { "type": "Feature", "properties": { "id": 722, "geom": "SRID=4326;POINT(112.988548 28.130246)", "零售户": "长沙市天心区雅好进便利店", "经度": 112.988548, "纬度": 28.130246, "参考值1": 7.22, "参考值2": 463, "参考值3": 1.03 }, "geometry": { "type": "Point", "coordinates": [ 112.981949857102848, 28.124579450809687 ] } }, { "type": "Feature", "properties": { "id": 723, "geom": "SRID=4326;POINT(112.990804 28.138328)", "零售户": "长沙市天心区邻家购超市", "经度": 112.990804, "纬度": 28.138328, "参考值1": 7.21, "参考值2": 493, "参考值3": 1.03 }, "geometry": { "type": "Point", "coordinates": [ 112.984214148486714, 28.132656492766671 ] } }, { "type": "Feature", "properties": { "id": 724, "geom": "SRID=4326;POINT(112.98346 28.182167)", "零售户": "吉银便利店", "经度": 112.98346, "纬度": 28.182167, "参考值1": 7.33, "参考值2": 567, "参考值3": 1.03 }, "geometry": { "type": "Point", "coordinates": [ 112.97689494223377, 28.176506235811139 ] } }, { "type": "Feature", "properties": { "id": 725, "geom": "SRID=4326;POINT(112.999679 28.066093)", "零售户": "长沙市天心区快惠便利店", "经度": 112.999679, "纬度": 28.066093, "参考值1": 7.19, "参考值2": 563, "参考值3": 1.03 }, "geometry": { "type": "Point", "coordinates": [ 112.993130841176679, 28.060358588311317 ] } }, { "type": "Feature", "properties": { "id": 726, "geom": "SRID=4326;POINT(112.99023 28.072334)", "零售户": "长沙市天心区航涛烟酒商行", "经度": 112.99023, "纬度": 28.072334, "参考值1": 7.13, "参考值2": 422, "参考值3": 1.02 }, "geometry": { "type": "Point", "coordinates": [ 112.983660134855398, 28.066669670490338 ] } }, { "type": "Feature", "properties": { "id": 727, "geom": "SRID=4326;POINT(112.978357 28.141391)", "零售户": "长沙市天心区熊帆便利店", "经度": 112.978357, "纬度": 28.141391, "参考值1": 7.3, "参考值2": 562, "参考值3": 1.02 }, "geometry": { "type": "Point", "coordinates": [ 112.971775511772364, 28.135698418731781 ] } }, { "type": "Feature", "properties": { "id": 728, "geom": "SRID=4326;POINT(112.976315 28.153307)", "零售户": "长沙市天心区郑云英便利店", "经度": 112.976315, "纬度": 28.153307, "参考值1": 7.3, "参考值2": 557, "参考值3": 1.01 }, "geometry": { "type": "Point", "coordinates": [ 112.969749528227936, 28.147600654095836 ] } }, { "type": "Feature", "properties": { "id": 729, "geom": "SRID=4326;POINT(112.995021 28.090515)", "零售户": "长沙市天心区奥菲商务宾馆", "经度": 112.995021, "纬度": 28.090515, "参考值1": 7.24, "参考值2": 524, "参考值3": 1.01 }, "geometry": { "type": "Point", "coordinates": [ 112.988440447651485, 28.084819654650509 ] } }, { "type": "Feature", "properties": { "id": 730, "geom": "SRID=4326;POINT(112.986833 28.193238)", "零售户": "长沙市天心区大刚食品店", "经度": 112.986833, "纬度": 28.193238, "参考值1": 7.17, "参考值2": 516, "参考值3": 1.01 }, "geometry": { "type": "Point", "coordinates": [ 112.980260473827784, 28.187579889034694 ] } }, { "type": "Feature", "properties": { "id": 731, "geom": "SRID=4326;POINT(112.983098 28.167545)", "零售户": "长沙市天心区伍妈便利店", "经度": 112.983098, "纬度": 28.167545, "参考值1": 6.95, "参考值2": 499, "参考值3": 1.01 }, "geometry": { "type": "Point", "coordinates": [ 112.976532387027603, 28.161882937878534 ] } }, { "type": "Feature", "properties": { "id": 732, "geom": "SRID=4326;POINT(112.97205 28.111479)", "零售户": "长沙市天心区服登便利店", "经度": 112.97205, "纬度": 28.111479, "参考值1": 7.02, "参考值2": 491, "参考值3": 1.01 }, "geometry": { "type": "Point", "coordinates": [ 112.965469819936729, 28.105720742649307 ] } }, { "type": "Feature", "properties": { "id": 733, "geom": "SRID=4326;POINT(113.003516 28.131839)", "零售户": "湖南也买酒商贸有限公司万芙", "经度": 113.003516, "纬度": 28.131839, "参考值1": 7.01, "参考值2": 305, "参考值3": 1.01 }, "geometry": { "type": "Point", "coordinates": [ 112.996949846774712, 28.126048850568676 ] } }, { "type": "Feature", "properties": { "id": 734, "geom": "SRID=4326;POINT(112.990867 28.069386)", "零售户": "长沙市天心区建群食品店", "经度": 112.990867, "纬度": 28.069386, "参考值1": 7.06, "参考值2": 561, "参考值3": 1.01 }, "geometry": { "type": "Point", "coordinates": [ 112.984299835272822, 28.063719815424029 ] } }, { "type": "Feature", "properties": { "id": 735, "geom": "SRID=4326;POINT(112.986993 28.111206)", "零售户": "长沙市天心区萌檬生活超市", "经度": 112.986993, "纬度": 28.111206, "参考值1": 7.05, "参考值2": 522, "参考值3": 1.01 }, "geometry": { "type": "Point", "coordinates": [ 112.98038991172325, 28.105540151597651 ] } }, { "type": "Feature", "properties": { "id": 736, "geom": "SRID=4326;POINT(113.002715 28.146665)", "零售户": "长沙市天心区凤爵食品店", "经度": 113.002715, "纬度": 28.146665, "参考值1": 7.16, "参考值2": 607, "参考值3": 1.01 }, "geometry": { "type": "Point", "coordinates": [ 112.996159895873646, 28.140889145634087 ] } }, { "type": "Feature", "properties": { "id": 737, "geom": "SRID=4326;POINT(112.979062 28.18568)", "零售户": "长沙市天心区亦清食品店", "经度": 112.979062, "纬度": 28.18568, "参考值1": 6.99, "参考值2": 469, "参考值3": 1.0 }, "geometry": { "type": "Point", "coordinates": [ 112.97250075683624, 28.17999777035773 ] } }, { "type": "Feature", "properties": { "id": 738, "geom": "SRID=4326;POINT(113.005195 28.123314)", "零售户": "长沙市天心区正塘烟酒店", "经度": 113.005195, "纬度": 28.123314, "参考值1": 6.82, "参考值2": 410, "参考值3": 1.0 }, "geometry": { "type": "Point", "coordinates": [ 112.998629932329848, 28.117498667504783 ] } }, { "type": "Feature", "properties": { "id": 739, "geom": "SRID=4326;POINT(113.03712 28.102694)", "零售户": "湖南和顺石油股份有限公司长", "经度": 113.03712, "纬度": 28.102694, "参考值1": 6.87, "参考值2": 451, "参考值3": 1.0 }, "geometry": { "type": "Point", "coordinates": [ 113.030679440151317, 28.0963912891124 ] } }, { "type": "Feature", "properties": { "id": 740, "geom": "SRID=4326;POINT(112.986171 28.125495)", "零售户": "长沙市天心区汇颂食品店", "经度": 112.986171, "纬度": 28.125495, "参考值1": 7.06, "参考值2": 487, "参考值3": 0.99 }, "geometry": { "type": "Point", "coordinates": [ 112.979569595109481, 28.119829642877281 ] } }, { "type": "Feature", "properties": { "id": 741, "geom": "SRID=4326;POINT(112.979941 28.19663)", "零售户": "满胜烟酒店", "经度": 112.979941, "纬度": 28.19663, "参考值1": 6.91, "参考值2": 518, "参考值3": 0.99 }, "geometry": { "type": "Point", "coordinates": [ 112.973370509124962, 28.190951410724384 ] } }, { "type": "Feature", "properties": { "id": 744, "geom": "SRID=4326;POINT(112.967088 28.116005)", "零售户": "长沙市天心区优贤佳便利店", "经度": 112.967088, "纬度": 28.116005, "参考值1": 6.92, "参考值2": 422, "参考值3": 0.99 }, "geometry": { "type": "Point", "coordinates": [ 112.960524198618785, 28.110178564979908 ] } }, { "type": "Feature", "properties": { "id": 745, "geom": "SRID=4326;POINT(112.986993 28.111206)", "零售户": "长沙市天心区美尚超市", "经度": 112.986993, "纬度": 28.111206, "参考值1": 6.96, "参考值2": 489, "参考值3": 0.99 }, "geometry": { "type": "Point", "coordinates": [ 112.98038991172325, 28.105540151597651 ] } }, { "type": "Feature", "properties": { "id": 746, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区榕琴食品店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 7.05, "参考值2": 584, "参考值3": 0.99 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 747, "geom": "SRID=4326;POINT(112.968369 28.105898)", "零售户": "长沙市天心区新开铺百货批发", "经度": 112.968369, "纬度": 28.105898, "参考值1": 6.91, "参考值2": 508, "参考值3": 0.99 }, "geometry": { "type": "Point", "coordinates": [ 112.961803162468968, 28.100091138487425 ] } }, { "type": "Feature", "properties": { "id": 748, "geom": "SRID=4326;POINT(112.999679 28.066093)", "零售户": "长沙市天心区瑞蚨龙便利店", "经度": 112.999679, "纬度": 28.066093, "参考值1": 6.79, "参考值2": 444, "参考值3": 0.99 }, "geometry": { "type": "Point", "coordinates": [ 112.993130841176679, 28.060358588311317 ] } }, { "type": "Feature", "properties": { "id": 749, "geom": "SRID=4326;POINT(112.98894 28.16021)", "零售户": "长沙市天心区李平桂超市", "经度": 112.98894, "纬度": 28.16021, "参考值1": 7.1, "参考值2": 511, "参考值3": 0.99 }, "geometry": { "type": "Point", "coordinates": [ 112.982369368525468, 28.154549460015115 ] } }, { "type": "Feature", "properties": { "id": 752, "geom": "SRID=4326;POINT(112.984441 28.125457)", "零售户": "润乐堂超市", "经度": 112.984441, "纬度": 28.125457, "参考值1": 6.77, "参考值2": 418, "参考值3": 0.98 }, "geometry": { "type": "Point", "coordinates": [ 112.97784005410837, 28.119789715577102 ] } }, { "type": "Feature", "properties": { "id": 753, "geom": "SRID=4326;POINT(112.986993 28.111206)", "零售户": "长沙市天心区佳更鑫便利店", "经度": 112.986993, "纬度": 28.111206, "参考值1": 6.93, "参考值2": 336, "参考值3": 0.98 }, "geometry": { "type": "Point", "coordinates": [ 112.98038991172325, 28.105540151597651 ] } }, { "type": "Feature", "properties": { "id": 754, "geom": "SRID=4326;POINT(112.999679 28.066093)", "零售户": "长沙市天心区尚柠超市", "经度": 112.999679, "纬度": 28.066093, "参考值1": 6.91, "参考值2": 497, "参考值3": 0.98 }, "geometry": { "type": "Point", "coordinates": [ 112.993130841176679, 28.060358588311317 ] } }, { "type": "Feature", "properties": { "id": 755, "geom": "SRID=4326;POINT(112.987657 28.111218)", "零售户": "长沙市天心区德平超市", "经度": 112.987657, "纬度": 28.111218, "参考值1": 6.9, "参考值2": 522, "参考值3": 0.98 }, "geometry": { "type": "Point", "coordinates": [ 112.981054035239111, 28.10555164401109 ] } }, { "type": "Feature", "properties": { "id": 757, "geom": "SRID=4326;POINT(112.977836 28.182935)", "零售户": "长沙市天心区玲华烟酒商行", "经度": 112.977836, "纬度": 28.182935, "参考值1": 6.91, "参考值2": 550, "参考值3": 0.98 }, "geometry": { "type": "Point", "coordinates": [ 112.971278158787641, 28.177244159040814 ] } }, { "type": "Feature", "properties": { "id": 758, "geom": "SRID=4326;POINT(112.986718 28.105655)", "零售户": "长沙市天心区榕园商贸行", "经度": 112.986718, "纬度": 28.105655, "参考值1": 5.84, "参考值2": 198, "参考值3": 0.97 }, "geometry": { "type": "Point", "coordinates": [ 112.980117075626026, 28.099989782198961 ] } }, { "type": "Feature", "properties": { "id": 759, "geom": "SRID=4326;POINT(112.986876 28.180046)", "零售户": "长沙市天心区福诺便利店", "经度": 112.986876, "纬度": 28.180046, "参考值1": 6.72, "参考值2": 426, "参考值3": 0.97 }, "geometry": { "type": "Point", "coordinates": [ 112.980310465602741, 28.174389606415545 ] } }, { "type": "Feature", "properties": { "id": 760, "geom": "SRID=4326;POINT(113.002348 28.134693)", "零售户": "长沙市天心区惠凡便利店", "经度": 113.002348, "纬度": 28.134693, "参考值1": 6.76, "参考值2": 444, "参考值3": 0.97 }, "geometry": { "type": "Point", "coordinates": [ 112.995780206706826, 28.128919128501497 ] } }, { "type": "Feature", "properties": { "id": 761, "geom": "SRID=4326;POINT(113.006504 28.122897)", "零售户": "长沙市天心区定定旺超市", "经度": 113.006504, "纬度": 28.122897, "参考值1": 6.93, "参考值2": 524, "参考值3": 0.97 }, "geometry": { "type": "Point", "coordinates": [ 112.999943683456422, 28.117061920747684 ] } }, { "type": "Feature", "properties": { "id": 762, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区姜泳便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 6.77, "参考值2": 444, "参考值3": 0.97 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 763, "geom": "SRID=4326;POINT(112.992212 28.171671)", "零售户": "长沙市天心区秀芳烟酒行", "经度": 112.992212, "纬度": 28.171671, "参考值1": 6.68, "参考值2": 431, "参考值3": 0.97 }, "geometry": { "type": "Point", "coordinates": [ 112.985650163216164, 28.165999624029446 ] } }, { "type": "Feature", "properties": { "id": 764, "geom": "SRID=4326;POINT(112.97205 28.111479)", "零售户": "湖南和顺石油股份有限公司长", "经度": 112.97205, "纬度": 28.111479, "参考值1": 6.3, "参考值2": 427, "参考值3": 0.96 }, "geometry": { "type": "Point", "coordinates": [ 112.965469819936729, 28.105720742649307 ] } }, { "type": "Feature", "properties": { "id": 765, "geom": "SRID=4326;POINT(112.993345 28.190259)", "零售户": "长沙市天心区豪廷食品店", "经度": 112.993345, "纬度": 28.190259, "参考值1": 6.74, "参考值2": 432, "参考值3": 0.96 }, "geometry": { "type": "Point", "coordinates": [ 112.986780063004431, 28.184579975287274 ] } }, { "type": "Feature", "properties": { "id": 766, "geom": "SRID=4326;POINT(112.982905 28.183613)", "零售户": "长沙市天心区宣虹烟酒店", "经度": 112.982905, "纬度": 28.183613, "参考值1": 6.39, "参考值2": 523, "参考值3": 0.96 }, "geometry": { "type": "Point", "coordinates": [ 112.976339843946306, 28.177950402898304 ] } }, { "type": "Feature", "properties": { "id": 768, "geom": "SRID=4326;POINT(112.974496 28.123642)", "零售户": "长沙市天心区嘟号便利店", "经度": 112.974496, "纬度": 28.123642, "参考值1": 6.43, "参考值2": 463, "参考值3": 0.96 }, "geometry": { "type": "Point", "coordinates": [ 112.967909892298778, 28.117911688205897 ] } }, { "type": "Feature", "properties": { "id": 769, "geom": "SRID=4326;POINT(112.998824 28.146894)", "零售户": "长沙市天心区赐方便利店", "经度": 112.998824, "纬度": 28.146894, "参考值1": 6.73, "参考值2": 466, "参考值3": 0.96 }, "geometry": { "type": "Point", "coordinates": [ 112.992257460015225, 28.141165044796612 ] } }, { "type": "Feature", "properties": { "id": 770, "geom": "SRID=4326;POINT(112.989441 28.163274)", "零售户": "长沙市天心区汤姐烟店", "经度": 112.989441, "纬度": 28.163274, "参考值1": 6.31, "参考值2": 345, "参考值3": 0.96 }, "geometry": { "type": "Point", "coordinates": [ 112.982872782510498, 28.157612739800246 ] } }, { "type": "Feature", "properties": { "id": 771, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区立磊便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 6.73, "参考值2": 523, "参考值3": 0.96 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 772, "geom": "SRID=4326;POINT(113.002348 28.134693)", "零售户": "长沙市天心区邹晨便利店", "经度": 113.002348, "纬度": 28.134693, "参考值1": 6.8, "参考值2": 449, "参考值3": 0.95 }, "geometry": { "type": "Point", "coordinates": [ 112.995780206706826, 28.128919128501497 ] } }, { "type": "Feature", "properties": { "id": 774, "geom": "SRID=4326;POINT(112.974572 28.137036)", "零售户": "长沙市天心区张志凌便利店", "经度": 112.974572, "纬度": 28.137036, "参考值1": 6.83, "参考值2": 487, "参考值3": 0.95 }, "geometry": { "type": "Point", "coordinates": [ 112.96799475955919, 28.131308742283437 ] } }, { "type": "Feature", "properties": { "id": 776, "geom": "SRID=4326;POINT(112.978357 28.141391)", "零售户": "长沙市天心区景阳超市", "经度": 112.978357, "纬度": 28.141391, "参考值1": 6.76, "参考值2": 501, "参考值3": 0.95 }, "geometry": { "type": "Point", "coordinates": [ 112.971775511772364, 28.135698418731781 ] } }, { "type": "Feature", "properties": { "id": 777, "geom": "SRID=4326;POINT(112.992169 28.147195)", "零售户": "长沙市天心区崴尔思超市", "经度": 112.992169, "纬度": 28.147195, "参考值1": 6.64, "参考值2": 438, "参考值3": 0.94 }, "geometry": { "type": "Point", "coordinates": [ 112.985589481385361, 28.14151943622317 ] } }, { "type": "Feature", "properties": { "id": 778, "geom": "SRID=4326;POINT(112.978064 28.192551)", "零售户": "长沙市天心区三点半超市", "经度": 112.978064, "纬度": 28.192551, "参考值1": 6.59, "参考值2": 437, "参考值3": 0.94 }, "geometry": { "type": "Point", "coordinates": [ 112.971500118888287, 28.186860521090857 ] } }, { "type": "Feature", "properties": { "id": 779, "geom": "SRID=4326;POINT(112.992169 28.147195)", "零售户": "长沙市天心区屿浩烟酒商行", "经度": 112.992169, "纬度": 28.147195, "参考值1": 6.32, "参考值2": 348, "参考值3": 0.94 }, "geometry": { "type": "Point", "coordinates": [ 112.985589481385361, 28.14151943622317 ] } }, { "type": "Feature", "properties": { "id": 780, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区徐留伟便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 6.67, "参考值2": 504, "参考值3": 0.94 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 781, "geom": "SRID=4326;POINT(112.995092 28.091356)", "零售户": "长沙市天心区乐怡超市", "经度": 112.995092, "纬度": 28.091356, "参考值1": 6.55, "参考值2": 492, "参考值3": 0.94 }, "geometry": { "type": "Point", "coordinates": [ 112.988510754830372, 28.085659903574431 ] } }, { "type": "Feature", "properties": { "id": 782, "geom": "SRID=4326;POINT(112.98291 28.18318)", "零售户": "长沙市天心区蒙泉食品店", "经度": 112.98291, "纬度": 28.18318, "参考值1": 6.62, "参考值2": 463, "参考值3": 0.93 }, "geometry": { "type": "Point", "coordinates": [ 112.976345007256441, 28.177517460881866 ] } }, { "type": "Feature", "properties": { "id": 783, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区洪发石刻店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 6.58, "参考值2": 536, "参考值3": 0.93 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 784, "geom": "SRID=4326;POINT(112.98072 28.194754)", "零售户": "长沙市天心区晓佳烟店", "经度": 112.98072, "纬度": 28.194754, "参考值1": 6.59, "参考值2": 528, "参考值3": 0.93 }, "geometry": { "type": "Point", "coordinates": [ 112.974150054049133, 28.189080208689649 ] } }, { "type": "Feature", "properties": { "id": 785, "geom": "SRID=4326;POINT(113.016559 28.116645)", "零售户": "长沙市天心区廖可便利店", "经度": 113.016559, "纬度": 28.116645, "参考值1": 6.64, "参考值2": 435, "参考值3": 0.93 }, "geometry": { "type": "Point", "coordinates": [ 113.010039863018349, 28.110639127634265 ] } }, { "type": "Feature", "properties": { "id": 786, "geom": "SRID=4326;POINT(112.982843 28.186316)", "零售户": "长沙市天心区梅珍食品店", "经度": 112.982843, "纬度": 28.186316, "参考值1": 6.66, "参考值2": 495, "参考值3": 0.93 }, "geometry": { "type": "Point", "coordinates": [ 112.976276646410298, 28.180652885860873 ] } }, { "type": "Feature", "properties": { "id": 787, "geom": "SRID=4326;POINT(112.97676 28.190771)", "零售户": "长沙市天心区瑞顺烟酒商行", "经度": 112.97676, "纬度": 28.190771, "参考值1": 6.51, "参考值2": 503, "参考值3": 0.93 }, "geometry": { "type": "Point", "coordinates": [ 112.970200089754343, 28.18507024907392 ] } }, { "type": "Feature", "properties": { "id": 788, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区澍记食品店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 6.48, "参考值2": 490, "参考值3": 0.93 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 789, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区拉屋友便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 6.39, "参考值2": 393, "参考值3": 0.93 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 790, "geom": "SRID=4326;POINT(112.990253 28.141581)", "零售户": "长沙市天心区如湘烟酒商行", "经度": 112.990253, "纬度": 28.141581, "参考值1": 6.5, "参考值2": 444, "参考值3": 0.93 }, "geometry": { "type": "Point", "coordinates": [ 112.983665766741638, 28.13591231960929 ] } }, { "type": "Feature", "properties": { "id": 791, "geom": "SRID=4326;POINT(112.977899 28.166971)", "零售户": "长沙市天心区平价粮油店", "经度": 112.977899, "纬度": 28.166971, "参考值1": 6.56, "参考值2": 530, "参考值3": 0.93 }, "geometry": { "type": "Point", "coordinates": [ 112.971340217562201, 28.161280429914466 ] } }, { "type": "Feature", "properties": { "id": 792, "geom": "SRID=4326;POINT(112.986327 28.184457)", "零售户": "长沙市天心区新体超市", "经度": 112.986327, "纬度": 28.184457, "参考值1": 6.45, "参考值2": 442, "参考值3": 0.93 }, "geometry": { "type": "Point", "coordinates": [ 112.979760001490661, 28.17880029865988 ] } }, { "type": "Feature", "properties": { "id": 793, "geom": "SRID=4326;POINT(112.996539 28.091528)", "零售户": "长沙市天心区程刚食品店", "经度": 112.996539, "纬度": 28.091528, "参考值1": 6.43, "参考值2": 421, "参考值3": 0.92 }, "geometry": { "type": "Point", "coordinates": [ 112.989960577620991, 28.08581983289924 ] } }, { "type": "Feature", "properties": { "id": 794, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区新开铺百货批发", "经度": 112.978226, "纬度": 28.139107, "参考值1": 6.37, "参考值2": 386, "参考值3": 0.92 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 795, "geom": "SRID=4326;POINT(112.976804 28.196626)", "零售户": "湖南友琪便利店有限公司悦方", "经度": 112.976804, "纬度": 28.196626, "参考值1": 6.53, "参考值2": 439, "参考值3": 0.92 }, "geometry": { "type": "Point", "coordinates": [ 112.970239240968269, 28.190924447809497 ] } }, { "type": "Feature", "properties": { "id": 797, "geom": "SRID=4326;POINT(112.993345 28.190259)", "零售户": "长沙市天心区骏桦便利店", "经度": 112.993345, "纬度": 28.190259, "参考值1": 6.4, "参考值2": 372, "参考值3": 0.92 }, "geometry": { "type": "Point", "coordinates": [ 112.986780063004431, 28.184579975287274 ] } }, { "type": "Feature", "properties": { "id": 798, "geom": "SRID=4326;POINT(112.990647 28.191903)", "零售户": "长沙市天心区汝汝食品店", "经度": 112.990647, "纬度": 28.191903, "参考值1": 6.4, "参考值2": 483, "参考值3": 0.92 }, "geometry": { "type": "Point", "coordinates": [ 112.984077485089756, 28.186237250686716 ] } }, { "type": "Feature", "properties": { "id": 799, "geom": "SRID=4326;POINT(113.005983 28.121886)", "零售户": "长沙市天心区景略便利店", "经度": 113.005983, "纬度": 28.121886, "参考值1": 6.5, "参考值2": 509, "参考值3": 0.92 }, "geometry": { "type": "Point", "coordinates": [ 112.999420370524319, 28.116058781826656 ] } }, { "type": "Feature", "properties": { "id": 800, "geom": "SRID=4326;POINT(112.976315 28.153307)", "零售户": "长沙市天心区广厦金帆百货超", "经度": 112.976315, "纬度": 28.153307, "参考值1": 6.3, "参考值2": 443, "参考值3": 0.92 }, "geometry": { "type": "Point", "coordinates": [ 112.969749528227936, 28.147600654095836 ] } }, { "type": "Feature", "properties": { "id": 801, "geom": "SRID=4326;POINT(112.976315 28.153307)", "零售户": "长沙市天心区大光便利店", "经度": 112.976315, "纬度": 28.153307, "参考值1": 6.45, "参考值2": 503, "参考值3": 0.91 }, "geometry": { "type": "Point", "coordinates": [ 112.969749528227936, 28.147600654095836 ] } }, { "type": "Feature", "properties": { "id": 802, "geom": "SRID=4326;POINT(112.978671 28.199298)", "零售户": "长沙市天心区波旭便利店", "经度": 112.978671, "纬度": 28.199298, "参考值1": 6.5, "参考值2": 492, "参考值3": 0.91 }, "geometry": { "type": "Point", "coordinates": [ 112.972100097649815, 28.193610502075941 ] } }, { "type": "Feature", "properties": { "id": 803, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区萍惠便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 6.37, "参考值2": 444, "参考值3": 0.91 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 804, "geom": "SRID=4326;POINT(112.997585 28.080054)", "零售户": "长沙市天心区娄益便利店", "经度": 112.997585, "纬度": 28.080054, "参考值1": 6.53, "参考值2": 529, "参考值3": 0.91 }, "geometry": { "type": "Point", "coordinates": [ 112.991020515598663, 28.07433893964452 ] } }, { "type": "Feature", "properties": { "id": 805, "geom": "SRID=4326;POINT(112.98827 28.175583)", "零售户": "长沙市天心区好而美食品店", "经度": 112.98827, "纬度": 28.175583, "参考值1": 6.42, "参考值2": 526, "参考值3": 0.91 }, "geometry": { "type": "Point", "coordinates": [ 112.981705254683078, 28.169925327974241 ] } }, { "type": "Feature", "properties": { "id": 806, "geom": "SRID=4326;POINT(112.986993 28.111206)", "零售户": "长沙市天心区郑洲超市", "经度": 112.986993, "纬度": 28.111206, "参考值1": 6.39, "参考值2": 461, "参考值3": 0.9 }, "geometry": { "type": "Point", "coordinates": [ 112.98038991172325, 28.105540151597651 ] } }, { "type": "Feature", "properties": { "id": 807, "geom": "SRID=4326;POINT(112.995261 28.068772)", "零售户": "长沙市天心区朦胧便利店", "经度": 112.995261, "纬度": 28.068772, "参考值1": 6.48, "参考值2": 495, "参考值3": 0.9 }, "geometry": { "type": "Point", "coordinates": [ 112.988700744204166, 28.06307970564572 ] } }, { "type": "Feature", "properties": { "id": 808, "geom": "SRID=4326;POINT(112.999679 28.066093)", "零售户": "长沙市天心区茂焱超市", "经度": 112.999679, "纬度": 28.066093, "参考值1": 6.3, "参考值2": 408, "参考值3": 0.9 }, "geometry": { "type": "Point", "coordinates": [ 112.993130841176679, 28.060358588311317 ] } }, { "type": "Feature", "properties": { "id": 809, "geom": "SRID=4326;POINT(112.990623 28.178254)", "零售户": "长沙市天心区艳纯食品店", "经度": 112.990623, "纬度": 28.178254, "参考值1": 6.4, "参考值2": 480, "参考值3": 0.9 }, "geometry": { "type": "Point", "coordinates": [ 112.98405971535243, 28.17258988977586 ] } }, { "type": "Feature", "properties": { "id": 810, "geom": "SRID=4326;POINT(112.96893 28.12103)", "零售户": "长沙市天心区婷阳便利店", "经度": 112.96893, "纬度": 28.12103, "参考值1": 6.38, "参考值2": 537, "参考值3": 0.9 }, "geometry": { "type": "Point", "coordinates": [ 112.96236016069291, 28.11523065079114 ] } }, { "type": "Feature", "properties": { "id": 811, "geom": "SRID=4326;POINT(113.007841 28.141801)", "零售户": "长沙市天心区蜜沁食品店", "经度": 113.007841, "纬度": 28.141801, "参考值1": 6.15, "参考值2": 433, "参考值3": 0.9 }, "geometry": { "type": "Point", "coordinates": [ 113.001299795974262, 28.13594843336406 ] } }, { "type": "Feature", "properties": { "id": 812, "geom": "SRID=4326;POINT(112.982663 28.175742)", "零售户": "湖南天恒超市有限公司东瓜山", "经度": 112.982663, "纬度": 28.175742, "参考值1": 6.24, "参考值2": 448, "参考值3": 0.89 }, "geometry": { "type": "Point", "coordinates": [ 112.976099594134013, 28.170078949614428 ] } }, { "type": "Feature", "properties": { "id": 813, "geom": "SRID=4326;POINT(112.987285 28.176746)", "零售户": "长沙市天心区旭福便利店", "经度": 112.987285, "纬度": 28.176746, "参考值1": 6.34, "参考值2": 495, "参考值3": 0.89 }, "geometry": { "type": "Point", "coordinates": [ 112.980719949671141, 28.171089491004857 ] } }, { "type": "Feature", "properties": { "id": 814, "geom": "SRID=4326;POINT(113.001495 28.102873)", "零售户": "长沙市天心区从冲副食品商店", "经度": 113.001495, "纬度": 28.102873, "参考值1": 6.08, "参考值2": 454, "参考值3": 0.89 }, "geometry": { "type": "Point", "coordinates": [ 112.994920379634124, 28.097109030883079 ] } }, { "type": "Feature", "properties": { "id": 815, "geom": "SRID=4326;POINT(112.977547 28.164186)", "零售户": "长沙市天心区喜恒便利店", "经度": 112.977547, "纬度": 28.164186, "参考值1": 6.31, "参考值2": 470, "参考值3": 0.89 }, "geometry": { "type": "Point", "coordinates": [ 112.970987448392975, 28.158492292239572 ] } }, { "type": "Feature", "properties": { "id": 816, "geom": "SRID=4326;POINT(112.990517 28.073601)", "零售户": "长沙市天心区盈兴超市", "经度": 112.990517, "纬度": 28.073601, "参考值1": 6.2, "参考值2": 444, "参考值3": 0.89 }, "geometry": { "type": "Point", "coordinates": [ 112.983946386834617, 28.067935397281236 ] } }, { "type": "Feature", "properties": { "id": 817, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区巧乐便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 6.37, "参考值2": 533, "参考值3": 0.89 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 818, "geom": "SRID=4326;POINT(113.006418 28.126155)", "零售户": "长沙市天心区彩虹生活超市", "经度": 113.006418, "纬度": 28.126155, "参考值1": 6.17, "参考值2": 409, "参考值3": 0.89 }, "geometry": { "type": "Point", "coordinates": [ 112.999858777771692, 28.120321595825143 ] } }, { "type": "Feature", "properties": { "id": 819, "geom": "SRID=4326;POINT(112.988459 28.162269)", "零售户": "长沙市天心区万群便利店", "经度": 112.988459, "纬度": 28.162269, "参考值1": 6.3, "参考值2": 417, "参考值3": 0.89 }, "geometry": { "type": "Point", "coordinates": [ 112.981889577911389, 28.156609803579883 ] } }, { "type": "Feature", "properties": { "id": 820, "geom": "SRID=4326;POINT(112.977781 28.162343)", "零售户": "长沙市天心区阿群食品店", "经度": 112.977781, "纬度": 28.162343, "参考值1": 6.37, "参考值2": 536, "参考值3": 0.89 }, "geometry": { "type": "Point", "coordinates": [ 112.971219833663312, 28.156650857363868 ] } }, { "type": "Feature", "properties": { "id": 821, "geom": "SRID=4326;POINT(112.995867 28.148635)", "零售户": "长沙市天心区余星杂货店", "经度": 112.995867, "纬度": 28.148635, "参考值1": 6.14, "参考值2": 403, "参考值3": 0.88 }, "geometry": { "type": "Point", "coordinates": [ 112.989295193247443, 28.142934674785611 ] } }, { "type": "Feature", "properties": { "id": 822, "geom": "SRID=4326;POINT(112.981092 28.17875)", "零售户": "长沙市天心区肖卫红便利店", "经度": 112.981092, "纬度": 28.17875, "参考值1": 6.2, "参考值2": 469, "参考值3": 0.87 }, "geometry": { "type": "Point", "coordinates": [ 112.974530051949785, 28.173080215834382 ] } }, { "type": "Feature", "properties": { "id": 823, "geom": "SRID=4326;POINT(112.990809 28.191506)", "零售户": "长沙市天心区七十六号超市", "经度": 112.990809, "纬度": 28.191506, "参考值1": 6.08, "参考值2": 438, "参考值3": 0.87 }, "geometry": { "type": "Point", "coordinates": [ 112.984239939300707, 28.185839693549035 ] } }, { "type": "Feature", "properties": { "id": 824, "geom": "SRID=4326;POINT(112.978039 28.088755)", "零售户": "长沙市天心区福来超市", "经度": 112.978039, "纬度": 28.088755, "参考值1": 5.95, "参考值2": 403, "参考值3": 0.87 }, "geometry": { "type": "Point", "coordinates": [ 112.971460094316186, 28.083060502968063 ] } }, { "type": "Feature", "properties": { "id": 825, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区明琳百货店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 6.21, "参考值2": 445, "参考值3": 0.87 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 826, "geom": "SRID=4326;POINT(113.004634 28.102535)", "零售户": "长沙市天心区湘攸便利店", "经度": 113.004634, "纬度": 28.102535, "参考值1": 6.17, "参考值2": 477, "参考值3": 0.86 }, "geometry": { "type": "Point", "coordinates": [ 112.998070153503107, 28.09672865130025 ] } }, { "type": "Feature", "properties": { "id": 827, "geom": "SRID=4326;POINT(112.980923 28.169251)", "零售户": "长沙市天心区学典小百货商行", "经度": 112.980923, "纬度": 28.169251, "参考值1": 6.07, "参考值2": 466, "参考值3": 0.86 }, "geometry": { "type": "Point", "coordinates": [ 112.974360293463121, 28.163580114319963 ] } }, { "type": "Feature", "properties": { "id": 828, "geom": "SRID=4326;POINT(112.983009 28.201276)", "零售户": "长沙市天心区区冰点烟酒店", "经度": 112.983009, "纬度": 28.201276, "参考值1": 5.97, "参考值2": 413, "参考值3": 0.86 }, "geometry": { "type": "Point", "coordinates": [ 112.97643057377222, 28.195610468764947 ] } }, { "type": "Feature", "properties": { "id": 829, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区万汉便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 6.05, "参考值2": 418, "参考值3": 0.86 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 830, "geom": "SRID=4326;POINT(112.986833 28.193238)", "零售户": "长沙市天心区琪逸食品店", "经度": 112.986833, "纬度": 28.193238, "参考值1": 5.81, "参考值2": 329, "参考值3": 0.86 }, "geometry": { "type": "Point", "coordinates": [ 112.980260473827784, 28.187579889034694 ] } }, { "type": "Feature", "properties": { "id": 832, "geom": "SRID=4326;POINT(112.995867 28.148635)", "零售户": "长少市天心区轩和便利店", "经度": 112.995867, "纬度": 28.148635, "参考值1": 6.1, "参考值2": 504, "参考值3": 0.85 }, "geometry": { "type": "Point", "coordinates": [ 112.989295193247443, 28.142934674785611 ] } }, { "type": "Feature", "properties": { "id": 833, "geom": "SRID=4326;POINT(112.998856 28.127353)", "零售户": "长沙市天心区陈丹烟酒行", "经度": 112.998856, "纬度": 28.127353, "参考值1": 5.78, "参考值2": 405, "参考值3": 0.85 }, "geometry": { "type": "Point", "coordinates": [ 112.992272605111964, 28.121619475048316 ] } }, { "type": "Feature", "properties": { "id": 834, "geom": "SRID=4326;POINT(112.980198 28.198447)", "零售户": "长沙市天心区再再便利店", "经度": 112.980198, "纬度": 28.198447, "参考值1": 5.87, "参考值2": 383, "参考值3": 0.85 }, "geometry": { "type": "Point", "coordinates": [ 112.973625460684346, 28.192769502235915 ] } }, { "type": "Feature", "properties": { "id": 835, "geom": "SRID=4326;POINT(112.989422 28.161322)", "零售户": "长沙市天心区红佩食品店", "经度": 112.989422, "纬度": 28.161322, "参考值1": 5.79, "参考值2": 417, "参考值3": 0.84 }, "geometry": { "type": "Point", "coordinates": [ 112.982852472039269, 28.155660466221939 ] } }, { "type": "Feature", "properties": { "id": 836, "geom": "SRID=4326;POINT(112.978753 28.1229)", "零售户": "长沙市天心区罗玉堂食品店", "经度": 112.978753, "纬度": 28.1229, "参考值1": 5.71, "参考值2": 356, "参考值3": 0.84 }, "geometry": { "type": "Point", "coordinates": [ 112.972157338631447, 28.117206896108069 ] } }, { "type": "Feature", "properties": { "id": 837, "geom": "SRID=4326;POINT(112.989422 28.161322)", "零售户": "长沙市天心区月辉烟店", "经度": 112.989422, "纬度": 28.161322, "参考值1": 6.05, "参考值2": 503, "参考值3": 0.84 }, "geometry": { "type": "Point", "coordinates": [ 112.982852472039269, 28.155660466221939 ] } }, { "type": "Feature", "properties": { "id": 838, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区光晓食品店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 5.89, "参考值2": 521, "参考值3": 0.84 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 839, "geom": "SRID=4326;POINT(112.977897 28.179251)", "零售户": "长沙市天心区大椿桥食杂水果", "经度": 112.977897, "纬度": 28.179251, "参考值1": 5.82, "参考值2": 425, "参考值3": 0.84 }, "geometry": { "type": "Point", "coordinates": [ 112.971340035827581, 28.173560877098911 ] } }, { "type": "Feature", "properties": { "id": 840, "geom": "SRID=4326;POINT(112.979965 28.189618)", "零售户": "长沙市天心区金鑫副食饮料经", "经度": 112.979965, "纬度": 28.189618, "参考值1": 5.88, "参考值2": 453, "参考值3": 0.84 }, "geometry": { "type": "Point", "coordinates": [ 112.973400027982521, 28.183940934160358 ] } }, { "type": "Feature", "properties": { "id": 841, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区眷恋炒货商行", "经度": 112.978226, "纬度": 28.139107, "参考值1": 5.82, "参考值2": 442, "参考值3": 0.84 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 842, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区台岭粮油店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 5.82, "参考值2": 427, "参考值3": 0.83 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 843, "geom": "SRID=4326;POINT(112.983957 28.192174)", "零售户": "长沙市天心区悦意饮食店", "经度": 112.983957, "纬度": 28.192174, "参考值1": 6.01, "参考值2": 445, "参考值3": 0.83 }, "geometry": { "type": "Point", "coordinates": [ 112.977386042133858, 28.186513138768614 ] } }, { "type": "Feature", "properties": { "id": 844, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区省钱便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 5.98, "参考值2": 435, "参考值3": 0.83 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 845, "geom": "SRID=4326;POINT(112.977779 28.173094)", "零售户": "长沙市天心区蒋哥便利店", "经度": 112.977779, "纬度": 28.173094, "参考值1": 5.86, "参考值2": 464, "参考值3": 0.83 }, "geometry": { "type": "Point", "coordinates": [ 112.971222337715702, 28.167402972358001 ] } }, { "type": "Feature", "properties": { "id": 846, "geom": "SRID=4326;POINT(112.989422 28.161322)", "零售户": "长沙市天心区天客隆超市", "经度": 112.989422, "纬度": 28.161322, "参考值1": 5.78, "参考值2": 358, "参考值3": 0.83 }, "geometry": { "type": "Point", "coordinates": [ 112.982852472039269, 28.155660466221939 ] } }, { "type": "Feature", "properties": { "id": 847, "geom": "SRID=4326;POINT(112.996014 28.186857)", "零售户": "长沙市天心区泽唯便利店", "经度": 112.996014, "纬度": 28.186857, "参考值1": 6.0, "参考值2": 434, "参考值3": 0.83 }, "geometry": { "type": "Point", "coordinates": [ 112.989456085258993, 28.181158851411993 ] } }, { "type": "Feature", "properties": { "id": 848, "geom": "SRID=4326;POINT(112.97786 28.143113)", "零售户": "长沙市天心区妙舟烟草店", "经度": 112.97786, "纬度": 28.143113, "参考值1": 5.82, "参考值2": 485, "参考值3": 0.83 }, "geometry": { "type": "Point", "coordinates": [ 112.971281157111548, 28.137417093108741 ] } }, { "type": "Feature", "properties": { "id": 849, "geom": "SRID=4326;POINT(113.005195 28.123314)", "零售户": "长沙市天心区施施超市", "经度": 113.005195, "纬度": 28.123314, "参考值1": 5.69, "参考值2": 380, "参考值3": 0.83 }, "geometry": { "type": "Point", "coordinates": [ 112.998629932329848, 28.117498667504783 ] } }, { "type": "Feature", "properties": { "id": 850, "geom": "SRID=4326;POINT(112.970471 28.124663)", "零售户": "长沙市天心区星乐隆便民超市", "经度": 112.970471, "纬度": 28.124663, "参考值1": 5.89, "参考值2": 444, "参考值3": 0.83 }, "geometry": { "type": "Point", "coordinates": [ 112.963897204626932, 28.118885037769669 ] } }, { "type": "Feature", "properties": { "id": 851, "geom": "SRID=4326;POINT(112.999479 28.131879)", "零售户": "长沙市天心区星痕超市", "经度": 112.999479, "纬度": 28.131879, "参考值1": 5.8, "参考值2": 380, "参考值3": 0.83 }, "geometry": { "type": "Point", "coordinates": [ 112.992900290154509, 28.126139415207803 ] } }, { "type": "Feature", "properties": { "id": 852, "geom": "SRID=4326;POINT(112.974992 28.185257)", "零售户": "长沙市天心区悦友食品店", "经度": 112.974992, "纬度": 28.185257, "参考值1": 5.76, "参考值2": 402, "参考值3": 0.82 }, "geometry": { "type": "Point", "coordinates": [ 112.968439520132421, 28.179540503401746 ] } }, { "type": "Feature", "properties": { "id": 853, "geom": "SRID=4326;POINT(112.991503 28.15503)", "零售户": "长沙市天心区花蜜便利店", "经度": 112.991503, "纬度": 28.15503, "参考值1": 5.93, "参考值2": 420, "参考值3": 0.82 }, "geometry": { "type": "Point", "coordinates": [ 112.984930270969443, 28.149359593325968 ] } }, { "type": "Feature", "properties": { "id": 854, "geom": "SRID=4326;POINT(113.007489 28.097028)", "零售户": "长沙市天心区陶慧便利店", "经度": 113.007489, "纬度": 28.097028, "参考值1": 5.49, "参考值2": 372, "参考值3": 0.82 }, "geometry": { "type": "Point", "coordinates": [ 113.000940102579648, 28.091179444234573 ] } }, { "type": "Feature", "properties": { "id": 855, "geom": "SRID=4326;POINT(112.977547 28.164186)", "零售户": "长沙市天心区美笑超市", "经度": 112.977547, "纬度": 28.164186, "参考值1": 5.7, "参考值2": 406, "参考值3": 0.82 }, "geometry": { "type": "Point", "coordinates": [ 112.970987448392975, 28.158492292239572 ] } }, { "type": "Feature", "properties": { "id": 856, "geom": "SRID=4326;POINT(112.981092 28.17875)", "零售户": "长沙市天心区鞠友发便利店", "经度": 112.981092, "纬度": 28.17875, "参考值1": 5.7, "参考值2": 383, "参考值3": 0.82 }, "geometry": { "type": "Point", "coordinates": [ 112.974530051949785, 28.173080215834382 ] } }, { "type": "Feature", "properties": { "id": 857, "geom": "SRID=4326;POINT(112.96893 28.12103)", "零售户": "长沙市天心区合良便利店", "经度": 112.96893, "纬度": 28.12103, "参考值1": 5.81, "参考值2": 470, "参考值3": 0.82 }, "geometry": { "type": "Point", "coordinates": [ 112.96236016069291, 28.11523065079114 ] } }, { "type": "Feature", "properties": { "id": 858, "geom": "SRID=4326;POINT(112.978761 28.199477)", "零售户": "长沙市天心区程李便利店", "经度": 112.978761, "纬度": 28.199477, "参考值1": 5.82, "参考值2": 437, "参考值3": 0.82 }, "geometry": { "type": "Point", "coordinates": [ 112.972189768089194, 28.193790092696361 ] } }, { "type": "Feature", "properties": { "id": 859, "geom": "SRID=4326;POINT(112.986675 28.134264)", "零售户": "长沙市天心区童杉便利店", "经度": 112.986675, "纬度": 28.134264, "参考值1": 5.81, "参考值2": 384, "参考值3": 0.82 }, "geometry": { "type": "Point", "coordinates": [ 112.980079428890988, 28.128600140362014 ] } }, { "type": "Feature", "properties": { "id": 860, "geom": "SRID=4326;POINT(112.998824 28.146894)", "零售户": "长沙市天心区白菜烟酒店", "经度": 112.998824, "纬度": 28.146894, "参考值1": 5.75, "参考值2": 413, "参考值3": 0.82 }, "geometry": { "type": "Point", "coordinates": [ 112.992257460015225, 28.141165044796612 ] } }, { "type": "Feature", "properties": { "id": 861, "geom": "SRID=4326;POINT(112.988815 28.187264)", "零售户": "长沙市天心区如意平价商店", "经度": 112.988815, "纬度": 28.187264, "参考值1": 5.85, "参考值2": 414, "参考值3": 0.82 }, "geometry": { "type": "Point", "coordinates": [ 112.982247203151545, 28.18160448250865 ] } }, { "type": "Feature", "properties": { "id": 862, "geom": "SRID=4326;POINT(112.976633 28.085846)", "零售户": "长沙市天心区皮斯玉便利店", "经度": 112.976633, "纬度": 28.085846, "参考值1": 5.83, "参考值2": 524, "参考值3": 0.81 }, "geometry": { "type": "Point", "coordinates": [ 112.970059910995204, 28.080140716757356 ] } }, { "type": "Feature", "properties": { "id": 863, "geom": "SRID=4326;POINT(112.983958 28.1873)", "零售户": "长沙市天心区再进超市", "经度": 112.983958, "纬度": 28.1873, "参考值1": 6.11, "参考值2": 480, "参考值3": 0.81 }, "geometry": { "type": "Point", "coordinates": [ 112.977390310060841, 28.18163995227199 ] } }, { "type": "Feature", "properties": { "id": 864, "geom": "SRID=4326;POINT(112.986191 28.106185)", "零售户": "长沙市天心区田恬食品店", "经度": 112.986191, "纬度": 28.106185, "参考值1": 5.67, "参考值2": 376, "参考值3": 0.81 }, "geometry": { "type": "Point", "coordinates": [ 112.979589808355371, 28.100519690781169 ] } }, { "type": "Feature", "properties": { "id": 865, "geom": "SRID=4326;POINT(112.993168 28.198806)", "零售户": "长沙市天心区豪林食品店", "经度": 112.993168, "纬度": 28.198806, "参考值1": 5.82, "参考值2": 304, "参考值3": 0.81 }, "geometry": { "type": "Point", "coordinates": [ 112.986595661647968, 28.193126291075071 ] } }, { "type": "Feature", "properties": { "id": 866, "geom": "SRID=4326;POINT(112.987859 28.102391)", "零售户": "长沙市天心区翰记便利店", "经度": 112.987859, "纬度": 28.102391, "参考值1": 5.62, "参考值2": 414, "参考值3": 0.81 }, "geometry": { "type": "Point", "coordinates": [ 112.98126023720414, 28.096725433930924 ] } }, { "type": "Feature", "properties": { "id": 867, "geom": "SRID=4326;POINT(112.992169 28.147195)", "零售户": "长沙市天心区云萱茗茶商行", "经度": 112.992169, "纬度": 28.147195, "参考值1": 5.47, "参考值2": 312, "参考值3": 0.81 }, "geometry": { "type": "Point", "coordinates": [ 112.985589481385361, 28.14151943622317 ] } }, { "type": "Feature", "properties": { "id": 868, "geom": "SRID=4326;POINT(112.982776 28.178961)", "零售户": "长沙市天心区文台便利店", "经度": 112.982776, "纬度": 28.178961, "参考值1": 5.85, "参考值2": 414, "参考值3": 0.81 }, "geometry": { "type": "Point", "coordinates": [ 112.976212255212872, 28.173298287220383 ] } }, { "type": "Feature", "properties": { "id": 870, "geom": "SRID=4326;POINT(112.986993 28.111206)", "零售户": "长沙市天心区乐鑫超市", "经度": 112.986993, "纬度": 28.111206, "参考值1": 5.65, "参考值2": 411, "参考值3": 0.8 }, "geometry": { "type": "Point", "coordinates": [ 112.98038991172325, 28.105540151597651 ] } }, { "type": "Feature", "properties": { "id": 871, "geom": "SRID=4326;POINT(112.996539 28.091528)", "零售户": "圣城超市", "经度": 112.996539, "纬度": 28.091528, "参考值1": 5.75, "参考值2": 412, "参考值3": 0.8 }, "geometry": { "type": "Point", "coordinates": [ 112.989960577620991, 28.08581983289924 ] } }, { "type": "Feature", "properties": { "id": 872, "geom": "SRID=4326;POINT(112.981535 28.199361)", "零售户": "长沙市天心区万悦便利店", "经度": 112.981535, "纬度": 28.199361, "参考值1": 5.57, "参考值2": 359, "参考值3": 0.8 }, "geometry": { "type": "Point", "coordinates": [ 112.974959871893361, 28.193690186279735 ] } }, { "type": "Feature", "properties": { "id": 873, "geom": "SRID=4326;POINT(112.986089 28.151825)", "零售户": "长沙市天心区静必园便利店", "经度": 112.986089, "纬度": 28.151825, "参考值1": 5.57, "参考值2": 455, "参考值3": 0.8 }, "geometry": { "type": "Point", "coordinates": [ 112.979510409238657, 28.146165311987012 ] } }, { "type": "Feature", "properties": { "id": 874, "geom": "SRID=4326;POINT(112.952708 28.163612)", "零售户": "长沙市天心区逸妮食品店", "经度": 112.952708, "纬度": 28.163612, "参考值1": 5.47, "参考值2": 443, "参考值3": 0.8 }, "geometry": { "type": "Point", "coordinates": [ 112.946240126829437, 28.157549020588661 ] } }, { "type": "Feature", "properties": { "id": 875, "geom": "SRID=4326;POINT(112.978744 28.139331)", "零售户": "长沙市天心区平喜炒货店", "经度": 112.978744, "纬度": 28.139331, "参考值1": 5.56, "参考值2": 453, "参考值3": 0.8 }, "geometry": { "type": "Point", "coordinates": [ 112.972159824166525, 28.133640698016332 ] } }, { "type": "Feature", "properties": { "id": 876, "geom": "SRID=4326;POINT(112.981026 28.186681)", "零售户": "长沙市天心区宁银便利店", "经度": 112.981026, "纬度": 28.186681, "参考值1": 5.68, "参考值2": 438, "参考值3": 0.8 }, "geometry": { "type": "Point", "coordinates": [ 112.974461355311632, 28.181010200368473 ] } }, { "type": "Feature", "properties": { "id": 877, "geom": "SRID=4326;POINT(112.993168 28.198806)", "零售户": "长沙市天心区众英杰烟酒店", "经度": 112.993168, "纬度": 28.198806, "参考值1": 5.56, "参考值2": 358, "参考值3": 0.8 }, "geometry": { "type": "Point", "coordinates": [ 112.986595661647968, 28.193126291075071 ] } }, { "type": "Feature", "properties": { "id": 878, "geom": "SRID=4326;POINT(112.986588 28.131054)", "零售户": "长沙市天心区联润食品店", "经度": 112.986588, "纬度": 28.131054, "参考值1": 5.7, "参考值2": 449, "参考值3": 0.8 }, "geometry": { "type": "Point", "coordinates": [ 112.979989940783341, 28.125389529916248 ] } }, { "type": "Feature", "properties": { "id": 879, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区胜玲便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 5.54, "参考值2": 484, "参考值3": 0.8 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 880, "geom": "SRID=4326;POINT(113.001229 28.078273)", "零售户": "长沙市天心区好亦多超市", "经度": 113.001229, "纬度": 28.078273, "参考值1": 5.74, "参考值2": 515, "参考值3": 0.79 }, "geometry": { "type": "Point", "coordinates": [ 112.994676250963437, 28.072517973117343 ] } }, { "type": "Feature", "properties": { "id": 881, "geom": "SRID=4326;POINT(113.005024 28.128021)", "零售户": "长沙市天心区友护超市", "经度": 113.005024, "纬度": 28.128021, "参考值1": 5.6, "参考值2": 357, "参考值3": 0.79 }, "geometry": { "type": "Point", "coordinates": [ 112.998460612943603, 28.12220875342064 ] } }, { "type": "Feature", "properties": { "id": 882, "geom": "SRID=4326;POINT(113.007273 28.141783)", "零售户": "长沙市天心区杰松烟酒店", "经度": 113.007273, "纬度": 28.141783, "参考值1": 5.56, "参考值2": 485, "参考值3": 0.79 }, "geometry": { "type": "Point", "coordinates": [ 113.000729538127302, 28.135939424643258 ] } }, { "type": "Feature", "properties": { "id": 883, "geom": "SRID=4326;POINT(112.991941 28.205284)", "零售户": "湖南天玺大酒店有限公司", "经度": 112.991941, "纬度": 28.205284, "参考值1": 5.82, "参考值2": 158, "参考值3": 0.79 }, "geometry": { "type": "Point", "coordinates": [ 112.985360538910427, 28.199609475266239 ] } }, { "type": "Feature", "properties": { "id": 884, "geom": "SRID=4326;POINT(112.982678 28.188355)", "零售户": "长沙市天心区丰赫食品商行", "经度": 112.982678, "纬度": 28.188355, "参考值1": 5.66, "参考值2": 429, "参考值3": 0.79 }, "geometry": { "type": "Point", "coordinates": [ 112.976110624290087, 28.182691027085202 ] } }, { "type": "Feature", "properties": { "id": 885, "geom": "SRID=4326;POINT(112.986502 28.138113)", "零售户": "长沙市天心区蔚然锦和超市浪", "经度": 112.986502, "纬度": 28.138113, "参考值1": 5.66, "参考值2": 386, "参考值3": 0.79 }, "geometry": { "type": "Point", "coordinates": [ 112.979909814493837, 28.132450000470207 ] } }, { "type": "Feature", "properties": { "id": 887, "geom": "SRID=4326;POINT(113.0007 28.137821)", "零售户": "长沙市天心区侠资烟酒商行", "经度": 113.0007, "纬度": 28.137821, "参考值1": 5.39, "参考值2": 346, "参考值3": 0.79 }, "geometry": { "type": "Point", "coordinates": [ 112.994129816888432, 28.132068517447529 ] } }, { "type": "Feature", "properties": { "id": 888, "geom": "SRID=4326;POINT(112.974475 28.138499)", "零售户": "长沙市天心区贰贰食品店", "经度": 112.974475, "纬度": 28.138499, "参考值1": 5.5, "参考值2": 424, "参考值3": 0.78 }, "geometry": { "type": "Point", "coordinates": [ 112.967899357878991, 28.132771068198217 ] } }, { "type": "Feature", "properties": { "id": 889, "geom": "SRID=4326;POINT(112.975982 28.19578)", "零售户": "长沙市天心区贰仁便利店", "经度": 112.975982, "纬度": 28.19578, "参考值1": 5.61, "参考值2": 447, "参考值3": 0.78 }, "geometry": { "type": "Point", "coordinates": [ 112.969419829507061, 28.190071269113389 ] } }, { "type": "Feature", "properties": { "id": 890, "geom": "SRID=4326;POINT(112.979118 28.195514)", "零售户": "长沙市天心区吉殿阳便利店", "经度": 112.979118, "纬度": 28.195514, "参考值1": 5.59, "参考值2": 458, "参考值3": 0.78 }, "geometry": { "type": "Point", "coordinates": [ 112.97254979691256, 28.189830441474552 ] } }, { "type": "Feature", "properties": { "id": 892, "geom": "SRID=4326;POINT(112.993345 28.190259)", "零售户": "长沙市天心区晓敏惠万家烟酒", "经度": 112.993345, "纬度": 28.190259, "参考值1": 5.41, "参考值2": 411, "参考值3": 0.78 }, "geometry": { "type": "Point", "coordinates": [ 112.986780063004431, 28.184579975287274 ] } }, { "type": "Feature", "properties": { "id": 893, "geom": "SRID=4326;POINT(112.986386 28.180696)", "零售户": "长沙市天心区梦欣便利店", "经度": 112.986386, "纬度": 28.180696, "参考值1": 5.55, "参考值2": 309, "参考值3": 0.78 }, "geometry": { "type": "Point", "coordinates": [ 112.979820298917602, 28.175039627347562 ] } }, { "type": "Feature", "properties": { "id": 895, "geom": "SRID=4326;POINT(112.981152 28.16782)", "零售户": "长沙市天心区佳宇水果商行", "经度": 112.981152, "纬度": 28.16782, "参考值1": 5.43, "参考值2": 373, "参考值3": 0.78 }, "geometry": { "type": "Point", "coordinates": [ 112.974588458013955, 28.162150123230745 ] } }, { "type": "Feature", "properties": { "id": 896, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区吉腾建材店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 5.64, "参考值2": 462, "参考值3": 0.78 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 897, "geom": "SRID=4326;POINT(113.010739 28.131452)", "零售户": "长沙市天心区余容便利店", "经度": 113.010739, "纬度": 28.131452, "参考值1": 5.53, "参考值2": 361, "参考值3": 0.77 }, "geometry": { "type": "Point", "coordinates": [ 113.004200537586414, 28.12554938397194 ] } }, { "type": "Feature", "properties": { "id": 898, "geom": "SRID=4326;POINT(112.989134 28.160337)", "零售户": "长沙市天心区大润发量贩超市", "经度": 112.989134, "纬度": 28.160337, "参考值1": 5.49, "参考值2": 367, "参考值3": 0.77 }, "geometry": { "type": "Point", "coordinates": [ 112.982563576434771, 28.154676028180617 ] } }, { "type": "Feature", "properties": { "id": 899, "geom": "SRID=4326;POINT(112.977637 28.169543)", "零售户": "长沙市天心区沙裕食品店", "经度": 112.977637, "纬度": 28.169543, "参考值1": 5.51, "参考值2": 408, "参考值3": 0.77 }, "geometry": { "type": "Point", "coordinates": [ 112.971079752150587, 28.163850633968597 ] } }, { "type": "Feature", "properties": { "id": 900, "geom": "SRID=4326;POINT(112.989519 28.171705)", "零售户": "长沙市天心区胡凯文食品店", "经度": 112.989519, "纬度": 28.171705, "参考值1": 5.45, "参考值2": 433, "参考值3": 0.77 }, "geometry": { "type": "Point", "coordinates": [ 112.982954473294356, 28.166044439002668 ] } }, { "type": "Feature", "properties": { "id": 901, "geom": "SRID=4326;POINT(112.9794 28.14862)", "零售户": "长沙市天心区海培薇便利店", "经度": 112.9794, "纬度": 28.14862, "参考值1": 5.4, "参考值2": 359, "参考值3": 0.77 }, "geometry": { "type": "Point", "coordinates": [ 112.972823992813574, 28.142936428602045 ] } }, { "type": "Feature", "properties": { "id": 902, "geom": "SRID=4326;POINT(112.981697 28.200261)", "零售户": "长沙市天心区森泥食品店", "经度": 112.981697, "纬度": 28.200261, "参考值1": 5.24, "参考值2": 300, "参考值3": 0.77 }, "geometry": { "type": "Point", "coordinates": [ 112.97512082103502, 28.194590697673149 ] } }, { "type": "Feature", "properties": { "id": 903, "geom": "SRID=4326;POINT(112.98847 28.175588)", "零售户": "长沙市天心区朋飞便利超市", "经度": 112.98847, "纬度": 28.175588, "参考值1": 5.39, "参考值2": 428, "参考值3": 0.77 }, "geometry": { "type": "Point", "coordinates": [ 112.981905341292872, 28.169929981613169 ] } }, { "type": "Feature", "properties": { "id": 904, "geom": "SRID=4326;POINT(112.996539 28.091528)", "零售户": "长沙市天心区金季便利店", "经度": 112.996539, "纬度": 28.091528, "参考值1": 5.5, "参考值2": 417, "参考值3": 0.77 }, "geometry": { "type": "Point", "coordinates": [ 112.989960577620991, 28.08581983289924 ] } }, { "type": "Feature", "properties": { "id": 906, "geom": "SRID=4326;POINT(112.986993 28.111206)", "零售户": "长沙市天心区家速度便利店", "经度": 112.986993, "纬度": 28.111206, "参考值1": 5.55, "参考值2": 391, "参考值3": 0.77 }, "geometry": { "type": "Point", "coordinates": [ 112.98038991172325, 28.105540151597651 ] } }, { "type": "Feature", "properties": { "id": 908, "geom": "SRID=4326;POINT(112.989931 28.204747)", "零售户": "长沙市天心区融燕便利店", "经度": 112.989931, "纬度": 28.204747, "参考值1": 5.39, "参考值2": 340, "参考值3": 0.77 }, "geometry": { "type": "Point", "coordinates": [ 112.983349036856794, 28.199080812917426 ] } }, { "type": "Feature", "properties": { "id": 909, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区青连超市", "经度": 112.996195, "纬度": 28.144471, "参考值1": 5.36, "参考值2": 463, "参考值3": 0.76 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 910, "geom": "SRID=4326;POINT(112.97733 28.167592)", "零售户": "长沙市天心区火山哥炒货店", "经度": 112.97733, "纬度": 28.167592, "参考值1": 5.47, "参考值2": 396, "参考值3": 0.76 }, "geometry": { "type": "Point", "coordinates": [ 112.970772623210195, 28.161896968004989 ] } }, { "type": "Feature", "properties": { "id": 911, "geom": "SRID=4326;POINT(113.013851 28.11244)", "零售户": "长沙市天心区金荷便利店", "经度": 113.013851, "纬度": 28.11244, "参考值1": 5.43, "参考值2": 456, "参考值3": 0.76 }, "geometry": { "type": "Point", "coordinates": [ 113.007320269749442, 28.106482128581071 ] } }, { "type": "Feature", "properties": { "id": 912, "geom": "SRID=4326;POINT(112.979411 28.178704)", "零售户": "长沙市天心区裕南街新惠百货", "经度": 112.979411, "纬度": 28.178704, "参考值1": 5.42, "参考值2": 438, "参考值3": 0.76 }, "geometry": { "type": "Point", "coordinates": [ 112.972851448618016, 28.173024629298077 ] } }, { "type": "Feature", "properties": { "id": 913, "geom": "SRID=4326;POINT(112.987657 28.111218)", "零售户": "长沙市天心区乐佳购便利店", "经度": 112.987657, "纬度": 28.111218, "参考值1": 5.3, "参考值2": 399, "参考值3": 0.76 }, "geometry": { "type": "Point", "coordinates": [ 112.981054035239111, 28.10555164401109 ] } }, { "type": "Feature", "properties": { "id": 914, "geom": "SRID=4326;POINT(112.983569 28.189492)", "零售户": "长沙市天心区省惠便利店", "经度": 112.983569, "纬度": 28.189492, "参考值1": 5.32, "参考值2": 408, "参考值3": 0.76 }, "geometry": { "type": "Point", "coordinates": [ 112.977000203919303, 28.18383063004633 ] } }, { "type": "Feature", "properties": { "id": 915, "geom": "SRID=4326;POINT(112.992169 28.147195)", "零售户": "长沙市天心区威兰食品店", "经度": 112.992169, "纬度": 28.147195, "参考值1": 5.69, "参考值2": 437, "参考值3": 0.75 }, "geometry": { "type": "Point", "coordinates": [ 112.985589481385361, 28.14151943622317 ] } }, { "type": "Feature", "properties": { "id": 916, "geom": "SRID=4326;POINT(113.009763 28.131405)", "零售户": "湖南也买酒商贸有限公司湘府", "经度": 113.009763, "纬度": 28.131405, "参考值1": 5.12, "参考值2": 222, "参考值3": 0.75 }, "geometry": { "type": "Point", "coordinates": [ 113.003220420402613, 28.125518778078586 ] } }, { "type": "Feature", "properties": { "id": 917, "geom": "SRID=4326;POINT(112.97205 28.111479)", "零售户": "长沙市天心区丹佳便利店", "经度": 112.97205, "纬度": 28.111479, "参考值1": 5.4, "参考值2": 446, "参考值3": 0.75 }, "geometry": { "type": "Point", "coordinates": [ 112.965469819936729, 28.105720742649307 ] } }, { "type": "Feature", "properties": { "id": 918, "geom": "SRID=4326;POINT(112.997585 28.080054)", "零售户": "长沙市天心区春春便利店", "经度": 112.997585, "纬度": 28.080054, "参考值1": 5.35, "参考值2": 448, "参考值3": 0.75 }, "geometry": { "type": "Point", "coordinates": [ 112.991020515598663, 28.07433893964452 ] } }, { "type": "Feature", "properties": { "id": 920, "geom": "SRID=4326;POINT(113.008296 28.083586)", "零售户": "长沙市天心区省琪生活超市", "经度": 113.008296, "纬度": 28.083586, "参考值1": 5.26, "参考值2": 420, "参考值3": 0.75 }, "geometry": { "type": "Point", "coordinates": [ 113.001763366202454, 28.077727793925927 ] } }, { "type": "Feature", "properties": { "id": 921, "geom": "SRID=4326;POINT(112.994739 28.110596)", "零售户": "长沙市天心区安硕食品店", "经度": 112.994739, "纬度": 28.110596, "参考值1": 5.39, "参考值2": 433, "参考值3": 0.75 }, "geometry": { "type": "Point", "coordinates": [ 112.988143773467954, 28.104899274317106 ] } }, { "type": "Feature", "properties": { "id": 922, "geom": "SRID=4326;POINT(112.988295 28.175888)", "零售户": "长沙市天心区仟凤便利店", "经度": 112.988295, "纬度": 28.175888, "参考值1": 5.37, "参考值2": 434, "参考值3": 0.75 }, "geometry": { "type": "Point", "coordinates": [ 112.981730268361474, 28.170230287818264 ] } }, { "type": "Feature", "properties": { "id": 923, "geom": "SRID=4326;POINT(112.986261 28.181595)", "零售户": "长沙市天心区万满惠便利店", "经度": 112.986261, "纬度": 28.181595, "参考值1": 5.35, "参考值2": 405, "参考值3": 0.75 }, "geometry": { "type": "Point", "coordinates": [ 112.979695058185371, 28.175938545988412 ] } }, { "type": "Feature", "properties": { "id": 925, "geom": "SRID=4326;POINT(112.988883 28.17871)", "零售户": "长沙市天心区上坡路超市", "经度": 112.988883, "纬度": 28.17871, "参考值1": 5.16, "参考值2": 340, "参考值3": 0.75 }, "geometry": { "type": "Point", "coordinates": [ 112.982318349169049, 28.173051102358766 ] } }, { "type": "Feature", "properties": { "id": 926, "geom": "SRID=4326;POINT(113.002914 28.114558)", "零售户": "长沙市天心区卡其诺食品商行", "经度": 113.002914, "纬度": 28.114558, "参考值1": 5.19, "参考值2": 398, "参考值3": 0.75 }, "geometry": { "type": "Point", "coordinates": [ 112.996339593245452, 28.108774500062776 ] } }, { "type": "Feature", "properties": { "id": 927, "geom": "SRID=4326;POINT(112.985244 28.117044)", "零售户": "长沙市天心区德琪超市", "经度": 112.985244, "纬度": 28.117044, "参考值1": 5.21, "参考值2": 387, "参考值3": 0.75 }, "geometry": { "type": "Point", "coordinates": [ 112.978640469426907, 28.111377381489856 ] } }, { "type": "Feature", "properties": { "id": 928, "geom": "SRID=4326;POINT(112.989469 28.188861)", "零售户": "长沙市天心区胜功炒货店", "经度": 112.989469, "纬度": 28.188861, "参考值1": 5.2, "参考值2": 367, "参考值3": 0.74 }, "geometry": { "type": "Point", "coordinates": [ 112.982900639784432, 28.183199645311138 ] } }, { "type": "Feature", "properties": { "id": 929, "geom": "SRID=4326;POINT(112.9894 28.160521)", "零售户": "长沙市天心区紫煌便利店", "经度": 112.9894, "纬度": 28.160521, "参考值1": 5.39, "参考值2": 371, "参考值3": 0.74 }, "geometry": { "type": "Point", "coordinates": [ 112.982829881822056, 28.154859381348835 ] } }, { "type": "Feature", "properties": { "id": 930, "geom": "SRID=4326;POINT(112.995261 28.068772)", "零售户": "长沙市天心区新乐佳生活超市", "经度": 112.995261, "纬度": 28.068772, "参考值1": 5.23, "参考值2": 373, "参考值3": 0.74 }, "geometry": { "type": "Point", "coordinates": [ 112.988700744204166, 28.06307970564572 ] } }, { "type": "Feature", "properties": { "id": 931, "geom": "SRID=4326;POINT(112.97205 28.111479)", "零售户": "长沙市天心区伟光便利店", "经度": 112.97205, "纬度": 28.111479, "参考值1": 5.23, "参考值2": 482, "参考值3": 0.74 }, "geometry": { "type": "Point", "coordinates": [ 112.965469819936729, 28.105720742649307 ] } }, { "type": "Feature", "properties": { "id": 932, "geom": "SRID=4326;POINT(112.989094 28.076062)", "零售户": "长沙市天心区煜昊便利店", "经度": 112.989094, "纬度": 28.076062, "参考值1": 5.11, "参考值2": 417, "参考值3": 0.74 }, "geometry": { "type": "Point", "coordinates": [ 112.982520215191101, 28.070400223710912 ] } }, { "type": "Feature", "properties": { "id": 933, "geom": "SRID=4326;POINT(112.977237 28.131744)", "零售户": "长沙市天心区多宜便利店", "经度": 112.977237, "纬度": 28.131744, "参考值1": 5.23, "参考值2": 381, "参考值3": 0.73 }, "geometry": { "type": "Point", "coordinates": [ 112.970649175214916, 28.126040544555099 ] } }, { "type": "Feature", "properties": { "id": 934, "geom": "SRID=4326;POINT(112.980713 28.153745)", "零售户": "长沙市天心区科兵便利店", "经度": 112.980713, "纬度": 28.153745, "参考值1": 5.22, "参考值2": 358, "参考值3": 0.73 }, "geometry": { "type": "Point", "coordinates": [ 112.974140059234983, 28.148070389980607 ] } }, { "type": "Feature", "properties": { "id": 935, "geom": "SRID=4326;POINT(112.96893 28.12103)", "零售户": "长沙市天心区又见便利店", "经度": 112.96893, "纬度": 28.12103, "参考值1": 5.18, "参考值2": 356, "参考值3": 0.73 }, "geometry": { "type": "Point", "coordinates": [ 112.96236016069291, 28.11523065079114 ] } }, { "type": "Feature", "properties": { "id": 936, "geom": "SRID=4326;POINT(112.977779 28.173094)", "零售户": "长沙市天心区锦况超市", "经度": 112.977779, "纬度": 28.173094, "参考值1": 5.46, "参考值2": 425, "参考值3": 0.73 }, "geometry": { "type": "Point", "coordinates": [ 112.971222337715702, 28.167402972358001 ] } }, { "type": "Feature", "properties": { "id": 938, "geom": "SRID=4326;POINT(112.989292 28.084306)", "零售户": "长沙市天心区王坚食品店", "经度": 112.989292, "纬度": 28.084306, "参考值1": 5.19, "参考值2": 390, "参考值3": 0.73 }, "geometry": { "type": "Point", "coordinates": [ 112.982710382408996, 28.078641760128228 ] } }, { "type": "Feature", "properties": { "id": 939, "geom": "SRID=4326;POINT(113.001495 28.102873)", "零售户": "长沙市天心区张幼平食品店", "经度": 113.001495, "纬度": 28.102873, "参考值1": 5.21, "参考值2": 420, "参考值3": 0.73 }, "geometry": { "type": "Point", "coordinates": [ 112.994920379634124, 28.097109030883079 ] } }, { "type": "Feature", "properties": { "id": 940, "geom": "SRID=4326;POINT(112.989441 28.163274)", "零售户": "长沙市天心区梅春水果店", "经度": 112.989441, "纬度": 28.163274, "参考值1": 5.21, "参考值2": 431, "参考值3": 0.73 }, "geometry": { "type": "Point", "coordinates": [ 112.982872782510498, 28.157612739800246 ] } }, { "type": "Feature", "properties": { "id": 941, "geom": "SRID=4326;POINT(112.992679 28.146868)", "零售户": "长沙市天心区阿德烟酒店", "经度": 112.992679, "纬度": 28.146868, "参考值1": 5.23, "参考值2": 441, "参考值3": 0.73 }, "geometry": { "type": "Point", "coordinates": [ 112.986099838623474, 28.141189592370502 ] } }, { "type": "Feature", "properties": { "id": 942, "geom": "SRID=4326;POINT(112.985448 28.188979)", "零售户": "长沙市天心区树增超市", "经度": 112.985448, "纬度": 28.188979, "参考值1": 5.21, "参考值2": 432, "参考值3": 0.73 }, "geometry": { "type": "Point", "coordinates": [ 112.97887867298013, 28.183321188009792 ] } }, { "type": "Feature", "properties": { "id": 944, "geom": "SRID=4326;POINT(112.980859 28.170576)", "零售户": "长沙市天心区琪发便利店", "经度": 112.980859, "纬度": 28.170576, "参考值1": 5.11, "参考值2": 381, "参考值3": 0.72 }, "geometry": { "type": "Point", "coordinates": [ 112.974296793319922, 28.164904890705493 ] } }, { "type": "Feature", "properties": { "id": 945, "geom": "SRID=4326;POINT(112.977007 28.198071)", "零售户": "长沙市天心区喜爹烟店", "经度": 112.977007, "纬度": 28.198071, "参考值1": 5.02, "参考值2": 344, "参考值3": 0.72 }, "geometry": { "type": "Point", "coordinates": [ 112.970440484516502, 28.192370853596906 ] } }, { "type": "Feature", "properties": { "id": 946, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区桥头旺旺综合经", "经度": 112.978226, "纬度": 28.139107, "参考值1": 5.01, "参考值2": 385, "参考值3": 0.72 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 947, "geom": "SRID=4326;POINT(112.985206 28.19707)", "零售户": "长沙市天心区晨润食品店", "经度": 112.985206, "纬度": 28.19707, "参考值1": 5.08, "参考值2": 369, "参考值3": 0.72 }, "geometry": { "type": "Point", "coordinates": [ 112.978630366584468, 28.191410340777495 ] } }, { "type": "Feature", "properties": { "id": 948, "geom": "SRID=4326;POINT(112.998824 28.146894)", "零售户": "长沙市天心区丽丽便利店", "经度": 112.998824, "纬度": 28.146894, "参考值1": 5.1, "参考值2": 400, "参考值3": 0.72 }, "geometry": { "type": "Point", "coordinates": [ 112.992257460015225, 28.141165044796612 ] } }, { "type": "Feature", "properties": { "id": 949, "geom": "SRID=4326;POINT(112.983165 28.153954)", "零售户": "长沙市天心区酷购便利店", "经度": 112.983165, "纬度": 28.153954, "参考值1": 4.99, "参考值2": 406, "参考值3": 0.72 }, "geometry": { "type": "Point", "coordinates": [ 112.976589690516406, 28.148289731640418 ] } }, { "type": "Feature", "properties": { "id": 950, "geom": "SRID=4326;POINT(112.989292 28.084306)", "零售户": "长沙市天心区亚坡便利店", "经度": 112.989292, "纬度": 28.084306, "参考值1": 4.91, "参考值2": 326, "参考值3": 0.71 }, "geometry": { "type": "Point", "coordinates": [ 112.982710382408996, 28.078641760128228 ] } }, { "type": "Feature", "properties": { "id": 951, "geom": "SRID=4326;POINT(112.999984 28.118516)", "零售户": "长沙市天心区顺海烟酒商行", "经度": 112.999984, "纬度": 28.118516, "参考值1": 4.97, "参考值2": 338, "参考值3": 0.71 }, "geometry": { "type": "Point", "coordinates": [ 112.99340058291979, 28.112769160076255 ] } }, { "type": "Feature", "properties": { "id": 952, "geom": "SRID=4326;POINT(112.979189 28.178941)", "零售户": "长沙市天心区建胜食品店", "经度": 112.979189, "纬度": 28.178941, "参考值1": 5.07, "参考值2": 423, "参考值3": 0.71 }, "geometry": { "type": "Point", "coordinates": [ 112.972629774146554, 28.173260169646333 ] } }, { "type": "Feature", "properties": { "id": 953, "geom": "SRID=4326;POINT(112.996499 28.12748)", "零售户": "长沙市天心区鑫殊超市", "经度": 112.996499, "纬度": 28.12748, "参考值1": 4.92, "参考值2": 304, "参考值3": 0.71 }, "geometry": { "type": "Point", "coordinates": [ 112.989909929583945, 28.121769581695638 ] } }, { "type": "Feature", "properties": { "id": 954, "geom": "SRID=4326;POINT(112.988904 28.105491)", "零售户": "长沙市天心区保利佰佳建材店", "经度": 112.988904, "纬度": 28.105491, "参考值1": 5.05, "参考值2": 400, "参考值3": 0.71 }, "geometry": { "type": "Point", "coordinates": [ 112.982303824080333, 28.099823150855435 ] } }, { "type": "Feature", "properties": { "id": 955, "geom": "SRID=4326;POINT(112.980922 28.178001)", "零售户": "长沙市天心区娇林便利店", "经度": 112.980922, "纬度": 28.178001, "参考值1": 5.09, "参考值2": 376, "参考值3": 0.7 }, "geometry": { "type": "Point", "coordinates": [ 112.974360361944917, 28.172330383015733 ] } }, { "type": "Feature", "properties": { "id": 957, "geom": "SRID=4326;POINT(112.985963 28.111196)", "零售户": "长沙市天心区田恬食品店", "经度": 112.985963, "纬度": 28.111196, "参考值1": 4.91, "参考值2": 298, "参考值3": 0.7 }, "geometry": { "type": "Point", "coordinates": [ 112.979359919527013, 28.105530128045139 ] } }, { "type": "Feature", "properties": { "id": 958, "geom": "SRID=4326;POINT(112.973531 28.127941)", "零售户": "长沙市天心区丹彬便利店", "经度": 112.973531, "纬度": 28.127941, "参考值1": 5.05, "参考值2": 398, "参考值3": 0.7 }, "geometry": { "type": "Point", "coordinates": [ 112.966949612739072, 28.12220080395036 ] } }, { "type": "Feature", "properties": { "id": 959, "geom": "SRID=4326;POINT(112.979396 28.192052)", "零售户": "长沙市天心区魏记食品店", "经度": 112.979396, "纬度": 28.192052, "参考值1": 4.9, "参考值2": 389, "参考值3": 0.7 }, "geometry": { "type": "Point", "coordinates": [ 112.97283016916596, 28.18637097147019 ] } }, { "type": "Feature", "properties": { "id": 961, "geom": "SRID=4326;POINT(112.995261 28.068772)", "零售户": "长沙市天心区群薇食品店", "经度": 112.995261, "纬度": 28.068772, "参考值1": 4.87, "参考值2": 361, "参考值3": 0.7 }, "geometry": { "type": "Point", "coordinates": [ 112.988700744204166, 28.06307970564572 ] } }, { "type": "Feature", "properties": { "id": 962, "geom": "SRID=4326;POINT(112.987657 28.111218)", "零售户": "长沙市天心区浩敏烟酒商行", "经度": 112.987657, "纬度": 28.111218, "参考值1": 4.8, "参考值2": 282, "参考值3": 0.7 }, "geometry": { "type": "Point", "coordinates": [ 112.981054035239111, 28.10555164401109 ] } }, { "type": "Feature", "properties": { "id": 963, "geom": "SRID=4326;POINT(112.996539 28.091528)", "零售户": "长沙市天心区艾吉生活超市", "经度": 112.996539, "纬度": 28.091528, "参考值1": 4.9, "参考值2": 357, "参考值3": 0.7 }, "geometry": { "type": "Point", "coordinates": [ 112.989960577620991, 28.08581983289924 ] } }, { "type": "Feature", "properties": { "id": 964, "geom": "SRID=4326;POINT(113.000185 28.077813)", "零售户": "长沙市天心区陈笔祥便利店", "经度": 113.000185, "纬度": 28.077813, "参考值1": 4.96, "参考值2": 391, "参考值3": 0.7 }, "geometry": { "type": "Point", "coordinates": [ 112.993629562555356, 28.072070622982991 ] } }, { "type": "Feature", "properties": { "id": 966, "geom": "SRID=4326;POINT(112.977458 28.198897)", "零售户": "长沙市天心区童帆食品店", "经度": 112.977458, "纬度": 28.198897, "参考值1": 4.8, "参考值2": 348, "参考值3": 0.69 }, "geometry": { "type": "Point", "coordinates": [ 112.970889775730811, 28.19320039421622 ] } }, { "type": "Feature", "properties": { "id": 967, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区裕端便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 4.85, "参考值2": 386, "参考值3": 0.69 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 968, "geom": "SRID=4326;POINT(112.985206 28.19707)", "零售户": "长沙市天心区干港食品店", "经度": 112.985206, "纬度": 28.19707, "参考值1": 4.75, "参考值2": 284, "参考值3": 0.68 }, "geometry": { "type": "Point", "coordinates": [ 112.978630366584468, 28.191410340777495 ] } }, { "type": "Feature", "properties": { "id": 969, "geom": "SRID=4326;POINT(112.986935 28.176946)", "零售户": "长沙市天心区客华食品店", "经度": 112.986935, "纬度": 28.176946, "参考值1": 4.76, "参考值2": 372, "参考值3": 0.68 }, "geometry": { "type": "Point", "coordinates": [ 112.980369890602489, 28.171289686111638 ] } }, { "type": "Feature", "properties": { "id": 970, "geom": "SRID=4326;POINT(112.99604 28.091436)", "零售户": "长沙市天心区九德食品商行", "经度": 112.99604, "纬度": 28.091436, "参考值1": 4.74, "参考值2": 316, "参考值3": 0.68 }, "geometry": { "type": "Point", "coordinates": [ 112.989460587923716, 28.085732197177681 ] } }, { "type": "Feature", "properties": { "id": 971, "geom": "SRID=4326;POINT(112.98041 28.195366)", "零售户": "长沙市天心区爱存烟酒店", "经度": 112.98041, "纬度": 28.195366, "参考值1": 4.77, "参考值2": 353, "参考值3": 0.68 }, "geometry": { "type": "Point", "coordinates": [ 112.973839949474367, 28.189690395339902 ] } }, { "type": "Feature", "properties": { "id": 972, "geom": "SRID=4326;POINT(112.986386 28.180696)", "零售户": "湖南千惠商贸连锁有限公司劳", "经度": 112.986386, "纬度": 28.180696, "参考值1": 4.83, "参考值2": 365, "参考值3": 0.68 }, "geometry": { "type": "Point", "coordinates": [ 112.979820298917602, 28.175039627347562 ] } }, { "type": "Feature", "properties": { "id": 973, "geom": "SRID=4326;POINT(112.995261 28.068772)", "零售户": "长沙市天心区左秋娥便利店", "经度": 112.995261, "纬度": 28.068772, "参考值1": 4.85, "参考值2": 401, "参考值3": 0.68 }, "geometry": { "type": "Point", "coordinates": [ 112.988700744204166, 28.06307970564572 ] } }, { "type": "Feature", "properties": { "id": 974, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区酷辉便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 4.81, "参考值2": 367, "参考值3": 0.68 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 975, "geom": "SRID=4326;POINT(112.985396 28.168487)", "零售户": "长沙市天心区国仁烟酒商行", "经度": 112.985396, "纬度": 28.168487, "参考值1": 4.72, "参考值2": 412, "参考值3": 0.68 }, "geometry": { "type": "Point", "coordinates": [ 112.978829577038354, 28.162829838431556 ] } }, { "type": "Feature", "properties": { "id": 976, "geom": "SRID=4326;POINT(112.995021 28.090515)", "零售户": "长沙市天心区满谷便利店", "经度": 112.995021, "纬度": 28.090515, "参考值1": 4.8, "参考值2": 403, "参考值3": 0.68 }, "geometry": { "type": "Point", "coordinates": [ 112.988440447651485, 28.084819654650509 ] } }, { "type": "Feature", "properties": { "id": 978, "geom": "SRID=4326;POINT(112.983336 28.143593)", "零售户": "长沙市天心区卓天烟店", "经度": 112.983336, "纬度": 28.143593, "参考值1": 4.77, "参考值2": 353, "参考值3": 0.68 }, "geometry": { "type": "Point", "coordinates": [ 112.976750303036326, 28.137926682404554 ] } }, { "type": "Feature", "properties": { "id": 979, "geom": "SRID=4326;POINT(113.009892 28.131423)", "零售户": "长沙市天心区舜豪烟酒商行", "经度": 113.009892, "纬度": 28.131423, "参考值1": 4.77, "参考值2": 310, "参考值3": 0.68 }, "geometry": { "type": "Point", "coordinates": [ 113.003349969079636, 28.125534630020674 ] } }, { "type": "Feature", "properties": { "id": 980, "geom": "SRID=4326;POINT(112.985063 28.19399)", "零售户": "长沙市天心区立根烟店", "经度": 112.985063, "纬度": 28.19399, "参考值1": 4.75, "参考值2": 345, "参考值3": 0.67 }, "geometry": { "type": "Point", "coordinates": [ 112.978490089043078, 28.18833082449769 ] } }, { "type": "Feature", "properties": { "id": 983, "geom": "SRID=4326;POINT(112.978357 28.141391)", "零售户": "长沙市天心区胡显便利店", "经度": 112.978357, "纬度": 28.141391, "参考值1": 4.72, "参考值2": 346, "参考值3": 0.67 }, "geometry": { "type": "Point", "coordinates": [ 112.971775511772364, 28.135698418731781 ] } }, { "type": "Feature", "properties": { "id": 984, "geom": "SRID=4326;POINT(112.996911 28.137261)", "零售户": "长沙市天心区梦可百货批发部", "经度": 112.996911, "纬度": 28.137261, "参考值1": 4.59, "参考值2": 309, "参考值3": 0.67 }, "geometry": { "type": "Point", "coordinates": [ 112.990330263689756, 28.131548707979604 ] } }, { "type": "Feature", "properties": { "id": 985, "geom": "SRID=4326;POINT(112.996911 28.137261)", "零售户": "长沙市天心区锦湘商店", "经度": 112.996911, "纬度": 28.137261, "参考值1": 4.7, "参考值2": 385, "参考值3": 0.67 }, "geometry": { "type": "Point", "coordinates": [ 112.990330263689756, 28.131548707979604 ] } }, { "type": "Feature", "properties": { "id": 987, "geom": "SRID=4326;POINT(112.990064 28.171822)", "零售户": "长沙市天心区银鼎烟酒行", "经度": 112.990064, "纬度": 28.171822, "参考值1": 4.64, "参考值2": 349, "参考值3": 0.67 }, "geometry": { "type": "Point", "coordinates": [ 112.983499912598248, 28.166159788475646 ] } }, { "type": "Feature", "properties": { "id": 988, "geom": "SRID=4326;POINT(112.986718 28.105655)", "零售户": "长沙市天心区万与余生活超市", "经度": 112.986718, "纬度": 28.105655, "参考值1": 4.64, "参考值2": 331, "参考值3": 0.67 }, "geometry": { "type": "Point", "coordinates": [ 112.980117075626026, 28.099989782198961 ] } }, { "type": "Feature", "properties": { "id": 989, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区迎艺食品店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 4.76, "参考值2": 379, "参考值3": 0.67 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 990, "geom": "SRID=4326;POINT(112.97679 28.190911)", "零售户": "长沙市天心区谭记烟酒批发部", "经度": 112.97679, "纬度": 28.190911, "参考值1": 4.72, "参考值2": 376, "参考值3": 0.67 }, "geometry": { "type": "Point", "coordinates": [ 112.970229924894255, 28.185210483796681 ] } }, { "type": "Feature", "properties": { "id": 991, "geom": "SRID=4326;POINT(112.979437 28.195157)", "零售户": "长沙市天心区爱宇烟店", "经度": 112.979437, "纬度": 28.195157, "参考值1": 4.71, "参考值2": 393, "参考值3": 0.67 }, "geometry": { "type": "Point", "coordinates": [ 112.972868584014151, 28.18947560917238 ] } }, { "type": "Feature", "properties": { "id": 993, "geom": "SRID=4326;POINT(112.97205 28.111479)", "零售户": "长沙市天心区腾双便利店", "经度": 112.97205, "纬度": 28.111479, "参考值1": 4.71, "参考值2": 362, "参考值3": 0.66 }, "geometry": { "type": "Point", "coordinates": [ 112.965469819936729, 28.105720742649307 ] } }, { "type": "Feature", "properties": { "id": 994, "geom": "SRID=4326;POINT(112.99936 28.120069)", "零售户": "长沙市天心区罗海萍烟酒超市", "经度": 112.99936, "纬度": 28.120069, "参考值1": 4.45, "参考值2": 246, "参考值3": 0.66 }, "geometry": { "type": "Point", "coordinates": [ 112.992775096735215, 28.114329272543781 ] } }, { "type": "Feature", "properties": { "id": 995, "geom": "SRID=4326;POINT(112.978487 28.145421)", "零售户": "长沙市天心区锦达大酒店", "经度": 112.978487, "纬度": 28.145421, "参考值1": 4.71, "参考值2": 359, "参考值3": 0.66 }, "geometry": { "type": "Point", "coordinates": [ 112.971909314784781, 28.139730374600738 ] } }, { "type": "Feature", "properties": { "id": 996, "geom": "SRID=4326;POINT(112.988459 28.162269)", "零售户": "长沙市天心区特玛福超市", "经度": 112.988459, "纬度": 28.162269, "参考值1": 4.63, "参考值2": 359, "参考值3": 0.66 }, "geometry": { "type": "Point", "coordinates": [ 112.981889577911389, 28.156609803579883 ] } }, { "type": "Feature", "properties": { "id": 997, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区华奥烟酒商行", "经度": 112.996195, "纬度": 28.144471, "参考值1": 4.42, "参考值2": 236, "参考值3": 0.66 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 999, "geom": "SRID=4326;POINT(112.997585 28.080054)", "零售户": "长沙市天心区快平超市", "经度": 112.997585, "纬度": 28.080054, "参考值1": 4.53, "参考值2": 300, "参考值3": 0.66 }, "geometry": { "type": "Point", "coordinates": [ 112.991020515598663, 28.07433893964452 ] } }, { "type": "Feature", "properties": { "id": 1000, "geom": "SRID=4326;POINT(112.994689 28.132843)", "零售户": "长沙市天心区黄波超市", "经度": 112.994689, "纬度": 28.132843, "参考值1": 4.69, "参考值2": 383, "参考值3": 0.66 }, "geometry": { "type": "Point", "coordinates": [ 112.988099920312621, 28.127148208721774 ] } }, { "type": "Feature", "properties": { "id": 1001, "geom": "SRID=4326;POINT(112.983527 28.186321)", "零售户": "长沙市天心区潘姚房屋信息咨", "经度": 112.983527, "纬度": 28.186321, "参考值1": 4.79, "参考值2": 300, "参考值3": 0.65 }, "geometry": { "type": "Point", "coordinates": [ 112.976960120906753, 28.180659983444937 ] } }, { "type": "Feature", "properties": { "id": 1002, "geom": "SRID=4326;POINT(112.979579 28.155681)", "零售户": "长沙市天心区鑫群烟超市", "经度": 112.979579, "纬度": 28.155681, "参考值1": 4.5, "参考值2": 289, "参考值3": 0.65 }, "geometry": { "type": "Point", "coordinates": [ 112.973009456321108, 28.150000255483953 ] } }, { "type": "Feature", "properties": { "id": 1003, "geom": "SRID=4326;POINT(113.001068 28.120553)", "零售户": "长沙市天心区爱元水果店", "经度": 113.001068, "纬度": 28.120553, "参考值1": 4.58, "参考值2": 358, "参考值3": 0.65 }, "geometry": { "type": "Point", "coordinates": [ 112.994488166758771, 28.114793365163525 ] } }, { "type": "Feature", "properties": { "id": 1004, "geom": "SRID=4326;POINT(112.986993 28.111206)", "零售户": "长沙市天心区波艳超市", "经度": 112.986993, "纬度": 28.111206, "参考值1": 4.66, "参考值2": 344, "参考值3": 0.65 }, "geometry": { "type": "Point", "coordinates": [ 112.98038991172325, 28.105540151597651 ] } }, { "type": "Feature", "properties": { "id": 1005, "geom": "SRID=4326;POINT(112.982717 28.186714)", "零售户": "长沙市天心区清燕食品店", "经度": 112.982717, "纬度": 28.186714, "参考值1": 4.58, "参考值2": 345, "参考值3": 0.65 }, "geometry": { "type": "Point", "coordinates": [ 112.976150541615368, 28.181050399995598 ] } }, { "type": "Feature", "properties": { "id": 1006, "geom": "SRID=4326;POINT(112.987657 28.111218)", "零售户": "长沙市天心区优尔诚商场", "经度": 112.987657, "纬度": 28.111218, "参考值1": 4.51, "参考值2": 307, "参考值3": 0.65 }, "geometry": { "type": "Point", "coordinates": [ 112.981054035239111, 28.10555164401109 ] } }, { "type": "Feature", "properties": { "id": 1007, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区亭悦烟酒批发部", "经度": 112.996195, "纬度": 28.144471, "参考值1": 4.4, "参考值2": 262, "参考值3": 0.65 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1008, "geom": "SRID=4326;POINT(112.981092 28.17875)", "零售户": "长沙市天心区来鸿便利店", "经度": 112.981092, "纬度": 28.17875, "参考值1": 4.62, "参考值2": 353, "参考值3": 0.65 }, "geometry": { "type": "Point", "coordinates": [ 112.974530051949785, 28.173080215834382 ] } }, { "type": "Feature", "properties": { "id": 1009, "geom": "SRID=4326;POINT(112.967088 28.116005)", "零售户": "长沙印东商务服务有限公司", "经度": 112.967088, "纬度": 28.116005, "参考值1": 4.55, "参考值2": 362, "参考值3": 0.64 }, "geometry": { "type": "Point", "coordinates": [ 112.960524198618785, 28.110178564979908 ] } }, { "type": "Feature", "properties": { "id": 1010, "geom": "SRID=4326;POINT(112.948115 28.059238)", "零售户": "长沙市天心区童萍便利店", "经度": 112.948115, "纬度": 28.059238, "参考值1": 4.44, "参考值2": 375, "参考值3": 0.64 }, "geometry": { "type": "Point", "coordinates": [ 112.941669905454418, 28.053098728296259 ] } }, { "type": "Feature", "properties": { "id": 1012, "geom": "SRID=4326;POINT(112.981734 28.172116)", "零售户": "长沙市天心区缘梦食品店", "经度": 112.981734, "纬度": 28.172116, "参考值1": 4.57, "参考值2": 369, "参考值3": 0.64 }, "geometry": { "type": "Point", "coordinates": [ 112.9751711246262, 28.166449165643435 ] } }, { "type": "Feature", "properties": { "id": 1013, "geom": "SRID=4326;POINT(112.984215 28.177609)", "零售户": "长沙市天心区心连心水果店", "经度": 112.984215, "纬度": 28.177609, "参考值1": 4.53, "参考值2": 328, "参考值3": 0.64 }, "geometry": { "type": "Point", "coordinates": [ 112.977650425784248, 28.171950331954285 ] } }, { "type": "Feature", "properties": { "id": 1014, "geom": "SRID=4326;POINT(112.981432 28.155441)", "零售户": "长沙市天心区实干家便利店", "经度": 112.981432, "纬度": 28.155441, "参考值1": 4.54, "参考值2": 325, "参考值3": 0.64 }, "geometry": { "type": "Point", "coordinates": [ 112.974859714366133, 28.149770355869187 ] } }, { "type": "Feature", "properties": { "id": 1015, "geom": "SRID=4326;POINT(112.986386 28.180696)", "零售户": "长沙市天心区团契食品店", "经度": 112.986386, "纬度": 28.180696, "参考值1": 4.62, "参考值2": 383, "参考值3": 0.64 }, "geometry": { "type": "Point", "coordinates": [ 112.979820298917602, 28.175039627347562 ] } }, { "type": "Feature", "properties": { "id": 1016, "geom": "SRID=4326;POINT(112.965059 28.057616)", "零售户": "长沙市天心区日添平价超市", "经度": 112.965059, "纬度": 28.057616, "参考值1": 4.4, "参考值2": 372, "参考值3": 0.64 }, "geometry": { "type": "Point", "coordinates": [ 112.958541876812802, 28.051767636981545 ] } }, { "type": "Feature", "properties": { "id": 1021, "geom": "SRID=4326;POINT(112.989907 28.186262)", "零售户": "长沙市天心区庆哥食品店", "经度": 112.989907, "纬度": 28.186262, "参考值1": 4.5, "参考值2": 357, "参考值3": 0.64 }, "geometry": { "type": "Point", "coordinates": [ 112.983340471289537, 28.180599729288303 ] } }, { "type": "Feature", "properties": { "id": 1022, "geom": "SRID=4326;POINT(112.981238 28.190841)", "零售户": "长沙市天心区银然日用品商行", "经度": 112.981238, "纬度": 28.190841, "参考值1": 4.39, "参考值2": 305, "参考值3": 0.63 }, "geometry": { "type": "Point", "coordinates": [ 112.974670469337809, 28.185170593063805 ] } }, { "type": "Feature", "properties": { "id": 1023, "geom": "SRID=4326;POINT(112.988459 28.162269)", "零售户": "长沙市天心区良仁食品店", "经度": 112.988459, "纬度": 28.162269, "参考值1": 4.4, "参考值2": 338, "参考值3": 0.63 }, "geometry": { "type": "Point", "coordinates": [ 112.981889577911389, 28.156609803579883 ] } }, { "type": "Feature", "properties": { "id": 1024, "geom": "SRID=4326;POINT(112.987666 28.182107)", "零售户": "长沙市天心区奥羸烟酒店", "经度": 112.987666, "纬度": 28.182107, "参考值1": 4.35, "参考值2": 260, "参考值3": 0.63 }, "geometry": { "type": "Point", "coordinates": [ 112.981100050618167, 28.176449906164493 ] } }, { "type": "Feature", "properties": { "id": 1026, "geom": "SRID=4326;POINT(113.000348 28.123145)", "零售户": "长沙市天心区漫耘烟酒行", "经度": 113.000348, "纬度": 28.123145, "参考值1": 4.23, "参考值2": 228, "参考值3": 0.63 }, "geometry": { "type": "Point", "coordinates": [ 112.993766801439293, 28.11739421404857 ] } }, { "type": "Feature", "properties": { "id": 1027, "geom": "SRID=4326;POINT(113.006835 28.130028)", "零售户": "长沙市天心区厚道之家便利店", "经度": 113.006835, "纬度": 28.130028, "参考值1": 4.59, "参考值2": 350, "参考值3": 0.63 }, "geometry": { "type": "Point", "coordinates": [ 113.000279698076852, 28.12418874012825 ] } }, { "type": "Feature", "properties": { "id": 1028, "geom": "SRID=4326;POINT(113.000348 28.123145)", "零售户": "长沙市天心区路畅超市", "经度": 113.000348, "纬度": 28.123145, "参考值1": 4.45, "参考值2": 335, "参考值3": 0.63 }, "geometry": { "type": "Point", "coordinates": [ 112.993766801439293, 28.11739421404857 ] } }, { "type": "Feature", "properties": { "id": 1031, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区霞俊便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 4.47, "参考值2": 334, "参考值3": 0.62 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1032, "geom": "SRID=4326;POINT(113.008143 28.138867)", "零售户": "长沙市天心区欣辉烟酒商行", "经度": 113.008143, "纬度": 28.138867, "参考值1": 4.71, "参考值2": 416, "参考值3": 0.62 }, "geometry": { "type": "Point", "coordinates": [ 113.00160015569783, 28.133008887361989 ] } }, { "type": "Feature", "properties": { "id": 1033, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区妮紫便利店", "经度": 112.978226, "纬度": 28.139107, "参考值1": 4.5, "参考值2": 350, "参考值3": 0.62 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 1034, "geom": "SRID=4326;POINT(112.97784 28.151125)", "零售户": "长沙市天心区蔚锦便利店", "经度": 112.97784, "纬度": 28.151125, "参考值1": 4.38, "参考值2": 279, "参考值3": 0.62 }, "geometry": { "type": "Point", "coordinates": [ 112.971269242086009, 28.145430947563863 ] } }, { "type": "Feature", "properties": { "id": 1035, "geom": "SRID=4326;POINT(112.975785 28.199252)", "零售户": "长沙市天心区小汇源日用品商", "经度": 112.975785, "纬度": 28.199252, "参考值1": 4.31, "参考值2": 290, "参考值3": 0.62 }, "geometry": { "type": "Point", "coordinates": [ 112.969220100024842, 28.193540630357163 ] } }, { "type": "Feature", "properties": { "id": 1036, "geom": "SRID=4326;POINT(113.007841 28.141801)", "零售户": "长沙市天心区朱浪烟酒商行", "经度": 113.007841, "纬度": 28.141801, "参考值1": 4.56, "参考值2": 350, "参考值3": 0.62 }, "geometry": { "type": "Point", "coordinates": [ 113.001299795974262, 28.13594843336406 ] } }, { "type": "Feature", "properties": { "id": 1038, "geom": "SRID=4326;POINT(112.986326 28.186435)", "零售户": "长沙市天心区橘树便利店", "经度": 112.986326, "纬度": 28.186435, "参考值1": 4.47, "参考值2": 373, "参考值3": 0.62 }, "geometry": { "type": "Point", "coordinates": [ 112.979758041965155, 28.180778060936245 ] } }, { "type": "Feature", "properties": { "id": 1041, "geom": "SRID=4326;POINT(112.977828 28.142987)", "零售户": "长沙市天心区宁红便利店", "经度": 112.977828, "纬度": 28.142987, "参考值1": 4.37, "参考值2": 325, "参考值3": 0.62 }, "geometry": { "type": "Point", "coordinates": [ 112.971249092869314, 28.137290812869423 ] } }, { "type": "Feature", "properties": { "id": 1042, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区丹润便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 4.36, "参考值2": 305, "参考值3": 0.62 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1044, "geom": "SRID=4326;POINT(112.9808 28.185823)", "零售户": "长沙市天心区童叟无欺便利店", "经度": 112.9808, "纬度": 28.185823, "参考值1": 4.65, "参考值2": 366, "参考值3": 0.62 }, "geometry": { "type": "Point", "coordinates": [ 112.974236092078385, 28.180151154236366 ] } }, { "type": "Feature", "properties": { "id": 1045, "geom": "SRID=4326;POINT(112.97205 28.111479)", "零售户": "长沙市天心区舒峤便利店", "经度": 112.97205, "纬度": 28.111479, "参考值1": 4.32, "参考值2": 296, "参考值3": 0.62 }, "geometry": { "type": "Point", "coordinates": [ 112.965469819936729, 28.105720742649307 ] } }, { "type": "Feature", "properties": { "id": 1046, "geom": "SRID=4326;POINT(112.979523 28.129128)", "零售户": "长沙市天心区芳胜生鲜超市", "经度": 112.979523, "纬度": 28.129128, "参考值1": 4.37, "参考值2": 309, "参考值3": 0.62 }, "geometry": { "type": "Point", "coordinates": [ 112.972929197189217, 28.123440819941838 ] } }, { "type": "Feature", "properties": { "id": 1047, "geom": "SRID=4326;POINT(112.981705 28.185528)", "零售户": "长沙市天心区群秀食品店", "经度": 112.981705, "纬度": 28.185528, "参考值1": 4.44, "参考值2": 322, "参考值3": 0.62 }, "geometry": { "type": "Point", "coordinates": [ 112.975140151604094, 28.179860549995695 ] } }, { "type": "Feature", "properties": { "id": 1048, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区挣钱便利店", "经度": 112.978226, "纬度": 28.139107, "参考值1": 4.3, "参考值2": 309, "参考值3": 0.61 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 1050, "geom": "SRID=4326;POINT(112.990517 28.073601)", "零售户": "长沙市天心区志男日用品商店", "经度": 112.990517, "纬度": 28.073601, "参考值1": 4.21, "参考值2": 302, "参考值3": 0.61 }, "geometry": { "type": "Point", "coordinates": [ 112.983946386834617, 28.067935397281236 ] } }, { "type": "Feature", "properties": { "id": 1051, "geom": "SRID=4326;POINT(112.997585 28.080054)", "零售户": "长沙市天心区正庄便利店", "经度": 112.997585, "纬度": 28.080054, "参考值1": 4.32, "参考值2": 298, "参考值3": 0.61 }, "geometry": { "type": "Point", "coordinates": [ 112.991020515598663, 28.07433893964452 ] } }, { "type": "Feature", "properties": { "id": 1052, "geom": "SRID=4326;POINT(112.987657 28.111218)", "零售户": "长沙市天心区青长批发超市", "经度": 112.987657, "纬度": 28.111218, "参考值1": 4.28, "参考值2": 348, "参考值3": 0.61 }, "geometry": { "type": "Point", "coordinates": [ 112.981054035239111, 28.10555164401109 ] } }, { "type": "Feature", "properties": { "id": 1053, "geom": "SRID=4326;POINT(112.977351 28.191076)", "零售户": "长沙市天心区希尧商店", "经度": 112.977351, "纬度": 28.191076, "参考值1": 4.3, "参考值2": 375, "参考值3": 0.61 }, "geometry": { "type": "Point", "coordinates": [ 112.970789628924592, 28.185380173405768 ] } }, { "type": "Feature", "properties": { "id": 1054, "geom": "SRID=4326;POINT(113.002348 28.134693)", "零售户": "长沙市天心区高迎便利店", "经度": 113.002348, "纬度": 28.134693, "参考值1": 4.29, "参考值2": 284, "参考值3": 0.61 }, "geometry": { "type": "Point", "coordinates": [ 112.995780206706826, 28.128919128501497 ] } }, { "type": "Feature", "properties": { "id": 1055, "geom": "SRID=4326;POINT(112.986191 28.106185)", "零售户": "长沙市天心区乐长食品店", "经度": 112.986191, "纬度": 28.106185, "参考值1": 4.2, "参考值2": 290, "参考值3": 0.61 }, "geometry": { "type": "Point", "coordinates": [ 112.979589808355371, 28.100519690781169 ] } }, { "type": "Feature", "properties": { "id": 1056, "geom": "SRID=4326;POINT(112.991686 28.16647)", "零售户": "长沙市天心区仪帅食品店", "经度": 112.991686, "纬度": 28.16647, "参考值1": 4.08, "参考值2": 206, "参考值3": 0.61 }, "geometry": { "type": "Point", "coordinates": [ 112.985121653586418, 28.160800783031469 ] } }, { "type": "Feature", "properties": { "id": 1057, "geom": "SRID=4326;POINT(112.977556 28.196493)", "零售户": "长沙市天心区友尧烟酒商行", "经度": 112.977556, "纬度": 28.196493, "参考值1": 4.05, "参考值2": 189, "参考值3": 0.61 }, "geometry": { "type": "Point", "coordinates": [ 112.970989799091384, 28.190797735706902 ] } }, { "type": "Feature", "properties": { "id": 1058, "geom": "SRID=4326;POINT(112.979291 28.153334)", "零售户": "长沙市天心区为你烟酒店", "经度": 112.979291, "纬度": 28.153334, "参考值1": 4.17, "参考值2": 269, "参考值3": 0.61 }, "geometry": { "type": "Point", "coordinates": [ 112.972719772537829, 28.14765087087472 ] } }, { "type": "Feature", "properties": { "id": 1059, "geom": "SRID=4326;POINT(112.982013 28.177706)", "零售户": "湖南也买酒商贸有限公司东瓜", "经度": 112.982013, "纬度": 28.177706, "参考值1": 4.22, "参考值2": 220, "参考值3": 0.61 }, "geometry": { "type": "Point", "coordinates": [ 112.975450134530405, 28.172040435438745 ] } }, { "type": "Feature", "properties": { "id": 1060, "geom": "SRID=4326;POINT(112.988986 28.169159)", "零售户": "长沙市天心区涂南水果店", "经度": 112.988986, "纬度": 28.169159, "参考值1": 4.23, "参考值2": 374, "参考值3": 0.6 }, "geometry": { "type": "Point", "coordinates": [ 112.982420399265067, 28.163499610344829 ] } }, { "type": "Feature", "properties": { "id": 1061, "geom": "SRID=4326;POINT(112.976929 28.200223)", "零售户": "长沙市天心区辰其烟店", "经度": 112.976929, "纬度": 28.200223, "参考值1": 4.2, "参考值2": 340, "参考值3": 0.6 }, "geometry": { "type": "Point", "coordinates": [ 112.970360597983841, 28.194521680373008 ] } }, { "type": "Feature", "properties": { "id": 1062, "geom": "SRID=4326;POINT(112.983791 28.178245)", "零售户": "长沙市天心区源之绿茶叶店", "经度": 112.983791, "纬度": 28.178245, "参考值1": 4.33, "参考值2": 415, "参考值3": 0.6 }, "geometry": { "type": "Point", "coordinates": [ 112.977226603385603, 28.172585333629833 ] } }, { "type": "Feature", "properties": { "id": 1063, "geom": "SRID=4326;POINT(112.980177 28.191177)", "零售户": "长沙市天心区平友便利店", "经度": 112.980177, "纬度": 28.191177, "参考值1": 4.28, "参考值2": 350, "参考值3": 0.6 }, "geometry": { "type": "Point", "coordinates": [ 112.973610629622812, 28.185500907150043 ] } }, { "type": "Feature", "properties": { "id": 1064, "geom": "SRID=4326;POINT(112.987657 28.111218)", "零售户": "长沙市天心区桂宇梅便利店", "经度": 112.987657, "纬度": 28.111218, "参考值1": 4.29, "参考值2": 329, "参考值3": 0.6 }, "geometry": { "type": "Point", "coordinates": [ 112.981054035239111, 28.10555164401109 ] } }, { "type": "Feature", "properties": { "id": 1065, "geom": "SRID=4326;POINT(112.995261 28.068772)", "零售户": "长沙市天心区拉托利生鲜超市", "经度": 112.995261, "纬度": 28.068772, "参考值1": 4.26, "参考值2": 336, "参考值3": 0.6 }, "geometry": { "type": "Point", "coordinates": [ 112.988700744204166, 28.06307970564572 ] } }, { "type": "Feature", "properties": { "id": 1066, "geom": "SRID=4326;POINT(113.00349 28.093007)", "零售户": "湖南和顺石油股份有限公司长", "经度": 113.00349, "纬度": 28.093007, "参考值1": 4.14, "参考值2": 291, "参考值3": 0.6 }, "geometry": { "type": "Point", "coordinates": [ 112.996929975999294, 28.087218741187492 ] } }, { "type": "Feature", "properties": { "id": 1067, "geom": "SRID=4326;POINT(112.978251 28.188379)", "零售户": "长沙市天心区邹韬便利店", "经度": 112.978251, "纬度": 28.188379, "参考值1": 4.29, "参考值2": 315, "参考值3": 0.6 }, "geometry": { "type": "Point", "coordinates": [ 112.971689686600868, 28.182690650094695 ] } }, { "type": "Feature", "properties": { "id": 1068, "geom": "SRID=4326;POINT(112.977237 28.131744)", "零售户": "长沙市天心区晓雨便利店", "经度": 112.977237, "纬度": 28.131744, "参考值1": 4.32, "参考值2": 301, "参考值3": 0.6 }, "geometry": { "type": "Point", "coordinates": [ 112.970649175214916, 28.126040544555099 ] } }, { "type": "Feature", "properties": { "id": 1069, "geom": "SRID=4326;POINT(112.976315 28.153307)", "零售户": "长沙市天心区东奥便利店", "经度": 112.976315, "纬度": 28.153307, "参考值1": 4.3, "参考值2": 347, "参考值3": 0.59 }, "geometry": { "type": "Point", "coordinates": [ 112.969749528227936, 28.147600654095836 ] } }, { "type": "Feature", "properties": { "id": 1070, "geom": "SRID=4326;POINT(112.987064 28.185629)", "零售户": "长沙市天心区军玲食品店", "经度": 112.987064, "纬度": 28.185629, "参考值1": 4.25, "参考值2": 317, "参考值3": 0.59 }, "geometry": { "type": "Point", "coordinates": [ 112.980496488401585, 28.179972031720339 ] } }, { "type": "Feature", "properties": { "id": 1071, "geom": "SRID=4326;POINT(112.980438 28.193185)", "零售户": "长沙市天心区振宁食品店", "经度": 112.980438, "纬度": 28.193185, "参考值1": 4.3, "参考值2": 369, "参考值3": 0.59 }, "geometry": { "type": "Point", "coordinates": [ 112.973869727357126, 28.187510002361741 ] } }, { "type": "Feature", "properties": { "id": 1072, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区老亮平价超市", "经度": 112.996195, "纬度": 28.144471, "参考值1": 4.24, "参考值2": 328, "参考值3": 0.59 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1074, "geom": "SRID=4326;POINT(112.977347 28.198178)", "零售户": "长沙市天心区翠群烟店", "经度": 112.977347, "纬度": 28.198178, "参考值1": 4.26, "参考值2": 315, "参考值3": 0.59 }, "geometry": { "type": "Point", "coordinates": [ 112.970779678486792, 28.192480659246382 ] } }, { "type": "Feature", "properties": { "id": 1076, "geom": "SRID=4326;POINT(113.007941 28.114509)", "零售户": "长沙市天心区真鑫商贸行", "经度": 113.007941, "纬度": 28.114509, "参考值1": 4.28, "参考值2": 361, "参考值3": 0.59 }, "geometry": { "type": "Point", "coordinates": [ 113.001385112430341, 28.108651076546391 ] } }, { "type": "Feature", "properties": { "id": 1077, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区伟娥烟酒店", "经度": 112.978226, "纬度": 28.139107, "参考值1": 4.31, "参考值2": 354, "参考值3": 0.59 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 1078, "geom": "SRID=4326;POINT(112.989091 28.173746)", "零售户": "长沙市天心区德尊便利店", "经度": 112.989091, "纬度": 28.173746, "参考值1": 4.28, "参考值2": 340, "参考值3": 0.59 }, "geometry": { "type": "Point", "coordinates": [ 112.982526543693623, 28.168086637810173 ] } }, { "type": "Feature", "properties": { "id": 1079, "geom": "SRID=4326;POINT(112.999459 28.065801)", "零售户": "长沙市天心区宏胜文印社", "经度": 112.999459, "纬度": 28.065801, "参考值1": 4.1, "参考值2": 272, "参考值3": 0.59 }, "geometry": { "type": "Point", "coordinates": [ 112.992910376570563, 28.060069092715811 ] } }, { "type": "Feature", "properties": { "id": 1080, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区云灿烟酒店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 4.2, "参考值2": 310, "参考值3": 0.59 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1081, "geom": "SRID=4326;POINT(112.977069 28.141143)", "零售户": "长沙市天心区豪洲百货店", "经度": 112.977069, "纬度": 28.141143, "参考值1": 4.16, "参考值2": 226, "参考值3": 0.59 }, "geometry": { "type": "Point", "coordinates": [ 112.970489795201033, 28.135440207632836 ] } }, { "type": "Feature", "properties": { "id": 1082, "geom": "SRID=4326;POINT(112.987905 28.176287)", "零售户": "长沙市天心区刘发烟店", "经度": 112.987905, "纬度": 28.176287, "参考值1": 4.04, "参考值2": 261, "参考值3": 0.58 }, "geometry": { "type": "Point", "coordinates": [ 112.981340120886784, 28.170629865424651 ] } }, { "type": "Feature", "properties": { "id": 1083, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区刘玉食品店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 4.16, "参考值2": 316, "参考值3": 0.58 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1084, "geom": "SRID=4326;POINT(113.028286 28.212745)", "零售户": "长沙市天心区福旭便利店", "经度": 113.028286, "纬度": 28.212745, "参考值1": 4.11, "参考值2": 327, "参考值3": 0.58 }, "geometry": { "type": "Point", "coordinates": [ 113.021828256588918, 28.20654711344131 ] } }, { "type": "Feature", "properties": { "id": 1085, "geom": "SRID=4326;POINT(112.980217 28.125334)", "零售户": "长沙市天心区帆嘉食品店", "经度": 112.980217, "纬度": 28.125334, "参考值1": 4.21, "参考值2": 290, "参考值3": 0.58 }, "geometry": { "type": "Point", "coordinates": [ 112.973620029593889, 28.119650480641429 ] } }, { "type": "Feature", "properties": { "id": 1087, "geom": "SRID=4326;POINT(112.977709 28.164793)", "零售户": "长沙市天心区火华烟店", "经度": 112.977709, "纬度": 28.164793, "参考值1": 4.18, "参考值2": 326, "参考值3": 0.58 }, "geometry": { "type": "Point", "coordinates": [ 112.971149475336063, 28.159100667807948 ] } }, { "type": "Feature", "properties": { "id": 1088, "geom": "SRID=4326;POINT(112.978599 28.184748)", "零售户": "长沙市天心区黄蓉食品店", "经度": 112.978599, "纬度": 28.184748, "参考值1": 4.13, "参考值2": 379, "参考值3": 0.58 }, "geometry": { "type": "Point", "coordinates": [ 112.972038999778135, 28.179062667159222 ] } }, { "type": "Feature", "properties": { "id": 1089, "geom": "SRID=4326;POINT(112.97205 28.111479)", "零售户": "长沙市天心区彭彪便利店", "经度": 112.97205, "纬度": 28.111479, "参考值1": 4.07, "参考值2": 310, "参考值3": 0.58 }, "geometry": { "type": "Point", "coordinates": [ 112.965469819936729, 28.105720742649307 ] } }, { "type": "Feature", "properties": { "id": 1090, "geom": "SRID=4326;POINT(112.989292 28.084306)", "零售户": "长沙市天心区雁真便利店", "经度": 112.989292, "纬度": 28.084306, "参考值1": 4.15, "参考值2": 341, "参考值3": 0.57 }, "geometry": { "type": "Point", "coordinates": [ 112.982710382408996, 28.078641760128228 ] } }, { "type": "Feature", "properties": { "id": 1091, "geom": "SRID=4326;POINT(112.990559 28.192912)", "零售户": "长沙市天心区席记食品店", "经度": 112.990559, "纬度": 28.192912, "参考值1": 4.12, "参考值2": 356, "参考值3": 0.57 }, "geometry": { "type": "Point", "coordinates": [ 112.983988622798876, 28.187246389829475 ] } }, { "type": "Feature", "properties": { "id": 1092, "geom": "SRID=4326;POINT(112.991475 28.186608)", "零售户": "长沙市天心区员工便利店", "经度": 112.991475, "纬度": 28.186608, "参考值1": 4.04, "参考值2": 310, "参考值3": 0.57 }, "geometry": { "type": "Point", "coordinates": [ 112.984909798117414, 28.180939632298948 ] } }, { "type": "Feature", "properties": { "id": 1094, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区湘胤便利店", "经度": 112.978226, "纬度": 28.139107, "参考值1": 4.03, "参考值2": 332, "参考值3": 0.57 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 1095, "geom": "SRID=4326;POINT(112.981092 28.17875)", "零售户": "长沙市天心区姚慧先便利店", "经度": 112.981092, "纬度": 28.17875, "参考值1": 4.1, "参考值2": 314, "参考值3": 0.57 }, "geometry": { "type": "Point", "coordinates": [ 112.974530051949785, 28.173080215834382 ] } }, { "type": "Feature", "properties": { "id": 1096, "geom": "SRID=4326;POINT(112.978721 28.199298)", "零售户": "长沙市天心区梦磊便利店", "经度": 112.978721, "纬度": 28.199298, "参考值1": 4.04, "参考值2": 288, "参考值3": 0.57 }, "geometry": { "type": "Point", "coordinates": [ 112.972150009666137, 28.193610854765112 ] } }, { "type": "Feature", "properties": { "id": 1097, "geom": "SRID=4326;POINT(112.981092 28.17875)", "零售户": "长沙市天心区龙在良便利店", "经度": 112.981092, "纬度": 28.17875, "参考值1": 4.16, "参考值2": 313, "参考值3": 0.57 }, "geometry": { "type": "Point", "coordinates": [ 112.974530051949785, 28.173080215834382 ] } }, { "type": "Feature", "properties": { "id": 1098, "geom": "SRID=4326;POINT(112.994956 28.115658)", "零售户": "长沙市天心区全客来生活便利", "经度": 112.994956, "纬度": 28.115658, "参考值1": 3.94, "参考值2": 351, "参考值3": 0.57 }, "geometry": { "type": "Point", "coordinates": [ 112.988360396788181, 28.109959452666931 ] } }, { "type": "Feature", "properties": { "id": 1099, "geom": "SRID=4326;POINT(112.990559 28.192912)", "零售户": "长沙市天心区众哈食品店", "经度": 112.990559, "纬度": 28.192912, "参考值1": 4.21, "参考值2": 294, "参考值3": 0.57 }, "geometry": { "type": "Point", "coordinates": [ 112.983988622798876, 28.187246389829475 ] } }, { "type": "Feature", "properties": { "id": 1100, "geom": "SRID=4326;POINT(112.994956 28.115658)", "零售户": "长沙市天心区帅成便利店", "经度": 112.994956, "纬度": 28.115658, "参考值1": 4.03, "参考值2": 288, "参考值3": 0.57 }, "geometry": { "type": "Point", "coordinates": [ 112.988360396788181, 28.109959452666931 ] } }, { "type": "Feature", "properties": { "id": 1101, "geom": "SRID=4326;POINT(112.985969 28.15119)", "零售户": "长沙市天心区腾耀便利店", "经度": 112.985969, "纬度": 28.15119, "参考值1": 3.9, "参考值2": 323, "参考值3": 0.56 }, "geometry": { "type": "Point", "coordinates": [ 112.979389805655572, 28.145530104983155 ] } }, { "type": "Feature", "properties": { "id": 1102, "geom": "SRID=4326;POINT(112.978239 28.198121)", "零售户": "湖南省绿滋肴贸易有限公司太", "经度": 112.978239, "纬度": 28.198121, "参考值1": 4.03, "参考值2": 250, "参考值3": 0.56 }, "geometry": { "type": "Point", "coordinates": [ 112.971669992750819, 28.192430643237849 ] } }, { "type": "Feature", "properties": { "id": 1103, "geom": "SRID=4326;POINT(112.985384 28.157823)", "零售户": "长沙市天心区金夲超市", "经度": 112.985384, "纬度": 28.157823, "参考值1": 4.06, "参考值2": 283, "参考值3": 0.56 }, "geometry": { "type": "Point", "coordinates": [ 112.978810949080469, 28.152164164046944 ] } }, { "type": "Feature", "properties": { "id": 1104, "geom": "SRID=4326;POINT(112.98041 28.195366)", "零售户": "长沙市天心区万细平烟酒店", "经度": 112.98041, "纬度": 28.195366, "参考值1": 4.13, "参考值2": 336, "参考值3": 0.56 }, "geometry": { "type": "Point", "coordinates": [ 112.973839949474367, 28.189690395339902 ] } }, { "type": "Feature", "properties": { "id": 1107, "geom": "SRID=4326;POINT(112.989598 28.171707)", "零售户": "长沙市天心区谢三宏烟酒商行", "经度": 112.989598, "纬度": 28.171707, "参考值1": 3.89, "参考值2": 253, "参考值3": 0.56 }, "geometry": { "type": "Point", "coordinates": [ 112.983033529476373, 28.166046215779144 ] } }, { "type": "Feature", "properties": { "id": 1109, "geom": "SRID=4326;POINT(112.982776 28.178961)", "零售户": "长沙市天心区永茂食杂商店", "经度": 112.982776, "纬度": 28.178961, "参考值1": 3.9, "参考值2": 307, "参考值3": 0.56 }, "geometry": { "type": "Point", "coordinates": [ 112.976212255212872, 28.173298287220383 ] } }, { "type": "Feature", "properties": { "id": 1110, "geom": "SRID=4326;POINT(112.990867 28.069386)", "零售户": "长沙市天心区攀浩批发超市", "经度": 112.990867, "纬度": 28.069386, "参考值1": 4.02, "参考值2": 361, "参考值3": 0.56 }, "geometry": { "type": "Point", "coordinates": [ 112.984299835272822, 28.063719815424029 ] } }, { "type": "Feature", "properties": { "id": 1111, "geom": "SRID=4326;POINT(113.005195 28.123314)", "零售户": "长沙市天心区社网便利店", "经度": 113.005195, "纬度": 28.123314, "参考值1": 4.0, "参考值2": 273, "参考值3": 0.56 }, "geometry": { "type": "Point", "coordinates": [ 112.998629932329848, 28.117498667504783 ] } }, { "type": "Feature", "properties": { "id": 1112, "geom": "SRID=4326;POINT(112.984949 28.188018)", "零售户": "长沙市天心区惠沙食品店", "经度": 112.984949, "纬度": 28.188018, "参考值1": 3.84, "参考值2": 314, "参考值3": 0.55 }, "geometry": { "type": "Point", "coordinates": [ 112.978380420593325, 28.182359731665866 ] } }, { "type": "Feature", "properties": { "id": 1113, "geom": "SRID=4326;POINT(112.982127 28.150709)", "零售户": "长沙市天心区雯妮平价超市", "经度": 112.982127, "纬度": 28.150709, "参考值1": 3.92, "参考值2": 304, "参考值3": 0.55 }, "geometry": { "type": "Point", "coordinates": [ 112.975549505724359, 28.145040261046898 ] } }, { "type": "Feature", "properties": { "id": 1114, "geom": "SRID=4326;POINT(112.977047 28.185139)", "零售户": "长沙市天心区安瑞达食品店", "经度": 112.977047, "纬度": 28.185139, "参考值1": 3.82, "参考值2": 283, "参考值3": 0.55 }, "geometry": { "type": "Point", "coordinates": [ 112.97048983339792, 28.179441535122145 ] } }, { "type": "Feature", "properties": { "id": 1115, "geom": "SRID=4326;POINT(112.978345 28.15766)", "零售户": "长沙市天心区赵伟超市", "经度": 112.978345, "纬度": 28.15766, "参考值1": 3.94, "参考值2": 297, "参考值3": 0.55 }, "geometry": { "type": "Point", "coordinates": [ 112.971779253011661, 28.151971258137365 ] } }, { "type": "Feature", "properties": { "id": 1116, "geom": "SRID=4326;POINT(112.99633 28.144471)", "零售户": "长沙市天心区辉卓便利店", "经度": 112.99633, "纬度": 28.144471, "参考值1": 3.91, "参考值2": 334, "参考值3": 0.55 }, "geometry": { "type": "Point", "coordinates": [ 112.98975496887526, 28.13876566653861 ] } }, { "type": "Feature", "properties": { "id": 1117, "geom": "SRID=4326;POINT(112.985448 28.186748)", "零售户": "长沙市天心区素玉烟店", "经度": 112.985448, "纬度": 28.186748, "参考值1": 3.93, "参考值2": 329, "参考值3": 0.55 }, "geometry": { "type": "Point", "coordinates": [ 112.978879998258066, 28.181090516617875 ] } }, { "type": "Feature", "properties": { "id": 1118, "geom": "SRID=4326;POINT(112.981092 28.17875)", "零售户": "长沙市天心区李玲便利店", "经度": 112.981092, "纬度": 28.17875, "参考值1": 3.87, "参考值2": 296, "参考值3": 0.55 }, "geometry": { "type": "Point", "coordinates": [ 112.974530051949785, 28.173080215834382 ] } }, { "type": "Feature", "properties": { "id": 1119, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区兰宇便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 3.9, "参考值2": 326, "参考值3": 0.55 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1120, "geom": "SRID=4326;POINT(112.980282 28.198013)", "零售户": "长沙市天心区平原青烟酒食品", "经度": 112.980282, "纬度": 28.198013, "参考值1": 4.08, "参考值2": 434, "参考值3": 0.55 }, "geometry": { "type": "Point", "coordinates": [ 112.973709747126605, 28.1923360833961 ] } }, { "type": "Feature", "properties": { "id": 1121, "geom": "SRID=4326;POINT(112.983791 28.178245)", "零售户": "长沙市天心区陶周便利店", "经度": 112.983791, "纬度": 28.178245, "参考值1": 3.87, "参考值2": 321, "参考值3": 0.54 }, "geometry": { "type": "Point", "coordinates": [ 112.977226603385603, 28.172585333629833 ] } }, { "type": "Feature", "properties": { "id": 1122, "geom": "SRID=4326;POINT(112.976812 28.184042)", "零售户": "长沙市天心区铁安食品店", "经度": 112.976812, "纬度": 28.184042, "参考值1": 3.94, "参考值2": 382, "参考值3": 0.54 }, "geometry": { "type": "Point", "coordinates": [ 112.970255820577535, 28.178342651889341 ] } }, { "type": "Feature", "properties": { "id": 1123, "geom": "SRID=4326;POINT(112.996539 28.091528)", "零售户": "长沙市天心区福欣生活超市", "经度": 112.996539, "纬度": 28.091528, "参考值1": 3.79, "参考值2": 280, "参考值3": 0.54 }, "geometry": { "type": "Point", "coordinates": [ 112.989960577620991, 28.08581983289924 ] } }, { "type": "Feature", "properties": { "id": 1124, "geom": "SRID=4326;POINT(112.981092 28.17875)", "零售户": "长沙市天心区罗三毛副食平价", "经度": 112.981092, "纬度": 28.17875, "参考值1": 3.82, "参考值2": 242, "参考值3": 0.54 }, "geometry": { "type": "Point", "coordinates": [ 112.974530051949785, 28.173080215834382 ] } }, { "type": "Feature", "properties": { "id": 1125, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区雅妙便利店", "经度": 112.978226, "纬度": 28.139107, "参考值1": 3.85, "参考值2": 277, "参考值3": 0.54 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 1126, "geom": "SRID=4326;POINT(112.97917 28.138968)", "零售户": "长沙市天心区聚客食品商行", "经度": 112.97917, "纬度": 28.138968, "参考值1": 3.76, "参考值2": 289, "参考值3": 0.54 }, "geometry": { "type": "Point", "coordinates": [ 112.972584755449091, 28.133280521821369 ] } }, { "type": "Feature", "properties": { "id": 1127, "geom": "SRID=4326;POINT(112.980338 28.193366)", "零售户": "长沙市天心区艳瑞烟酒店", "经度": 112.980338, "纬度": 28.193366, "参考值1": 3.88, "参考值2": 234, "参考值3": 0.54 }, "geometry": { "type": "Point", "coordinates": [ 112.973769721551918, 28.187690407759987 ] } }, { "type": "Feature", "properties": { "id": 1128, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区罗煜便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 3.8, "参考值2": 315, "参考值3": 0.54 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1129, "geom": "SRID=4326;POINT(112.998944 28.148559)", "零售户": "长沙市天心区零嘴管家超市", "经度": 112.998944, "纬度": 28.148559, "参考值1": 3.76, "参考值2": 251, "参考值3": 0.53 }, "geometry": { "type": "Point", "coordinates": [ 112.99237946084763, 28.142829178355296 ] } }, { "type": "Feature", "properties": { "id": 1130, "geom": "SRID=4326;POINT(112.995092 28.091356)", "零售户": "长沙市天心区向老倌批发部", "经度": 112.995092, "纬度": 28.091356, "参考值1": 3.82, "参考值2": 226, "参考值3": 0.53 }, "geometry": { "type": "Point", "coordinates": [ 112.988510754830372, 28.085659903574431 ] } }, { "type": "Feature", "properties": { "id": 1132, "geom": "SRID=4326;POINT(113.006387 28.130741)", "零售户": "长沙市天心区平飞烟酒行", "经度": 113.006387, "纬度": 28.130741, "参考值1": 3.76, "参考值2": 236, "参考值3": 0.53 }, "geometry": { "type": "Point", "coordinates": [ 112.999830472875885, 28.124908772168201 ] } }, { "type": "Feature", "properties": { "id": 1133, "geom": "SRID=4326;POINT(112.977779 28.173094)", "零售户": "长沙市天心区平常便利店", "经度": 112.977779, "纬度": 28.173094, "参考值1": 3.71, "参考值2": 298, "参考值3": 0.53 }, "geometry": { "type": "Point", "coordinates": [ 112.971222337715702, 28.167402972358001 ] } }, { "type": "Feature", "properties": { "id": 1134, "geom": "SRID=4326;POINT(112.981092 28.17875)", "零售户": "长沙市天心区力高便利店", "经度": 112.981092, "纬度": 28.17875, "参考值1": 3.9, "参考值2": 304, "参考值3": 0.53 }, "geometry": { "type": "Point", "coordinates": [ 112.974530051949785, 28.173080215834382 ] } }, { "type": "Feature", "properties": { "id": 1136, "geom": "SRID=4326;POINT(112.992169 28.147195)", "零售户": "长沙市天心区酷酷超市", "经度": 112.992169, "纬度": 28.147195, "参考值1": 3.71, "参考值2": 317, "参考值3": 0.53 }, "geometry": { "type": "Point", "coordinates": [ 112.985589481385361, 28.14151943622317 ] } }, { "type": "Feature", "properties": { "id": 1139, "geom": "SRID=4326;POINT(112.982047 28.188327)", "零售户": "长沙市天心区福丰食品店", "经度": 112.982047, "纬度": 28.188327, "参考值1": 3.84, "参考值2": 302, "参考值3": 0.52 }, "geometry": { "type": "Point", "coordinates": [ 112.975480241905757, 28.18266062267632 ] } }, { "type": "Feature", "properties": { "id": 1141, "geom": "SRID=4326;POINT(112.98202 28.179535)", "零售户": "长沙市天心区厚爱便利店", "经度": 112.98202, "纬度": 28.179535, "参考值1": 3.7, "参考值2": 285, "参考值3": 0.52 }, "geometry": { "type": "Point", "coordinates": [ 112.975456867820967, 28.173869401282332 ] } }, { "type": "Feature", "properties": { "id": 1142, "geom": "SRID=4326;POINT(112.985399 28.188548)", "零售户": "长沙市天心区连名食品经营部", "经度": 112.985399, "纬度": 28.188548, "参考值1": 3.74, "参考值2": 303, "参考值3": 0.52 }, "geometry": { "type": "Point", "coordinates": [ 112.978829957857116, 28.182890206511324 ] } }, { "type": "Feature", "properties": { "id": 1143, "geom": "SRID=4326;POINT(112.99808 28.095271)", "零售户": "长沙市天心区牵牛花便利店", "经度": 112.99808, "纬度": 28.095271, "参考值1": 3.58, "参考值2": 239, "参考值3": 0.51 }, "geometry": { "type": "Point", "coordinates": [ 112.991501696781967, 28.089547299854125 ] } }, { "type": "Feature", "properties": { "id": 1144, "geom": "SRID=4326;POINT(112.982481 28.149888)", "零售户": "长沙市天心区腾州平价超市", "经度": 112.982481, "纬度": 28.149888, "参考值1": 3.58, "参考值2": 334, "参考值3": 0.51 }, "geometry": { "type": "Point", "coordinates": [ 112.975902353915416, 28.144220428583068 ] } }, { "type": "Feature", "properties": { "id": 1146, "geom": "SRID=4326;POINT(112.981092 28.17875)", "零售户": "长沙市天心区杨林灵烟酒商行", "经度": 112.981092, "纬度": 28.17875, "参考值1": 3.69, "参考值2": 398, "参考值3": 0.51 }, "geometry": { "type": "Point", "coordinates": [ 112.974530051949785, 28.173080215834382 ] } }, { "type": "Feature", "properties": { "id": 1147, "geom": "SRID=4326;POINT(112.977637 28.169543)", "零售户": "长沙市天心区明快便利店", "经度": 112.977637, "纬度": 28.169543, "参考值1": 3.63, "参考值2": 254, "参考值3": 0.51 }, "geometry": { "type": "Point", "coordinates": [ 112.971079752150587, 28.163850633968597 ] } }, { "type": "Feature", "properties": { "id": 1148, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区开门红便利店", "经度": 112.978226, "纬度": 28.139107, "参考值1": 3.54, "参考值2": 243, "参考值3": 0.51 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 1149, "geom": "SRID=4326;POINT(112.996539 28.091528)", "零售户": "长沙市天心区嘟知食品店", "经度": 112.996539, "纬度": 28.091528, "参考值1": 3.62, "参考值2": 278, "参考值3": 0.51 }, "geometry": { "type": "Point", "coordinates": [ 112.989960577620991, 28.08581983289924 ] } }, { "type": "Feature", "properties": { "id": 1150, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区南军水果超市", "经度": 112.996195, "纬度": 28.144471, "参考值1": 3.68, "参考值2": 276, "参考值3": 0.51 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1151, "geom": "SRID=4326;POINT(113.008296 28.083586)", "零售户": "长沙市天心区易琳便利店", "经度": 113.008296, "纬度": 28.083586, "参考值1": 3.66, "参考值2": 292, "参考值3": 0.51 }, "geometry": { "type": "Point", "coordinates": [ 113.001763366202454, 28.077727793925927 ] } }, { "type": "Feature", "properties": { "id": 1152, "geom": "SRID=4326;POINT(112.973883 28.149143)", "零售户": "长沙市天心区小汤圆便利店", "经度": 112.973883, "纬度": 28.149143, "参考值1": 3.66, "参考值2": 300, "参考值3": 0.51 }, "geometry": { "type": "Point", "coordinates": [ 112.967319512762444, 28.143411392217594 ] } }, { "type": "Feature", "properties": { "id": 1154, "geom": "SRID=4326;POINT(112.994481 28.111139)", "零售户": "长沙市天心区解甲归田烟酒商", "经度": 112.994481, "纬度": 28.111139, "参考值1": 3.51, "参考值2": 234, "参考值3": 0.5 }, "geometry": { "type": "Point", "coordinates": [ 112.987885156240992, 28.105444123574294 ] } }, { "type": "Feature", "properties": { "id": 1155, "geom": "SRID=4326;POINT(112.976315 28.153307)", "零售户": "长沙市天心区浩晨超市", "经度": 112.976315, "纬度": 28.153307, "参考值1": 3.7, "参考值2": 308, "参考值3": 0.5 }, "geometry": { "type": "Point", "coordinates": [ 112.969749528227936, 28.147600654095836 ] } }, { "type": "Feature", "properties": { "id": 1156, "geom": "SRID=4326;POINT(112.979353 28.213478)", "零售户": "长沙市天心区德玛便利店", "经度": 112.979353, "纬度": 28.213478, "参考值1": 3.4, "参考值2": 252, "参考值3": 0.5 }, "geometry": { "type": "Point", "coordinates": [ 112.972766828424525, 28.207791614473116 ] } }, { "type": "Feature", "properties": { "id": 1158, "geom": "SRID=4326;POINT(112.978065 28.19217)", "零售户": "长沙市天心区汇真烟店", "经度": 112.978065, "纬度": 28.19217, "参考值1": 3.65, "参考值2": 339, "参考值3": 0.5 }, "geometry": { "type": "Point", "coordinates": [ 112.971501410554538, 28.186479601622029 ] } }, { "type": "Feature", "properties": { "id": 1159, "geom": "SRID=4326;POINT(113.003756 28.144815)", "零售户": "长沙市天心区菊臣冰批店", "经度": 113.003756, "纬度": 28.144815, "参考值1": 3.63, "参考值2": 271, "参考值3": 0.5 }, "geometry": { "type": "Point", "coordinates": [ 112.9972025555427, 28.139024484388379 ] } }, { "type": "Feature", "properties": { "id": 1160, "geom": "SRID=4326;POINT(112.977862 28.198798)", "零售户": "长沙市天心区宋桂林烟店", "经度": 112.977862, "纬度": 28.198798, "参考值1": 3.37, "参考值2": 140, "参考值3": 0.5 }, "geometry": { "type": "Point", "coordinates": [ 112.971293070759785, 28.193104619696982 ] } }, { "type": "Feature", "properties": { "id": 1161, "geom": "SRID=4326;POINT(112.981706 28.177385)", "零售户": "长沙市天心区妮知食品店", "经度": 112.981706, "纬度": 28.177385, "参考值1": 3.61, "参考值2": 277, "参考值3": 0.5 }, "geometry": { "type": "Point", "coordinates": [ 112.975143488691558, 28.171718130333147 ] } }, { "type": "Feature", "properties": { "id": 1163, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区唐丛超市", "经度": 112.978226, "纬度": 28.139107, "参考值1": 3.37, "参考值2": 236, "参考值3": 0.5 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 1165, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区莲霖便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 3.46, "参考值2": 274, "参考值3": 0.49 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1166, "geom": "SRID=4326;POINT(112.976919 28.18853)", "零售户": "长沙市天心区高喜艳便利店", "经度": 112.976919, "纬度": 28.18853, "参考值1": 3.54, "参考值2": 310, "参考值3": 0.49 }, "geometry": { "type": "Point", "coordinates": [ 112.970360246162173, 28.182830988412668 ] } }, { "type": "Feature", "properties": { "id": 1167, "geom": "SRID=4326;POINT(112.980419 28.198618)", "零售户": "长沙市天心区根之恋食品店", "经度": 112.980419, "纬度": 28.198618, "参考值1": 3.38, "参考值2": 211, "参考值3": 0.49 }, "geometry": { "type": "Point", "coordinates": [ 112.973845987814741, 28.192941712031381 ] } }, { "type": "Feature", "properties": { "id": 1168, "geom": "SRID=4326;POINT(112.976327 28.19814)", "零售户": "长沙市天心区招徕烟酒店", "经度": 112.976327, "纬度": 28.19814, "参考值1": 3.38, "参考值2": 209, "参考值3": 0.49 }, "geometry": { "type": "Point", "coordinates": [ 112.969761902864875, 28.192433894333025 ] } }, { "type": "Feature", "properties": { "id": 1170, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区雪桥便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 3.36, "参考值2": 259, "参考值3": 0.48 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1171, "geom": "SRID=4326;POINT(112.967088 28.116005)", "零售户": "长沙满尚酒业有限公司", "经度": 112.967088, "纬度": 28.116005, "参考值1": 3.29, "参考值2": 175, "参考值3": 0.48 }, "geometry": { "type": "Point", "coordinates": [ 112.960524198618785, 28.110178564979908 ] } }, { "type": "Feature", "properties": { "id": 1173, "geom": "SRID=4326;POINT(112.99604 28.091436)", "零售户": "长沙市天心区周建食品店", "经度": 112.99604, "纬度": 28.091436, "参考值1": 3.43, "参考值2": 275, "参考值3": 0.48 }, "geometry": { "type": "Point", "coordinates": [ 112.989460587923716, 28.085732197177681 ] } }, { "type": "Feature", "properties": { "id": 1175, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区琪记炒货店", "经度": 112.978226, "纬度": 28.139107, "参考值1": 3.11, "参考值2": 193, "参考值3": 0.48 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 1176, "geom": "SRID=4326;POINT(112.987859 28.102391)", "零售户": "长沙市天心区琪祥烟酒店", "经度": 112.987859, "纬度": 28.102391, "参考值1": 3.42, "参考值2": 269, "参考值3": 0.48 }, "geometry": { "type": "Point", "coordinates": [ 112.98126023720414, 28.096725433930924 ] } }, { "type": "Feature", "properties": { "id": 1177, "geom": "SRID=4326;POINT(112.995261 28.068772)", "零售户": "长沙市天心区萱海便利店", "经度": 112.995261, "纬度": 28.068772, "参考值1": 3.32, "参考值2": 271, "参考值3": 0.48 }, "geometry": { "type": "Point", "coordinates": [ 112.988700744204166, 28.06307970564572 ] } }, { "type": "Feature", "properties": { "id": 1178, "geom": "SRID=4326;POINT(112.999679 28.066093)", "零售户": "长沙市天心区和七食品店", "经度": 112.999679, "纬度": 28.066093, "参考值1": 3.24, "参考值2": 235, "参考值3": 0.47 }, "geometry": { "type": "Point", "coordinates": [ 112.993130841176679, 28.060358588311317 ] } }, { "type": "Feature", "properties": { "id": 1179, "geom": "SRID=4326;POINT(113.008143 28.138867)", "零售户": "湖南橙子酒店有限公司", "经度": 113.008143, "纬度": 28.138867, "参考值1": 2.87, "参考值2": 141, "参考值3": 0.47 }, "geometry": { "type": "Point", "coordinates": [ 113.00160015569783, 28.133008887361989 ] } }, { "type": "Feature", "properties": { "id": 1180, "geom": "SRID=4326;POINT(112.987396 28.19116)", "零售户": "长沙市天心区卫松日用品店", "经度": 112.987396, "纬度": 28.19116, "参考值1": 3.18, "参考值2": 201, "参考值3": 0.47 }, "geometry": { "type": "Point", "coordinates": [ 112.980825143204854, 28.18550196397846 ] } }, { "type": "Feature", "properties": { "id": 1181, "geom": "SRID=4326;POINT(112.989931 28.204747)", "零售户": "长沙市天心区秋蓝食品店", "经度": 112.989931, "纬度": 28.204747, "参考值1": 3.34, "参考值2": 297, "参考值3": 0.47 }, "geometry": { "type": "Point", "coordinates": [ 112.983349036856794, 28.199080812917426 ] } }, { "type": "Feature", "properties": { "id": 1183, "geom": "SRID=4326;POINT(112.980916 28.189492)", "零售户": "长沙市天心区万爱食品店", "经度": 112.980916, "纬度": 28.189492, "参考值1": 3.38, "参考值2": 301, "参考值3": 0.47 }, "geometry": { "type": "Point", "coordinates": [ 112.974349798425663, 28.183820222149503 ] } }, { "type": "Feature", "properties": { "id": 1184, "geom": "SRID=4326;POINT(112.977186 28.196478)", "零售户": "长沙市天心区长旺食品经营部", "经度": 112.977186, "纬度": 28.196478, "参考值1": 3.37, "参考值2": 119, "参考值3": 0.47 }, "geometry": { "type": "Point", "coordinates": [ 112.970620566182916, 28.190779717857168 ] } }, { "type": "Feature", "properties": { "id": 1185, "geom": "SRID=4326;POINT(112.985974 28.184009)", "零售户": "长沙市天心区裕华南食水果店", "经度": 112.985974, "纬度": 28.184009, "参考值1": 3.32, "参考值2": 214, "参考值3": 0.47 }, "geometry": { "type": "Point", "coordinates": [ 112.979407221639974, 28.178352230353866 ] } }, { "type": "Feature", "properties": { "id": 1186, "geom": "SRID=4326;POINT(112.994689 28.132843)", "零售户": "长沙市天心区童话里的炒货店", "经度": 112.994689, "纬度": 28.132843, "参考值1": 3.27, "参考值2": 248, "参考值3": 0.46 }, "geometry": { "type": "Point", "coordinates": [ 112.988099920312621, 28.127148208721774 ] } }, { "type": "Feature", "properties": { "id": 1187, "geom": "SRID=4326;POINT(112.982847 28.15499)", "零售户": "长沙市天心区鸣天粮油店", "经度": 112.982847, "纬度": 28.15499, "参考值1": 3.47, "参考值2": 265, "参考值3": 0.46 }, "geometry": { "type": "Point", "coordinates": [ 112.976272893949798, 28.149324940996642 ] } }, { "type": "Feature", "properties": { "id": 1188, "geom": "SRID=4326;POINT(112.991598 28.190699)", "零售户": "长沙市天心区望澳食品店", "经度": 112.991598, "纬度": 28.190699, "参考值1": 3.34, "参考值2": 273, "参考值3": 0.46 }, "geometry": { "type": "Point", "coordinates": [ 112.985030376088403, 28.18502942758235 ] } }, { "type": "Feature", "properties": { "id": 1189, "geom": "SRID=4326;POINT(112.97808 28.16531)", "零售户": "长沙市天心区文帅烟店", "经度": 112.97808, "纬度": 28.16531, "参考值1": 3.19, "参考值2": 279, "参考值3": 0.46 }, "geometry": { "type": "Point", "coordinates": [ 112.971520044200034, 28.159620606926037 ] } }, { "type": "Feature", "properties": { "id": 1190, "geom": "SRID=4326;POINT(112.9794 28.14862)", "零售户": "长沙市天心区旅俊烟店", "经度": 112.9794, "纬度": 28.14862, "参考值1": 3.33, "参考值2": 275, "参考值3": 0.46 }, "geometry": { "type": "Point", "coordinates": [ 112.972823992813574, 28.142936428602045 ] } }, { "type": "Feature", "properties": { "id": 1191, "geom": "SRID=4326;POINT(112.987945 28.173997)", "零售户": "长沙市天心区凯拉便利店", "经度": 112.987945, "纬度": 28.173997, "参考值1": 3.34, "参考值2": 248, "参考值3": 0.46 }, "geometry": { "type": "Point", "coordinates": [ 112.981380036588504, 28.168339786217491 ] } }, { "type": "Feature", "properties": { "id": 1192, "geom": "SRID=4326;POINT(112.981212 28.174349)", "零售户": "长沙市天心区蒋芹便利店", "经度": 112.981212, "纬度": 28.174349, "参考值1": 3.17, "参考值2": 262, "参考值3": 0.46 }, "geometry": { "type": "Point", "coordinates": [ 112.974650046417381, 28.168679836022303 ] } }, { "type": "Feature", "properties": { "id": 1193, "geom": "SRID=4326;POINT(112.97664 28.190742)", "零售户": "长沙市天心区仁润便利店", "经度": 112.97664, "纬度": 28.190742, "参考值1": 3.25, "参考值2": 299, "参考值3": 0.46 }, "geometry": { "type": "Point", "coordinates": [ 112.970080371202911, 28.185040208545029 ] } }, { "type": "Feature", "properties": { "id": 1194, "geom": "SRID=4326;POINT(112.994689 28.132843)", "零售户": "长沙市天心区李冬华便利店", "经度": 112.994689, "纬度": 28.132843, "参考值1": 3.19, "参考值2": 224, "参考值3": 0.46 }, "geometry": { "type": "Point", "coordinates": [ 112.988099920312621, 28.127148208721774 ] } }, { "type": "Feature", "properties": { "id": 1195, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区香货园炒货店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 3.31, "参考值2": 296, "参考值3": 0.45 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1197, "geom": "SRID=4326;POINT(112.978585 28.150396)", "零售户": "长沙市天心区杨通行烟酒店", "经度": 112.978585, "纬度": 28.150396, "参考值1": 3.34, "参考值2": 360, "参考值3": 0.45 }, "geometry": { "type": "Point", "coordinates": [ 112.972012141546827, 28.144707328792151 ] } }, { "type": "Feature", "properties": { "id": 1198, "geom": "SRID=4326;POINT(112.985455 28.187265)", "零售户": "长沙市天心区欣琪奇便利店", "经度": 112.985455, "纬度": 28.187265, "参考值1": 3.24, "参考值2": 291, "参考值3": 0.45 }, "geometry": { "type": "Point", "coordinates": [ 112.978886708748604, 28.181607452125032 ] } }, { "type": "Feature", "properties": { "id": 1199, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区住良绿色果园", "经度": 112.996195, "纬度": 28.144471, "参考值1": 3.12, "参考值2": 239, "参考值3": 0.45 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1201, "geom": "SRID=4326;POINT(112.989158 28.188)", "零售户": "长沙市天心区米爹食品店", "经度": 112.989158, "纬度": 28.188, "参考值1": 3.21, "参考值2": 277, "参考值3": 0.45 }, "geometry": { "type": "Point", "coordinates": [ 112.982589970269416, 28.182339586631777 ] } }, { "type": "Feature", "properties": { "id": 1202, "geom": "SRID=4326;POINT(112.987657 28.111218)", "零售户": "长沙市天心区腊辉吉便利店", "经度": 112.987657, "纬度": 28.111218, "参考值1": 3.11, "参考值2": 262, "参考值3": 0.45 }, "geometry": { "type": "Point", "coordinates": [ 112.981054035239111, 28.10555164401109 ] } }, { "type": "Feature", "properties": { "id": 1203, "geom": "SRID=4326;POINT(112.983508 28.150254)", "零售户": "长沙市天心区锦致烟酒商行", "经度": 112.983508, "纬度": 28.150254, "参考值1": 3.15, "参考值2": 251, "参考值3": 0.45 }, "geometry": { "type": "Point", "coordinates": [ 112.9769288877349, 28.144589848248593 ] } }, { "type": "Feature", "properties": { "id": 1206, "geom": "SRID=4326;POINT(112.977371 28.171414)", "零售户": "长沙市天心区青哥烟酒商行", "经度": 112.977371, "纬度": 28.171414, "参考值1": 3.15, "参考值2": 251, "参考值3": 0.45 }, "geometry": { "type": "Point", "coordinates": [ 112.97081482289353, 28.165719626562179 ] } }, { "type": "Feature", "properties": { "id": 1207, "geom": "SRID=4326;POINT(112.97205 28.111479)", "零售户": "长沙市天心区骏强便利店", "经度": 112.97205, "纬度": 28.111479, "参考值1": 3.16, "参考值2": 276, "参考值3": 0.45 }, "geometry": { "type": "Point", "coordinates": [ 112.965469819936729, 28.105720742649307 ] } }, { "type": "Feature", "properties": { "id": 1208, "geom": "SRID=4326;POINT(112.943377 28.086724)", "零售户": "长沙市天心区耀宇便利店", "经度": 112.943377, "纬度": 28.086724, "参考值1": 2.99, "参考值2": 223, "参考值3": 0.44 }, "geometry": { "type": "Point", "coordinates": [ 112.936929700051266, 28.080508905291023 ] } }, { "type": "Feature", "properties": { "id": 1209, "geom": "SRID=4326;POINT(112.997585 28.080054)", "零售户": "长沙市天心区二十四小时便利", "经度": 112.997585, "纬度": 28.080054, "参考值1": 3.12, "参考值2": 244, "参考值3": 0.44 }, "geometry": { "type": "Point", "coordinates": [ 112.991020515598663, 28.07433893964452 ] } }, { "type": "Feature", "properties": { "id": 1214, "geom": "SRID=4326;POINT(112.978347 28.156179)", "零售户": "长沙市天心区文邦超市", "经度": 112.978347, "纬度": 28.156179, "参考值1": 3.2, "参考值2": 335, "参考值3": 0.44 }, "geometry": { "type": "Point", "coordinates": [ 112.971779988200467, 28.150489957430569 ] } }, { "type": "Feature", "properties": { "id": 1215, "geom": "SRID=4326;POINT(112.981397 28.174821)", "零售户": "长沙市天心区玲斌烟酒店", "经度": 112.981397, "纬度": 28.174821, "参考值1": 3.09, "参考值2": 240, "参考值3": 0.44 }, "geometry": { "type": "Point", "coordinates": [ 112.974834860589624, 28.169152727596387 ] } }, { "type": "Feature", "properties": { "id": 1216, "geom": "SRID=4326;POINT(113.00796 28.130846)", "零售户": "长沙市天心区蔚然锦和超市克", "经度": 113.00796, "纬度": 28.130846, "参考值1": 3.14, "参考值2": 222, "参考值3": 0.44 }, "geometry": { "type": "Point", "coordinates": [ 113.001409682638354, 28.124989142575938 ] } }, { "type": "Feature", "properties": { "id": 1218, "geom": "SRID=4326;POINT(112.981092 28.17875)", "零售户": "长沙市天心区敏华食品店", "经度": 112.981092, "纬度": 28.17875, "参考值1": 3.17, "参考值2": 266, "参考值3": 0.43 }, "geometry": { "type": "Point", "coordinates": [ 112.974530051949785, 28.173080215834382 ] } }, { "type": "Feature", "properties": { "id": 1220, "geom": "SRID=4326;POINT(112.988416 28.187193)", "零售户": "长沙市天心区白沙日杂店", "经度": 112.988416, "纬度": 28.187193, "参考值1": 3.04, "参考值2": 230, "参考值3": 0.43 }, "geometry": { "type": "Point", "coordinates": [ 112.981848048131923, 28.181534274043134 ] } }, { "type": "Feature", "properties": { "id": 1222, "geom": "SRID=4326;POINT(112.999597 28.120566)", "零售户": "长沙市天心区锦豪烟酒批发部", "经度": 112.999597, "纬度": 28.120566, "参考值1": 2.76, "参考值2": 137, "参考值3": 0.43 }, "geometry": { "type": "Point", "coordinates": [ 112.993012866550018, 28.114823657666292 ] } }, { "type": "Feature", "properties": { "id": 1223, "geom": "SRID=4326;POINT(112.986675 28.134264)", "零售户": "长沙市天心区阿康烟酒商行", "经度": 112.986675, "纬度": 28.134264, "参考值1": 2.84, "参考值2": 209, "参考值3": 0.43 }, "geometry": { "type": "Point", "coordinates": [ 112.980079428890988, 28.128600140362014 ] } }, { "type": "Feature", "properties": { "id": 1224, "geom": "SRID=4326;POINT(112.976848 28.198015)", "零售户": "长沙市天心区湘雯烟酒店", "经度": 112.976848, "纬度": 28.198015, "参考值1": 3.03, "参考值2": 242, "参考值3": 0.43 }, "geometry": { "type": "Point", "coordinates": [ 112.970281875018813, 28.192313510455008 ] } }, { "type": "Feature", "properties": { "id": 1227, "geom": "SRID=4326;POINT(112.987859 28.102391)", "零售户": "长沙市天心区乐长食品店", "经度": 112.987859, "纬度": 28.102391, "参考值1": 3.07, "参考值2": 221, "参考值3": 0.42 }, "geometry": { "type": "Point", "coordinates": [ 112.98126023720414, 28.096725433930924 ] } }, { "type": "Feature", "properties": { "id": 1228, "geom": "SRID=4326;POINT(112.99023 28.072334)", "零售户": "长沙市天心区王百家便利店", "经度": 112.99023, "纬度": 28.072334, "参考值1": 2.99, "参考值2": 240, "参考值3": 0.42 }, "geometry": { "type": "Point", "coordinates": [ 112.983660134855398, 28.066669670490338 ] } }, { "type": "Feature", "properties": { "id": 1229, "geom": "SRID=4326;POINT(112.984216 28.183869)", "零售户": "长沙市天心区楚亮便利超市", "经度": 112.984216, "纬度": 28.183869, "参考值1": 3.0, "参考值2": 223, "参考值3": 0.42 }, "geometry": { "type": "Point", "coordinates": [ 112.977649851209762, 28.178209947207641 ] } }, { "type": "Feature", "properties": { "id": 1232, "geom": "SRID=4326;POINT(112.976694 28.197887)", "零售户": "长沙市天心区福勇烟酒店", "经度": 112.976694, "纬度": 28.197887, "参考值1": 2.88, "参考值2": 264, "参考值3": 0.42 }, "geometry": { "type": "Point", "coordinates": [ 112.970128326601852, 28.192184206993364 ] } }, { "type": "Feature", "properties": { "id": 1233, "geom": "SRID=4326;POINT(113.000576 28.101515)", "零售户": "长沙市天心区七佳禧综合超市", "经度": 113.000576, "纬度": 28.101515, "参考值1": 2.93, "参考值2": 209, "参考值3": 0.42 }, "geometry": { "type": "Point", "coordinates": [ 112.993999498251668, 28.095762504940968 ] } }, { "type": "Feature", "properties": { "id": 1236, "geom": "SRID=4326;POINT(112.993345 28.190259)", "零售户": "长沙市天心区如云烟酒店", "经度": 112.993345, "纬度": 28.190259, "参考值1": 2.92, "参考值2": 180, "参考值3": 0.41 }, "geometry": { "type": "Point", "coordinates": [ 112.986780063004431, 28.184579975287274 ] } }, { "type": "Feature", "properties": { "id": 1238, "geom": "SRID=4326;POINT(112.975665 28.187371)", "零售户": "长沙市天心区秀琪食品店", "经度": 112.975665, "纬度": 28.187371, "参考值1": 2.87, "参考值2": 222, "参考值3": 0.41 }, "geometry": { "type": "Point", "coordinates": [ 112.969109766109426, 28.181660823651416 ] } }, { "type": "Feature", "properties": { "id": 1239, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区姚探食品店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 2.83, "参考值2": 172, "参考值3": 0.41 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1240, "geom": "SRID=4326;POINT(112.979885 28.155294)", "零售户": "长沙市天心区喜明便利店", "经度": 112.979885, "纬度": 28.155294, "参考值1": 2.83, "参考值2": 154, "参考值3": 0.41 }, "geometry": { "type": "Point", "coordinates": [ 112.973314642206503, 28.149615054437831 ] } }, { "type": "Feature", "properties": { "id": 1241, "geom": "SRID=4326;POINT(112.984163 28.156751)", "零售户": "长沙市天心区嘉之盛便利店", "经度": 112.984163, "纬度": 28.156751, "参考值1": 2.88, "参考值2": 220, "参考值3": 0.41 }, "geometry": { "type": "Point", "coordinates": [ 112.977589535228987, 28.151089979147201 ] } }, { "type": "Feature", "properties": { "id": 1242, "geom": "SRID=4326;POINT(112.986588 28.131054)", "零售户": "长沙市天心区雅芬食品店", "经度": 112.986588, "纬度": 28.131054, "参考值1": 2.97, "参考值2": 211, "参考值3": 0.41 }, "geometry": { "type": "Point", "coordinates": [ 112.979989940783341, 28.125389529916248 ] } }, { "type": "Feature", "properties": { "id": 1243, "geom": "SRID=4326;POINT(112.974749 28.187901)", "零售户": "长沙市天心区青腾食品店", "经度": 112.974749, "纬度": 28.187901, "参考值1": 2.93, "参考值2": 251, "参考值3": 0.41 }, "geometry": { "type": "Point", "coordinates": [ 112.968195716786596, 28.182181684548517 ] } }, { "type": "Feature", "properties": { "id": 1244, "geom": "SRID=4326;POINT(112.979114 28.198863)", "零售户": "长沙市天心区古兰烟酒店", "经度": 112.979114, "纬度": 28.198863, "参考值1": 2.87, "参考值2": 245, "参考值3": 0.41 }, "geometry": { "type": "Point", "coordinates": [ 112.972542751185529, 28.193178655569117 ] } }, { "type": "Feature", "properties": { "id": 1247, "geom": "SRID=4326;POINT(112.995021 28.090515)", "零售户": "长沙市天心区陆零便利店", "经度": 112.995021, "纬度": 28.090515, "参考值1": 2.88, "参考值2": 184, "参考值3": 0.4 }, "geometry": { "type": "Point", "coordinates": [ 112.988440447651485, 28.084819654650509 ] } }, { "type": "Feature", "properties": { "id": 1248, "geom": "SRID=4326;POINT(112.985543 28.169864)", "零售户": "长沙市天心区秋杳便利店", "经度": 112.985543, "纬度": 28.169864, "参考值1": 2.83, "参考值2": 225, "参考值3": 0.4 }, "geometry": { "type": "Point", "coordinates": [ 112.978977027079523, 28.164207101737276 ] } }, { "type": "Feature", "properties": { "id": 1251, "geom": "SRID=4326;POINT(112.981247 28.189641)", "零售户": "长沙市天心区自强食品店", "经度": 112.981247, "纬度": 28.189641, "参考值1": 2.82, "参考值2": 245, "参考值3": 0.4 }, "geometry": { "type": "Point", "coordinates": [ 112.974680289088496, 28.183970842697949 ] } }, { "type": "Feature", "properties": { "id": 1252, "geom": "SRID=4326;POINT(112.980617 28.169338)", "零售户": "长沙市天心区沙福人家便利店", "经度": 112.980617, "纬度": 28.169338, "参考值1": 2.87, "参考值2": 231, "参考值3": 0.4 }, "geometry": { "type": "Point", "coordinates": [ 112.974054723688027, 28.163665516198218 ] } }, { "type": "Feature", "properties": { "id": 1253, "geom": "SRID=4326;POINT(112.96893 28.12103)", "零售户": "长沙市天心区茹润便利店", "经度": 112.96893, "纬度": 28.12103, "参考值1": 2.8, "参考值2": 209, "参考值3": 0.4 }, "geometry": { "type": "Point", "coordinates": [ 112.96236016069291, 28.11523065079114 ] } }, { "type": "Feature", "properties": { "id": 1254, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区杏春便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 2.89, "参考值2": 256, "参考值3": 0.4 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1256, "geom": "SRID=4326;POINT(112.995261 28.068772)", "零售户": "长沙市天心区云客便利店", "经度": 112.995261, "纬度": 28.068772, "参考值1": 2.77, "参考值2": 206, "参考值3": 0.39 }, "geometry": { "type": "Point", "coordinates": [ 112.988700744204166, 28.06307970564572 ] } }, { "type": "Feature", "properties": { "id": 1257, "geom": "SRID=4326;POINT(112.983669 28.189782)", "零售户": "长沙市天心区陈建兵粮油店", "经度": 112.983669, "纬度": 28.189782, "参考值1": 2.7, "参考值2": 193, "参考值3": 0.39 }, "geometry": { "type": "Point", "coordinates": [ 112.977099943556652, 28.184120848924877 ] } }, { "type": "Feature", "properties": { "id": 1258, "geom": "SRID=4326;POINT(113.005983 28.121886)", "零售户": "长沙市天心区超吉惠超市", "经度": 113.005983, "纬度": 28.121886, "参考值1": 2.79, "参考值2": 216, "参考值3": 0.39 }, "geometry": { "type": "Point", "coordinates": [ 112.999420370524319, 28.116058781826656 ] } }, { "type": "Feature", "properties": { "id": 1259, "geom": "SRID=4326;POINT(112.997912 28.095365)", "零售户": "长沙市天心区润飞便利店", "经度": 112.997912, "纬度": 28.095365, "参考值1": 2.72, "参考值2": 206, "参考值3": 0.39 }, "geometry": { "type": "Point", "coordinates": [ 112.991333192440266, 28.0896429668257 ] } }, { "type": "Feature", "properties": { "id": 1262, "geom": "SRID=4326;POINT(112.989664 28.171701)", "零售户": "长沙市天心区品茗阁烟酒商行", "经度": 112.989664, "纬度": 28.171701, "参考值1": 2.73, "参考值2": 186, "参考值3": 0.38 }, "geometry": { "type": "Point", "coordinates": [ 112.983099575791911, 28.166040024465556 ] } }, { "type": "Feature", "properties": { "id": 1266, "geom": "SRID=4326;POINT(112.979994 28.188207)", "零售户": "长沙唐人神食品销售有限责任", "经度": 112.979994, "纬度": 28.188207, "参考值1": 2.71, "参考值2": 205, "参考值3": 0.38 }, "geometry": { "type": "Point", "coordinates": [ 112.97342988594275, 28.182530330121541 ] } }, { "type": "Feature", "properties": { "id": 1268, "geom": "SRID=4326;POINT(112.982678 28.188355)", "零售户": "长沙市天心区顺江食品店", "经度": 112.982678, "纬度": 28.188355, "参考值1": 2.6, "参考值2": 219, "参考值3": 0.38 }, "geometry": { "type": "Point", "coordinates": [ 112.976110624290087, 28.182691027085202 ] } }, { "type": "Feature", "properties": { "id": 1269, "geom": "SRID=4326;POINT(112.974992 28.185257)", "零售户": "长沙市天心区么子便利店", "经度": 112.974992, "纬度": 28.185257, "参考值1": 2.68, "参考值2": 197, "参考值3": 0.38 }, "geometry": { "type": "Point", "coordinates": [ 112.968439520132421, 28.179540503401746 ] } }, { "type": "Feature", "properties": { "id": 1270, "geom": "SRID=4326;POINT(112.973357 28.133322)", "零售户": "长沙市天心区建德炒货店", "经度": 112.973357, "纬度": 28.133322, "参考值1": 2.61, "参考值2": 225, "参考值3": 0.37 }, "geometry": { "type": "Point", "coordinates": [ 112.966779864541081, 28.127580793568224 ] } }, { "type": "Feature", "properties": { "id": 1271, "geom": "SRID=4326;POINT(112.978728 28.179454)", "零售户": "长沙市天心区长益超市", "经度": 112.978728, "纬度": 28.179454, "参考值1": 2.27, "参考值2": 115, "参考值3": 0.37 }, "geometry": { "type": "Point", "coordinates": [ 112.972169470649021, 28.173769999831933 ] } }, { "type": "Feature", "properties": { "id": 1274, "geom": "SRID=4326;POINT(112.986928 28.185377)", "零售户": "长沙市天心区囡囡食品店", "经度": 112.986928, "纬度": 28.185377, "参考值1": 2.61, "参考值2": 200, "参考值3": 0.37 }, "geometry": { "type": "Point", "coordinates": [ 112.980360595743221, 28.179720124438301 ] } }, { "type": "Feature", "properties": { "id": 1275, "geom": "SRID=4326;POINT(112.98202 28.179535)", "零售户": "长沙市天心区庆波日用品商店", "经度": 112.98202, "纬度": 28.179535, "参考值1": 2.63, "参考值2": 227, "参考值3": 0.37 }, "geometry": { "type": "Point", "coordinates": [ 112.975456867820967, 28.173869401282332 ] } }, { "type": "Feature", "properties": { "id": 1276, "geom": "SRID=4326;POINT(113.00453 28.145129)", "零售户": "长沙市天心区春佩食品店", "经度": 113.00453, "纬度": 28.145129, "参考值1": 2.64, "参考值2": 208, "参考值3": 0.37 }, "geometry": { "type": "Point", "coordinates": [ 112.997979603097164, 28.139327604313202 ] } }, { "type": "Feature", "properties": { "id": 1277, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区胡毅豆腐店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 2.59, "参考值2": 228, "参考值3": 0.37 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1279, "geom": "SRID=4326;POINT(112.981315 28.18678)", "零售户": "长沙市天心区俊德食品店", "经度": 112.981315, "纬度": 28.18678, "参考值1": 2.58, "参考值2": 205, "参考值3": 0.37 }, "geometry": { "type": "Point", "coordinates": [ 112.974749949060921, 28.181110600467758 ] } }, { "type": "Feature", "properties": { "id": 1285, "geom": "SRID=4326;POINT(112.99143 28.153547)", "零售户": "长沙市天心区南果便利店", "经度": 112.99143, "纬度": 28.153547, "参考值1": 2.61, "参考值2": 189, "参考值3": 0.36 }, "geometry": { "type": "Point", "coordinates": [ 112.984855825409099, 28.147876585596919 ] } }, { "type": "Feature", "properties": { "id": 1287, "geom": "SRID=4326;POINT(112.996539 28.091528)", "零售户": "长沙市天心区安定生活超市", "经度": 112.996539, "纬度": 28.091528, "参考值1": 2.49, "参考值2": 137, "参考值3": 0.36 }, "geometry": { "type": "Point", "coordinates": [ 112.989960577620991, 28.08581983289924 ] } }, { "type": "Feature", "properties": { "id": 1288, "geom": "SRID=4326;POINT(112.985423 28.113176)", "零售户": "长沙市天心区醉食源商行", "经度": 112.985423, "纬度": 28.113176, "参考值1": 2.56, "参考值2": 166, "参考值3": 0.36 }, "geometry": { "type": "Point", "coordinates": [ 112.978819615403225, 28.107509622036108 ] } }, { "type": "Feature", "properties": { "id": 1289, "geom": "SRID=4326;POINT(112.976276 28.186845)", "零售户": "长沙市天心区蒋国军粮油店", "经度": 112.976276, "纬度": 28.186845, "参考值1": 2.57, "参考值2": 228, "参考值3": 0.36 }, "geometry": { "type": "Point", "coordinates": [ 112.969719644361192, 28.181140577486666 ] } }, { "type": "Feature", "properties": { "id": 1290, "geom": "SRID=4326;POINT(112.967088 28.116005)", "零售户": "长沙市天心区发平便利店", "经度": 112.967088, "纬度": 28.116005, "参考值1": 2.57, "参考值2": 227, "参考值3": 0.36 }, "geometry": { "type": "Point", "coordinates": [ 112.960524198618785, 28.110178564979908 ] } }, { "type": "Feature", "properties": { "id": 1292, "geom": "SRID=4326;POINT(112.983669 28.189782)", "零售户": "长沙市天心区蒋国玉食杂店", "经度": 112.983669, "纬度": 28.189782, "参考值1": 2.39, "参考值2": 162, "参考值3": 0.36 }, "geometry": { "type": "Point", "coordinates": [ 112.977099943556652, 28.184120848924877 ] } }, { "type": "Feature", "properties": { "id": 1293, "geom": "SRID=4326;POINT(112.989292 28.084306)", "零售户": "长沙市天心区小六子便利店", "经度": 112.989292, "纬度": 28.084306, "参考值1": 2.53, "参考值2": 226, "参考值3": 0.36 }, "geometry": { "type": "Point", "coordinates": [ 112.982710382408996, 28.078641760128228 ] } }, { "type": "Feature", "properties": { "id": 1294, "geom": "SRID=4326;POINT(112.943377 28.086724)", "零售户": "长沙市天心区彬晽便利店", "经度": 112.943377, "纬度": 28.086724, "参考值1": 2.44, "参考值2": 197, "参考值3": 0.35 }, "geometry": { "type": "Point", "coordinates": [ 112.936929700051266, 28.080508905291023 ] } }, { "type": "Feature", "properties": { "id": 1295, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区琪秋食品店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 2.39, "参考值2": 163, "参考值3": 0.35 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1296, "geom": "SRID=4326;POINT(112.986357 28.041941)", "零售户": "长沙市天心区富惠超市", "经度": 112.986357, "纬度": 28.041941, "参考值1": 2.56, "参考值2": 152, "参考值3": 0.35 }, "geometry": { "type": "Point", "coordinates": [ 112.979787279207017, 28.036283499671146 ] } }, { "type": "Feature", "properties": { "id": 1297, "geom": "SRID=4326;POINT(112.985399 28.188548)", "零售户": "长沙市天心区铁华食品店", "经度": 112.985399, "纬度": 28.188548, "参考值1": 2.56, "参考值2": 215, "参考值3": 0.35 }, "geometry": { "type": "Point", "coordinates": [ 112.978829957857116, 28.182890206511324 ] } }, { "type": "Feature", "properties": { "id": 1299, "geom": "SRID=4326;POINT(112.979363 28.187071)", "零售户": "长沙市天心区波水食品店", "经度": 112.979363, "纬度": 28.187071, "参考值1": 2.53, "参考值2": 194, "参考值3": 0.35 }, "geometry": { "type": "Point", "coordinates": [ 112.972800526322374, 28.181390578205669 ] } }, { "type": "Feature", "properties": { "id": 1300, "geom": "SRID=4326;POINT(112.981397 28.174821)", "零售户": "长沙市天心区品耀便利店", "经度": 112.981397, "纬度": 28.174821, "参考值1": 2.54, "参考值2": 209, "参考值3": 0.35 }, "geometry": { "type": "Point", "coordinates": [ 112.974834860589624, 28.169152727596387 ] } }, { "type": "Feature", "properties": { "id": 1302, "geom": "SRID=4326;POINT(112.997912 28.095365)", "零售户": "长沙市天心区乐悦便利店", "经度": 112.997912, "纬度": 28.095365, "参考值1": 2.49, "参考值2": 181, "参考值3": 0.35 }, "geometry": { "type": "Point", "coordinates": [ 112.991333192440266, 28.0896429668257 ] } }, { "type": "Feature", "properties": { "id": 1305, "geom": "SRID=4326;POINT(112.991641 28.175603)", "零售户": "长沙市天心区肖宗长经营部", "经度": 112.991641, "纬度": 28.175603, "参考值1": 2.34, "参考值2": 196, "参考值3": 0.34 }, "geometry": { "type": "Point", "coordinates": [ 112.985078935727032, 28.169934586414833 ] } }, { "type": "Feature", "properties": { "id": 1307, "geom": "SRID=4326;POINT(112.996539 28.091528)", "零售户": "长沙市天心区四环内便利店", "经度": 112.996539, "纬度": 28.091528, "参考值1": 2.25, "参考值2": 108, "参考值3": 0.34 }, "geometry": { "type": "Point", "coordinates": [ 112.989960577620991, 28.08581983289924 ] } }, { "type": "Feature", "properties": { "id": 1308, "geom": "SRID=4326;POINT(112.978064 28.192551)", "零售户": "长沙市天心区瑞永烟酒店", "经度": 112.978064, "纬度": 28.192551, "参考值1": 2.48, "参考值2": 242, "参考值3": 0.34 }, "geometry": { "type": "Point", "coordinates": [ 112.971500118888287, 28.186860521090857 ] } }, { "type": "Feature", "properties": { "id": 1311, "geom": "SRID=4326;POINT(112.990559 28.166239)", "零售户": "长沙市天心区行建食品店", "经度": 112.990559, "纬度": 28.166239, "参考值1": 2.42, "参考值2": 170, "参考值3": 0.34 }, "geometry": { "type": "Point", "coordinates": [ 112.983993346011488, 28.160574544666769 ] } }, { "type": "Feature", "properties": { "id": 1313, "geom": "SRID=4326;POINT(113.006867 28.127739)", "零售户": "长沙市天心区道彧迎食品店", "经度": 113.006867, "纬度": 28.127739, "参考值1": 2.4, "参考值2": 171, "参考值3": 0.34 }, "geometry": { "type": "Point", "coordinates": [ 113.000310373103616, 28.121898882075321 ] } }, { "type": "Feature", "properties": { "id": 1314, "geom": "SRID=4326;POINT(112.986993 28.111206)", "零售户": "长沙市天心区蹚蹚便利店", "经度": 112.986993, "纬度": 28.111206, "参考值1": 2.36, "参考值2": 146, "参考值3": 0.34 }, "geometry": { "type": "Point", "coordinates": [ 112.98038991172325, 28.105540151597651 ] } }, { "type": "Feature", "properties": { "id": 1315, "geom": "SRID=4326;POINT(112.967088 28.116005)", "零售户": "长沙市天心区欢和烟酒商行", "经度": 112.967088, "纬度": 28.116005, "参考值1": 2.42, "参考值2": 190, "参考值3": 0.34 }, "geometry": { "type": "Point", "coordinates": [ 112.960524198618785, 28.110178564979908 ] } }, { "type": "Feature", "properties": { "id": 1316, "geom": "SRID=4326;POINT(112.986866 28.186311)", "零售户": "长沙市天心区腾欢超市", "经度": 112.986866, "纬度": 28.186311, "参考值1": 2.32, "参考值2": 146, "参考值3": 0.33 }, "geometry": { "type": "Point", "coordinates": [ 112.980298119475805, 28.180654030592784 ] } }, { "type": "Feature", "properties": { "id": 1317, "geom": "SRID=4326;POINT(112.986993 28.111206)", "零售户": "长沙市天心区王余意便利店", "经度": 112.986993, "纬度": 28.111206, "参考值1": 2.32, "参考值2": 179, "参考值3": 0.33 }, "geometry": { "type": "Point", "coordinates": [ 112.98038991172325, 28.105540151597651 ] } }, { "type": "Feature", "properties": { "id": 1319, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区三进食品店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 2.36, "参考值2": 250, "参考值3": 0.33 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1320, "geom": "SRID=4326;POINT(112.989469 28.188861)", "零售户": "长少市天心区家储食品店", "经度": 112.989469, "纬度": 28.188861, "参考值1": 2.31, "参考值2": 171, "参考值3": 0.32 }, "geometry": { "type": "Point", "coordinates": [ 112.982900639784432, 28.183199645311138 ] } }, { "type": "Feature", "properties": { "id": 1321, "geom": "SRID=4326;POINT(112.980247 28.191156)", "零售户": "长沙市天心区兴旺平食品商店", "经度": 112.980247, "纬度": 28.191156, "参考值1": 2.25, "参考值2": 173, "参考值3": 0.32 }, "geometry": { "type": "Point", "coordinates": [ 112.97368054469932, 28.185480312776011 ] } }, { "type": "Feature", "properties": { "id": 1322, "geom": "SRID=4326;POINT(112.973357 28.133322)", "零售户": "长沙市天心区王运清百货商行", "经度": 112.973357, "纬度": 28.133322, "参考值1": 2.24, "参考值2": 186, "参考值3": 0.32 }, "geometry": { "type": "Point", "coordinates": [ 112.966779864541081, 28.127580793568224 ] } }, { "type": "Feature", "properties": { "id": 1323, "geom": "SRID=4326;POINT(112.997912 28.095365)", "零售户": "长沙市天心区淋汪便利店", "经度": 112.997912, "纬度": 28.095365, "参考值1": 2.35, "参考值2": 200, "参考值3": 0.32 }, "geometry": { "type": "Point", "coordinates": [ 112.991333192440266, 28.0896429668257 ] } }, { "type": "Feature", "properties": { "id": 1324, "geom": "SRID=4326;POINT(112.97614 28.192277)", "零售户": "长沙市天心区元平食品店", "经度": 112.97614, "纬度": 28.192277, "参考值1": 2.24, "参考值2": 193, "参考值3": 0.32 }, "geometry": { "type": "Point", "coordinates": [ 112.969580353477511, 28.186570444745467 ] } }, { "type": "Feature", "properties": { "id": 1325, "geom": "SRID=4326;POINT(112.977782 28.182931)", "零售户": "长沙市天心区旺雨便利店", "经度": 112.977782, "纬度": 28.182931, "参考值1": 2.19, "参考值2": 122, "参考值3": 0.32 }, "geometry": { "type": "Point", "coordinates": [ 112.971224265288981, 28.177239738088019 ] } }, { "type": "Feature", "properties": { "id": 1326, "geom": "SRID=4326;POINT(112.983527 28.186071)", "零售户": "长沙市天心区凤尧烟酒店", "经度": 112.983527, "纬度": 28.186071, "参考值1": 2.28, "参考值2": 200, "参考值3": 0.32 }, "geometry": { "type": "Point", "coordinates": [ 112.976960250914502, 28.180410015651784 ] } }, { "type": "Feature", "properties": { "id": 1327, "geom": "SRID=4326;POINT(112.979523 28.129128)", "零售户": "长沙市天心区佳兵烟酒商行", "经度": 112.979523, "纬度": 28.129128, "参考值1": 2.22, "参考值2": 136, "参考值3": 0.32 }, "geometry": { "type": "Point", "coordinates": [ 112.972929197189217, 28.123440819941838 ] } }, { "type": "Feature", "properties": { "id": 1328, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区贺芳超市", "经度": 112.996195, "纬度": 28.144471, "参考值1": 2.24, "参考值2": 185, "参考值3": 0.32 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1329, "geom": "SRID=4326;POINT(112.995867 28.148635)", "零售户": "长沙市天心区木桐酒庄", "经度": 112.995867, "纬度": 28.148635, "参考值1": 2.1, "参考值2": 99, "参考值3": 0.31 }, "geometry": { "type": "Point", "coordinates": [ 112.989295193247443, 28.142934674785611 ] } }, { "type": "Feature", "properties": { "id": 1330, "geom": "SRID=4326;POINT(112.978157 28.179159)", "零售户": "长沙市天心区泽淳便利店", "经度": 112.978157, "纬度": 28.179159, "参考值1": 2.24, "参考值2": 201, "参考值3": 0.31 }, "geometry": { "type": "Point", "coordinates": [ 112.971599557811714, 28.173470862074552 ] } }, { "type": "Feature", "properties": { "id": 1332, "geom": "SRID=4326;POINT(112.978345 28.15766)", "零售户": "长沙市天心区永宗便利店", "经度": 112.978345, "纬度": 28.15766, "参考值1": 2.21, "参考值2": 202, "参考值3": 0.31 }, "geometry": { "type": "Point", "coordinates": [ 112.971779253011661, 28.151971258137365 ] } }, { "type": "Feature", "properties": { "id": 1333, "geom": "SRID=4326;POINT(112.976756 28.18369)", "零售户": "长沙市天心区宪思食品店", "经度": 112.976756, "纬度": 28.18369, "参考值1": 2.22, "参考值2": 214, "参考值3": 0.31 }, "geometry": { "type": "Point", "coordinates": [ 112.970200085414291, 28.177990203387278 ] } }, { "type": "Feature", "properties": { "id": 1335, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区罗胖子名烟名酒", "经度": 112.978226, "纬度": 28.139107, "参考值1": 2.25, "参考值2": 192, "参考值3": 0.31 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 1336, "geom": "SRID=4326;POINT(112.981996 28.181143)", "零售户": "长沙市天心区骞芳食品店", "经度": 112.981996, "纬度": 28.181143, "参考值1": 2.24, "参考值2": 206, "参考值3": 0.31 }, "geometry": { "type": "Point", "coordinates": [ 112.975432519918414, 28.175477210463967 ] } }, { "type": "Feature", "properties": { "id": 1337, "geom": "SRID=4326;POINT(112.990804 28.138328)", "零售户": "长沙市天心区芯鑫便利店", "经度": 112.990804, "纬度": 28.138328, "参考值1": 2.19, "参考值2": 209, "参考值3": 0.31 }, "geometry": { "type": "Point", "coordinates": [ 112.984214148486714, 28.132656492766671 ] } }, { "type": "Feature", "properties": { "id": 1338, "geom": "SRID=4326;POINT(112.992169 28.147195)", "零售户": "长沙市天心区勤恳食品商行", "经度": 112.992169, "纬度": 28.147195, "参考值1": 2.16, "参考值2": 164, "参考值3": 0.31 }, "geometry": { "type": "Point", "coordinates": [ 112.985589481385361, 28.14151943622317 ] } }, { "type": "Feature", "properties": { "id": 1340, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区再博食品店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 2.21, "参考值2": 177, "参考值3": 0.31 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1342, "geom": "SRID=4326;POINT(112.978721 28.199298)", "零售户": "长沙市天心区仁浩食品店", "经度": 112.978721, "纬度": 28.199298, "参考值1": 2.15, "参考值2": 199, "参考值3": 0.3 }, "geometry": { "type": "Point", "coordinates": [ 112.972150009666137, 28.193610854765112 ] } }, { "type": "Feature", "properties": { "id": 1345, "geom": "SRID=4326;POINT(113.007715 28.129895)", "零售户": "长沙市天心区吴干耀烟草店", "经度": 113.007715, "纬度": 28.129895, "参考值1": 2.17, "参考值2": 197, "参考值3": 0.3 }, "geometry": { "type": "Point", "coordinates": [ 113.001163050557267, 28.124041887060173 ] } }, { "type": "Feature", "properties": { "id": 1349, "geom": "SRID=4326;POINT(112.999679 28.066093)", "零售户": "长沙市天心区庆朗蔬果超市", "经度": 112.999679, "纬度": 28.066093, "参考值1": 2.12, "参考值2": 181, "参考值3": 0.3 }, "geometry": { "type": "Point", "coordinates": [ 112.993130841176679, 28.060358588311317 ] } }, { "type": "Feature", "properties": { "id": 1352, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区康同便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 2.12, "参考值2": 189, "参考值3": 0.3 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1353, "geom": "SRID=4326;POINT(112.981092 28.17875)", "零售户": "长沙市天心区欣妍便利店", "经度": 112.981092, "纬度": 28.17875, "参考值1": 2.13, "参考值2": 177, "参考值3": 0.3 }, "geometry": { "type": "Point", "coordinates": [ 112.974530051949785, 28.173080215834382 ] } }, { "type": "Feature", "properties": { "id": 1356, "geom": "SRID=4326;POINT(112.985974 28.184009)", "零售户": "长沙市天心区禹鸿食品店", "经度": 112.985974, "纬度": 28.184009, "参考值1": 2.13, "参考值2": 164, "参考值3": 0.3 }, "geometry": { "type": "Point", "coordinates": [ 112.979407221639974, 28.178352230353866 ] } }, { "type": "Feature", "properties": { "id": 1358, "geom": "SRID=4326;POINT(112.977237 28.131744)", "零售户": "长沙市天心区佳易超市", "经度": 112.977237, "纬度": 28.131744, "参考值1": 2.13, "参考值2": 155, "参考值3": 0.3 }, "geometry": { "type": "Point", "coordinates": [ 112.970649175214916, 28.126040544555099 ] } }, { "type": "Feature", "properties": { "id": 1359, "geom": "SRID=4326;POINT(113.000348 28.123145)", "零售户": "长沙市天心区三湖便利店", "经度": 113.000348, "纬度": 28.123145, "参考值1": 2.08, "参考值2": 136, "参考值3": 0.3 }, "geometry": { "type": "Point", "coordinates": [ 112.993766801439293, 28.11739421404857 ] } }, { "type": "Feature", "properties": { "id": 1360, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区旺熙食品店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 2.18, "参考值2": 172, "参考值3": 0.3 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1361, "geom": "SRID=4326;POINT(113.001881 28.132227)", "零售户": "长沙市天心区金角便利店", "经度": 113.001881, "纬度": 28.132227, "参考值1": 2.09, "参考值2": 160, "参考值3": 0.3 }, "geometry": { "type": "Point", "coordinates": [ 112.995309723064963, 28.126458680547415 ] } }, { "type": "Feature", "properties": { "id": 1362, "geom": "SRID=4326;POINT(112.981397 28.174821)", "零售户": "长沙市天心区群亮便利店", "经度": 112.981397, "纬度": 28.174821, "参考值1": 2.1, "参考值2": 188, "参考值3": 0.3 }, "geometry": { "type": "Point", "coordinates": [ 112.974834860589624, 28.169152727596387 ] } }, { "type": "Feature", "properties": { "id": 1363, "geom": "SRID=4326;POINT(112.980226 28.188356)", "零售户": "长沙市天心区屹建食品综合经", "经度": 112.980226, "纬度": 28.188356, "参考值1": 2.07, "参考值2": 176, "参考值3": 0.29 }, "geometry": { "type": "Point", "coordinates": [ 112.973661457485306, 28.182680660055546 ] } }, { "type": "Feature", "properties": { "id": 1365, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区贺家便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 2.12, "参考值2": 165, "参考值3": 0.29 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1367, "geom": "SRID=4326;POINT(112.988264 28.18872)", "零售户": "长沙市天心区碧天烟店", "经度": 112.988264, "纬度": 28.18872, "参考值1": 2.12, "参考值2": 186, "参考值3": 0.29 }, "geometry": { "type": "Point", "coordinates": [ 112.981695069931291, 28.183061306573002 ] } }, { "type": "Feature", "properties": { "id": 1368, "geom": "SRID=4326;POINT(112.987381 28.148761)", "零售户": "长沙市天心区雄坤便利店", "经度": 112.987381, "纬度": 28.148761, "参考值1": 2.0, "参考值2": 178, "参考值3": 0.29 }, "geometry": { "type": "Point", "coordinates": [ 112.980799456839179, 28.143100278392382 ] } }, { "type": "Feature", "properties": { "id": 1370, "geom": "SRID=4326;POINT(112.999479 28.131879)", "零售户": "长沙市天心区速来便利店", "经度": 112.999479, "纬度": 28.131879, "参考值1": 2.07, "参考值2": 200, "参考值3": 0.29 }, "geometry": { "type": "Point", "coordinates": [ 112.992900290154509, 28.126139415207803 ] } }, { "type": "Feature", "properties": { "id": 1373, "geom": "SRID=4326;POINT(112.985468 28.186698)", "零售户": "长沙市天心区贺立满烟店", "经度": 112.985468, "纬度": 28.186698, "参考值1": 2.0, "参考值2": 187, "参考值3": 0.29 }, "geometry": { "type": "Point", "coordinates": [ 112.978900020630391, 28.181040542772379 ] } }, { "type": "Feature", "properties": { "id": 1375, "geom": "SRID=4326;POINT(112.989292 28.084306)", "零售户": "长沙市天心区荣鹏便利店", "经度": 112.989292, "纬度": 28.084306, "参考值1": 2.02, "参考值2": 154, "参考值3": 0.28 }, "geometry": { "type": "Point", "coordinates": [ 112.982710382408996, 28.078641760128228 ] } }, { "type": "Feature", "properties": { "id": 1376, "geom": "SRID=4326;POINT(112.977964 28.192442)", "零售户": "长沙市天心区超德烟店", "经度": 112.977964, "纬度": 28.192442, "参考值1": 2.0, "参考值2": 200, "参考值3": 0.28 }, "geometry": { "type": "Point", "coordinates": [ 112.971400393705665, 28.186750779030781 ] } }, { "type": "Feature", "properties": { "id": 1378, "geom": "SRID=4326;POINT(112.982096 28.186036)", "零售户": "长沙市天心区左丹食品店", "经度": 112.982096, "纬度": 28.186036, "参考值1": 2.02, "参考值2": 153, "参考值3": 0.28 }, "geometry": { "type": "Point", "coordinates": [ 112.975530484360206, 28.1803701430118 ] } }, { "type": "Feature", "properties": { "id": 1381, "geom": "SRID=4326;POINT(112.995261 28.068772)", "零售户": "长沙市天心区白荷食品店", "经度": 112.995261, "纬度": 28.068772, "参考值1": 1.99, "参考值2": 170, "参考值3": 0.28 }, "geometry": { "type": "Point", "coordinates": [ 112.988700744204166, 28.06307970564572 ] } }, { "type": "Feature", "properties": { "id": 1383, "geom": "SRID=4326;POINT(112.97205 28.111479)", "零售户": "长沙市天心区燕文烟业商行", "经度": 112.97205, "纬度": 28.111479, "参考值1": 2.0, "参考值2": 172, "参考值3": 0.28 }, "geometry": { "type": "Point", "coordinates": [ 112.965469819936729, 28.105720742649307 ] } }, { "type": "Feature", "properties": { "id": 1386, "geom": "SRID=4326;POINT(112.989962 28.175053)", "零售户": "长沙市天心区姚英平价便利店", "经度": 112.989962, "纬度": 28.175053, "参考值1": 1.94, "参考值2": 156, "参考值3": 0.28 }, "geometry": { "type": "Point", "coordinates": [ 112.983398259037074, 28.169391229152804 ] } }, { "type": "Feature", "properties": { "id": 1387, "geom": "SRID=4326;POINT(112.991016 28.130404)", "零售户": "长沙市天心区嘴莫庭食品店", "经度": 112.991016, "纬度": 28.130404, "参考值1": 1.95, "参考值2": 135, "参考值3": 0.28 }, "geometry": { "type": "Point", "coordinates": [ 112.984419829220798, 28.124730000691379 ] } }, { "type": "Feature", "properties": { "id": 1392, "geom": "SRID=4326;POINT(112.979135 28.17827)", "零售户": "长沙市天心区雅屿便利店", "经度": 112.979135, "纬度": 28.17827, "参考值1": 2.02, "参考值2": 160, "参考值3": 0.27 }, "geometry": { "type": "Point", "coordinates": [ 112.972575958332499, 28.172588833322667 ] } }, { "type": "Feature", "properties": { "id": 1393, "geom": "SRID=4326;POINT(112.984407 28.177728)", "零售户": "长沙市天心区文玲水果店", "经度": 112.984407, "纬度": 28.177728, "参考值1": 1.91, "参考值2": 156, "参考值3": 0.27 }, "geometry": { "type": "Point", "coordinates": [ 112.977842317707271, 28.172069719584695 ] } }, { "type": "Feature", "properties": { "id": 1394, "geom": "SRID=4326;POINT(112.980177 28.191177)", "零售户": "长沙市天心区静霞食品店", "经度": 112.980177, "纬度": 28.191177, "参考值1": 1.97, "参考值2": 156, "参考值3": 0.27 }, "geometry": { "type": "Point", "coordinates": [ 112.973610629622812, 28.185500907150043 ] } }, { "type": "Feature", "properties": { "id": 1395, "geom": "SRID=4326;POINT(112.991641 28.175603)", "零售户": "长沙市天心区平智食品店", "经度": 112.991641, "纬度": 28.175603, "参考值1": 1.92, "参考值2": 141, "参考值3": 0.27 }, "geometry": { "type": "Point", "coordinates": [ 112.985078935727032, 28.169934586414833 ] } }, { "type": "Feature", "properties": { "id": 1396, "geom": "SRID=4326;POINT(112.976484 28.176462)", "零售户": "长沙市天心区蒋友柱烟店", "经度": 112.976484, "纬度": 28.176462, "参考值1": 1.89, "参考值2": 158, "参考值3": 0.27 }, "geometry": { "type": "Point", "coordinates": [ 112.969930246105534, 28.170760200168051 ] } }, { "type": "Feature", "properties": { "id": 1398, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区罗德庚粮油店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 1.89, "参考值2": 204, "参考值3": 0.27 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1399, "geom": "SRID=4326;POINT(112.982922 28.156645)", "零售户": "长沙市天心区金水济便利店", "经度": 112.982922, "纬度": 28.156645, "参考值1": 1.88, "参考值2": 152, "参考值3": 0.27 }, "geometry": { "type": "Point", "coordinates": [ 112.976349290534216, 28.150980556565408 ] } }, { "type": "Feature", "properties": { "id": 1401, "geom": "SRID=4326;POINT(112.999459 28.065801)", "零售户": "长沙市天心区莉珊烟店", "经度": 112.999459, "纬度": 28.065801, "参考值1": 1.87, "参考值2": 158, "参考值3": 0.27 }, "geometry": { "type": "Point", "coordinates": [ 112.992910376570563, 28.060069092715811 ] } }, { "type": "Feature", "properties": { "id": 1404, "geom": "SRID=4326;POINT(112.983669 28.189782)", "零售户": "长沙市天心区刘满秀便利店", "经度": 112.983669, "纬度": 28.189782, "参考值1": 2.1, "参考值2": 170, "参考值3": 0.26 }, "geometry": { "type": "Point", "coordinates": [ 112.977099943556652, 28.184120848924877 ] } }, { "type": "Feature", "properties": { "id": 1406, "geom": "SRID=4326;POINT(112.995261 28.068772)", "零售户": "长沙市天心区果子真逗水果店", "经度": 112.995261, "纬度": 28.068772, "参考值1": 1.86, "参考值2": 142, "参考值3": 0.26 }, "geometry": { "type": "Point", "coordinates": [ 112.988700744204166, 28.06307970564572 ] } }, { "type": "Feature", "properties": { "id": 1407, "geom": "SRID=4326;POINT(112.97791 28.199334)", "零售户": "佳菲烟店", "经度": 112.97791, "纬度": 28.199334, "参考值1": 1.83, "参考值2": 133, "参考值3": 0.26 }, "geometry": { "type": "Point", "coordinates": [ 112.97134046756851, 28.193640864094743 ] } }, { "type": "Feature", "properties": { "id": 1408, "geom": "SRID=4326;POINT(112.9794 28.17147)", "零售户": "长沙市天心区森南便利店", "经度": 112.9794, "纬度": 28.17147, "参考值1": 1.87, "参考值2": 165, "参考值3": 0.26 }, "geometry": { "type": "Point", "coordinates": [ 112.972840137641839, 28.165790470204957 ] } }, { "type": "Feature", "properties": { "id": 1409, "geom": "SRID=4326;POINT(112.976712 28.17192)", "零售户": "长沙市天心区旺雨便利店", "经度": 112.976712, "纬度": 28.17192, "参考值1": 1.88, "参考值2": 144, "参考值3": 0.26 }, "geometry": { "type": "Point", "coordinates": [ 112.970157322747653, 28.166220096394539 ] } }, { "type": "Feature", "properties": { "id": 1411, "geom": "SRID=4326;POINT(112.977458 28.185995)", "零售户": "长沙市天心区玲佩食品店", "经度": 112.977458, "纬度": 28.185995, "参考值1": 1.84, "参考值2": 137, "参考值3": 0.26 }, "geometry": { "type": "Point", "coordinates": [ 112.970899566587292, 28.180300827121819 ] } }, { "type": "Feature", "properties": { "id": 1412, "geom": "SRID=4326;POINT(112.984163 28.156751)", "零售户": "长沙市天心区伊满超市", "经度": 112.984163, "纬度": 28.156751, "参考值1": 1.73, "参考值2": 157, "参考值3": 0.26 }, "geometry": { "type": "Point", "coordinates": [ 112.977589535228987, 28.151089979147201 ] } }, { "type": "Feature", "properties": { "id": 1413, "geom": "SRID=4326;POINT(113.003283 28.122026)", "零售户": "长沙市天心区品尊烟酒店", "经度": 113.003283, "纬度": 28.122026, "参考值1": 1.82, "参考值2": 96, "参考值3": 0.26 }, "geometry": { "type": "Point", "coordinates": [ 112.996710726352433, 28.116237722114921 ] } }, { "type": "Feature", "properties": { "id": 1417, "geom": "SRID=4326;POINT(112.983604 28.17487)", "零售户": "长沙市天心区俊之香烟酒店", "经度": 112.983604, "纬度": 28.17487, "参考值1": 1.85, "参考值2": 142, "参考值3": 0.26 }, "geometry": { "type": "Point", "coordinates": [ 112.97703983448281, 28.169209872247997 ] } }, { "type": "Feature", "properties": { "id": 1420, "geom": "SRID=4326;POINT(112.991641 28.175603)", "零售户": "长沙市天心区建设综合经营部", "经度": 112.991641, "纬度": 28.175603, "参考值1": 1.82, "参考值2": 159, "参考值3": 0.26 }, "geometry": { "type": "Point", "coordinates": [ 112.985078935727032, 28.169934586414833 ] } }, { "type": "Feature", "properties": { "id": 1422, "geom": "SRID=4326;POINT(112.976315 28.153307)", "零售户": "长沙市天心区添庆自选商店", "经度": 112.976315, "纬度": 28.153307, "参考值1": 1.83, "参考值2": 159, "参考值3": 0.26 }, "geometry": { "type": "Point", "coordinates": [ 112.969749528227936, 28.147600654095836 ] } }, { "type": "Feature", "properties": { "id": 1424, "geom": "SRID=4326;POINT(112.979587 28.189073)", "零售户": "长沙市天心区淑兰食品店", "经度": 112.979587, "纬度": 28.189073, "参考值1": 1.74, "参考值2": 117, "参考值3": 0.26 }, "geometry": { "type": "Point", "coordinates": [ 112.973022962790992, 28.183393708788408 ] } }, { "type": "Feature", "properties": { "id": 1426, "geom": "SRID=4326;POINT(112.995021 28.090515)", "零售户": "长沙市天心区忠心综合商店", "经度": 112.995021, "纬度": 28.090515, "参考值1": 1.78, "参考值2": 161, "参考值3": 0.25 }, "geometry": { "type": "Point", "coordinates": [ 112.988440447651485, 28.084819654650509 ] } }, { "type": "Feature", "properties": { "id": 1427, "geom": "SRID=4326;POINT(112.985837 28.108201)", "零售户": "长沙市天心区水润食品店", "经度": 112.985837, "纬度": 28.108201, "参考值1": 1.75, "参考值2": 129, "参考值3": 0.25 }, "geometry": { "type": "Point", "coordinates": [ 112.979234930958938, 28.102535302927823 ] } }, { "type": "Feature", "properties": { "id": 1428, "geom": "SRID=4326;POINT(112.959846 28.051646)", "零售户": "长沙市天心区向家桥综合超市", "经度": 112.959846, "纬度": 28.051646, "参考值1": 1.8, "参考值2": 158, "参考值3": 0.25 }, "geometry": { "type": "Point", "coordinates": [ 112.95335024319283, 28.045709758587833 ] } }, { "type": "Feature", "properties": { "id": 1433, "geom": "SRID=4326;POINT(112.982127 28.150709)", "零售户": "长沙市天心区蔡建纯烟酒店", "经度": 112.982127, "纬度": 28.150709, "参考值1": 1.85, "参考值2": 226, "参考值3": 0.25 }, "geometry": { "type": "Point", "coordinates": [ 112.975549505724359, 28.145040261046898 ] } }, { "type": "Feature", "properties": { "id": 1435, "geom": "SRID=4326;POINT(113.00895 28.018441)", "零售户": "长沙市天心区邹苗便利店", "经度": 113.00895, "纬度": 28.018441, "参考值1": 1.71, "参考值2": 112, "参考值3": 0.25 }, "geometry": { "type": "Point", "coordinates": [ 113.002410152896147, 28.012569696711445 ] } }, { "type": "Feature", "properties": { "id": 1436, "geom": "SRID=4326;POINT(112.965059 28.057616)", "零售户": "长沙市天心区优逅超市", "经度": 112.965059, "纬度": 28.057616, "参考值1": 1.78, "参考值2": 157, "参考值3": 0.25 }, "geometry": { "type": "Point", "coordinates": [ 112.958541876812802, 28.051767636981545 ] } }, { "type": "Feature", "properties": { "id": 1437, "geom": "SRID=4326;POINT(112.995261 28.068772)", "零售户": "长沙市天心区嘉涛便利店", "经度": 112.995261, "纬度": 28.068772, "参考值1": 1.82, "参考值2": 124, "参考值3": 0.25 }, "geometry": { "type": "Point", "coordinates": [ 112.988700744204166, 28.06307970564572 ] } }, { "type": "Feature", "properties": { "id": 1438, "geom": "SRID=4326;POINT(112.979353 28.153548)", "零售户": "长沙市天心区威哥小桥便利店", "经度": 112.979353, "纬度": 28.153548, "参考值1": 1.73, "参考值2": 144, "参考值3": 0.25 }, "geometry": { "type": "Point", "coordinates": [ 112.972781872472439, 28.14786532502324 ] } }, { "type": "Feature", "properties": { "id": 1441, "geom": "SRID=4326;POINT(112.977438 28.184915)", "零售户": "长沙市天心区海广食品店", "经度": 112.977438, "纬度": 28.184915, "参考值1": 1.71, "参考值2": 143, "参考值3": 0.24 }, "geometry": { "type": "Point", "coordinates": [ 112.970880131180962, 28.179220794956176 ] } }, { "type": "Feature", "properties": { "id": 1442, "geom": "SRID=4326;POINT(112.978939 28.196076)", "零售户": "长沙市天心区虢记烟店", "经度": 112.978939, "纬度": 28.196076, "参考值1": 1.74, "参考值2": 159, "参考值3": 0.24 }, "geometry": { "type": "Point", "coordinates": [ 112.972370606169363, 28.190391107208278 ] } }, { "type": "Feature", "properties": { "id": 1444, "geom": "SRID=4326;POINT(113.0007 28.138042)", "零售户": "长沙市天心区闯保烟酒店", "经度": 113.0007, "纬度": 28.138042, "参考值1": 1.68, "参考值2": 98, "参考值3": 0.24 }, "geometry": { "type": "Point", "coordinates": [ 112.994130021233474, 28.132289568429311 ] } }, { "type": "Feature", "properties": { "id": 1446, "geom": "SRID=4326;POINT(112.981092 28.17875)", "零售户": "长沙市天心区立早食品店", "经度": 112.981092, "纬度": 28.17875, "参考值1": 1.63, "参考值2": 134, "参考值3": 0.24 }, "geometry": { "type": "Point", "coordinates": [ 112.974530051949785, 28.173080215834382 ] } }, { "type": "Feature", "properties": { "id": 1449, "geom": "SRID=4326;POINT(112.999105 28.138695)", "零售户": "长沙市天心区鱼鱼食品店", "经度": 112.999105, "纬度": 28.138695, "参考值1": 1.66, "参考值2": 94, "参考值3": 0.24 }, "geometry": { "type": "Point", "coordinates": [ 112.99253108218474, 28.132960987054481 ] } }, { "type": "Feature", "properties": { "id": 1455, "geom": "SRID=4326;POINT(112.952708 28.163612)", "零售户": "长沙市天心区荣友食品商行", "经度": 112.952708, "纬度": 28.163612, "参考值1": 1.72, "参考值2": 142, "参考值3": 0.24 }, "geometry": { "type": "Point", "coordinates": [ 112.946240126829437, 28.157549020588661 ] } }, { "type": "Feature", "properties": { "id": 1456, "geom": "SRID=4326;POINT(112.97205 28.111479)", "零售户": "长沙市天心区志权便利店", "经度": 112.97205, "纬度": 28.111479, "参考值1": 1.71, "参考值2": 134, "参考值3": 0.24 }, "geometry": { "type": "Point", "coordinates": [ 112.965469819936729, 28.105720742649307 ] } }, { "type": "Feature", "properties": { "id": 1457, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区客好烟店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 1.67, "参考值2": 149, "参考值3": 0.24 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1459, "geom": "SRID=4326;POINT(113.001918 28.14492)", "零售户": "长沙市天心区小米便民店", "经度": 113.001918, "纬度": 28.14492, "参考值1": 1.7, "参考值2": 136, "参考值3": 0.24 }, "geometry": { "type": "Point", "coordinates": [ 112.995358531851835, 28.139154123111066 ] } }, { "type": "Feature", "properties": { "id": 1460, "geom": "SRID=4326;POINT(112.998127 28.123635)", "零售户": "长沙市天心区明英生活超市", "经度": 112.998127, "纬度": 28.123635, "参考值1": 1.68, "参考值2": 121, "参考值3": 0.24 }, "geometry": { "type": "Point", "coordinates": [ 112.99153992367232, 28.117908626215293 ] } }, { "type": "Feature", "properties": { "id": 1461, "geom": "SRID=4326;POINT(112.980177 28.191177)", "零售户": "长沙市天心区玲润烟店", "经度": 112.980177, "纬度": 28.191177, "参考值1": 1.69, "参考值2": 150, "参考值3": 0.24 }, "geometry": { "type": "Point", "coordinates": [ 112.973610629622812, 28.185500907150043 ] } }, { "type": "Feature", "properties": { "id": 1462, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区英琴便利店日杂", "经度": 112.996195, "纬度": 28.144471, "参考值1": 1.66, "参考值2": 133, "参考值3": 0.23 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1463, "geom": "SRID=4326;POINT(112.980117 28.191767)", "零售户": "长沙市天心区生林蔬菜店", "经度": 112.980117, "纬度": 28.191767, "参考值1": 1.51, "参考值2": 117, "参考值3": 0.23 }, "geometry": { "type": "Point", "coordinates": [ 112.973550280458866, 28.186090451028821 ] } }, { "type": "Feature", "properties": { "id": 1464, "geom": "SRID=4326;POINT(113.005891 28.202611)", "零售户": "长沙市天心区蔡小妹超市", "经度": 113.005891, "纬度": 28.202611, "参考值1": 1.69, "参考值2": 135, "参考值3": 0.23 }, "geometry": { "type": "Point", "coordinates": [ 112.999349816209858, 28.196790627490287 ] } }, { "type": "Feature", "properties": { "id": 1469, "geom": "SRID=4326;POINT(112.981979 28.181545)", "零售户": "长沙市天心区南希便利店", "经度": 112.981979, "纬度": 28.181545, "参考值1": 1.68, "参考值2": 197, "参考值3": 0.23 }, "geometry": { "type": "Point", "coordinates": [ 112.975415423537626, 28.175879111725646 ] } }, { "type": "Feature", "properties": { "id": 1471, "geom": "SRID=4326;POINT(113.016559 28.116645)", "零售户": "长沙市天心区辉骁烟酒行", "经度": 113.016559, "纬度": 28.116645, "参考值1": 1.58, "参考值2": 115, "参考值3": 0.23 }, "geometry": { "type": "Point", "coordinates": [ 113.010039863018349, 28.110639127634265 ] } }, { "type": "Feature", "properties": { "id": 1472, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区扬凯食品店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 1.62, "参考值2": 143, "参考值3": 0.23 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1473, "geom": "SRID=4326;POINT(112.985561 28.187368)", "零售户": "长沙市天心区波碧食杂店", "经度": 112.985561, "纬度": 28.187368, "参考值1": 1.61, "参考值2": 119, "参考值3": 0.23 }, "geometry": { "type": "Point", "coordinates": [ 112.978992625630255, 28.181710535538826 ] } }, { "type": "Feature", "properties": { "id": 1478, "geom": "SRID=4326;POINT(112.989422 28.161322)", "零售户": "长沙市天心区泽云食品店", "经度": 112.989422, "纬度": 28.161322, "参考值1": 1.59, "参考值2": 131, "参考值3": 0.22 }, "geometry": { "type": "Point", "coordinates": [ 112.982852472039269, 28.155660466221939 ] } }, { "type": "Feature", "properties": { "id": 1479, "geom": "SRID=4326;POINT(112.976833 28.199453)", "零售户": "长沙市天心区邓臣烟店", "经度": 112.976833, "纬度": 28.199453, "参考值1": 1.56, "参考值2": 167, "参考值3": 0.22 }, "geometry": { "type": "Point", "coordinates": [ 112.970265547135341, 28.19375104306982 ] } }, { "type": "Feature", "properties": { "id": 1487, "geom": "SRID=4326;POINT(112.990865 28.073836)", "零售户": "长沙市天心区赛轩便利店", "经度": 112.990865, "纬度": 28.073836, "参考值1": 1.53, "参考值2": 122, "参考值3": 0.22 }, "geometry": { "type": "Point", "coordinates": [ 112.984294529002838, 28.068169006411424 ] } }, { "type": "Feature", "properties": { "id": 1494, "geom": "SRID=4326;POINT(112.990865 28.073836)", "零售户": "长沙市天心区连斌渔具店", "经度": 112.990865, "纬度": 28.073836, "参考值1": 1.5, "参考值2": 127, "参考值3": 0.21 }, "geometry": { "type": "Point", "coordinates": [ 112.984294529002838, 28.068169006411424 ] } }, { "type": "Feature", "properties": { "id": 1495, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区阿谭粮油店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 1.5, "参考值2": 140, "参考值3": 0.21 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1496, "geom": "SRID=4326;POINT(112.976619 28.176555)", "零售户": "长沙市天心区杜柳便利店", "经度": 112.976619, "纬度": 28.176555, "参考值1": 1.49, "参考值2": 115, "参考值3": 0.21 }, "geometry": { "type": "Point", "coordinates": [ 112.970064946050698, 28.170854392107174 ] } }, { "type": "Feature", "properties": { "id": 1498, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区银洁洗烫店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 1.45, "参考值2": 105, "参考值3": 0.21 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1500, "geom": "SRID=4326;POINT(113.001971 28.144938)", "零售户": "长沙市天心区展英综合商店", "经度": 113.001971, "纬度": 28.144938, "参考值1": 1.47, "参考值2": 137, "参考值3": 0.21 }, "geometry": { "type": "Point", "coordinates": [ 112.995411719536989, 28.139171447285452 ] } }, { "type": "Feature", "properties": { "id": 1506, "geom": "SRID=4326;POINT(113.007841 28.141801)", "零售户": "长沙市天心区祥明宽便利店", "经度": 113.007841, "纬度": 28.141801, "参考值1": 1.48, "参考值2": 97, "参考值3": 0.21 }, "geometry": { "type": "Point", "coordinates": [ 113.001299795974262, 28.13594843336406 ] } }, { "type": "Feature", "properties": { "id": 1507, "geom": "SRID=4326;POINT(112.983036 28.186222)", "零售户": "长沙市天心区太顺食品店", "经度": 112.983036, "纬度": 28.186222, "参考值1": 1.5, "参考值2": 164, "参考值3": 0.21 }, "geometry": { "type": "Point", "coordinates": [ 112.976469537258083, 28.18055953343638 ] } }, { "type": "Feature", "properties": { "id": 1509, "geom": "SRID=4326;POINT(112.982353 28.178985)", "零售户": "长沙市天心区陶爹烟店", "经度": 112.982353, "纬度": 28.178985, "参考值1": 1.49, "参考值2": 136, "参考值3": 0.21 }, "geometry": { "type": "Point", "coordinates": [ 112.97578963436635, 28.17332074917271 ] } }, { "type": "Feature", "properties": { "id": 1522, "geom": "SRID=4326;POINT(112.995261 28.068772)", "零售户": "长沙市天心区凤王食品店", "经度": 112.995261, "纬度": 28.068772, "参考值1": 1.42, "参考值2": 93, "参考值3": 0.2 }, "geometry": { "type": "Point", "coordinates": [ 112.988700744204166, 28.06307970564572 ] } }, { "type": "Feature", "properties": { "id": 1531, "geom": "SRID=4326;POINT(112.979578 28.179671)", "零售户": "长沙市天心区天东烟酒店", "经度": 112.979578, "纬度": 28.179671, "参考值1": 1.33, "参考值2": 96, "参考值3": 0.2 }, "geometry": { "type": "Point", "coordinates": [ 112.973018017614763, 28.1739926520433 ] } }, { "type": "Feature", "properties": { "id": 1540, "geom": "SRID=4326;POINT(112.985692 28.108616)", "零售户": "长沙市天心区华电湘府苑便利", "经度": 112.985692, "纬度": 28.108616, "参考值1": 1.42, "参考值2": 112, "参考值3": 0.2 }, "geometry": { "type": "Point", "coordinates": [ 112.97908979112259, 28.10295016274403 ] } }, { "type": "Feature", "properties": { "id": 1543, "geom": "SRID=4326;POINT(112.987905 28.176716)", "零售户": "长沙市天心区赛旺便利店", "经度": 112.987905, "纬度": 28.176716, "参考值1": 1.54, "参考值2": 178, "参考值3": 0.2 }, "geometry": { "type": "Point", "coordinates": [ 112.981340108141424, 28.1710588626404 ] } }, { "type": "Feature", "properties": { "id": 1549, "geom": "SRID=4326;POINT(112.993345 28.190259)", "零售户": "长沙市天心区长泵细伟便利店", "经度": 112.993345, "纬度": 28.190259, "参考值1": 1.39, "参考值2": 109, "参考值3": 0.19 }, "geometry": { "type": "Point", "coordinates": [ 112.986780063004431, 28.184579975287274 ] } }, { "type": "Feature", "properties": { "id": 1551, "geom": "SRID=4326;POINT(112.999679 28.066093)", "零售户": "长沙市天心区阳桃便利店", "经度": 112.999679, "纬度": 28.066093, "参考值1": 1.29, "参考值2": 94, "参考值3": 0.19 }, "geometry": { "type": "Point", "coordinates": [ 112.993130841176679, 28.060358588311317 ] } }, { "type": "Feature", "properties": { "id": 1556, "geom": "SRID=4326;POINT(112.978849 28.178954)", "零售户": "长沙市天心区明章炒货店", "经度": 112.978849, "纬度": 28.178954, "参考值1": 1.34, "参考值2": 101, "参考值3": 0.19 }, "geometry": { "type": "Point", "coordinates": [ 112.972290346490595, 28.17327086485847 ] } }, { "type": "Feature", "properties": { "id": 1558, "geom": "SRID=4326;POINT(113.000139 28.145198)", "零售户": "长沙市天心区铁道综合商店", "经度": 113.000139, "纬度": 28.145198, "参考值1": 1.32, "参考值2": 114, "参考值3": 0.19 }, "geometry": { "type": "Point", "coordinates": [ 112.99357439405901, 28.139453951071303 ] } }, { "type": "Feature", "properties": { "id": 1563, "geom": "SRID=4326;POINT(112.981092 28.17875)", "零售户": "长沙市天心区固良便利店", "经度": 112.981092, "纬度": 28.17875, "参考值1": 1.31, "参考值2": 101, "参考值3": 0.18 }, "geometry": { "type": "Point", "coordinates": [ 112.974530051949785, 28.173080215834382 ] } }, { "type": "Feature", "properties": { "id": 1565, "geom": "SRID=4326;POINT(112.977189 28.187351)", "零售户": "长沙市天心区裕我便利店", "经度": 112.977189, "纬度": 28.187351, "参考值1": 1.29, "参考值2": 118, "参考值3": 0.18 }, "geometry": { "type": "Point", "coordinates": [ 112.970630382961645, 28.181654438088628 ] } }, { "type": "Feature", "properties": { "id": 1574, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区林大超市", "经度": 112.996195, "纬度": 28.144471, "参考值1": 1.3, "参考值2": 120, "参考值3": 0.18 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1576, "geom": "SRID=4326;POINT(112.9794 28.14862)", "零售户": "长沙市天心区昊欢食品店", "经度": 112.9794, "纬度": 28.14862, "参考值1": 1.25, "参考值2": 111, "参考值3": 0.18 }, "geometry": { "type": "Point", "coordinates": [ 112.972823992813574, 28.142936428602045 ] } }, { "type": "Feature", "properties": { "id": 1577, "geom": "SRID=4326;POINT(112.981786 28.187468)", "零售户": "长沙市天心区萍姑食品店", "经度": 112.981786, "纬度": 28.187468, "参考值1": 1.25, "参考值2": 102, "参考值3": 0.18 }, "geometry": { "type": "Point", "coordinates": [ 112.975220028243939, 28.181800647898417 ] } }, { "type": "Feature", "properties": { "id": 1579, "geom": "SRID=4326;POINT(112.990865 28.073836)", "零售户": "长沙市天心区燕军综合批发部", "经度": 112.990865, "纬度": 28.073836, "参考值1": 1.25, "参考值2": 114, "参考值3": 0.18 }, "geometry": { "type": "Point", "coordinates": [ 112.984294529002838, 28.068169006411424 ] } }, { "type": "Feature", "properties": { "id": 1584, "geom": "SRID=4326;POINT(112.981238 28.190841)", "零售户": "长沙市天心区莲文烟酒店", "经度": 112.981238, "纬度": 28.190841, "参考值1": 1.24, "参考值2": 113, "参考值3": 0.18 }, "geometry": { "type": "Point", "coordinates": [ 112.974670469337809, 28.185170593063805 ] } }, { "type": "Feature", "properties": { "id": 1589, "geom": "SRID=4326;POINT(112.9794 28.14862)", "零售户": "长沙市天心区达米便利店", "经度": 112.9794, "纬度": 28.14862, "参考值1": 1.23, "参考值2": 112, "参考值3": 0.18 }, "geometry": { "type": "Point", "coordinates": [ 112.972823992813574, 28.142936428602045 ] } }, { "type": "Feature", "properties": { "id": 1602, "geom": "SRID=4326;POINT(112.978232 28.198315)", "零售户": "长沙市天心区英伦烟酒店", "经度": 112.978232, "纬度": 28.198315, "参考值1": 1.19, "参考值2": 95, "参考值3": 0.17 }, "geometry": { "type": "Point", "coordinates": [ 112.971662824246167, 28.192624545977822 ] } }, { "type": "Feature", "properties": { "id": 1606, "geom": "SRID=4326;POINT(112.977228 28.152319)", "零售户": "长沙市天心区好邻居商店", "经度": 112.977228, "纬度": 28.152319, "参考值1": 1.2, "参考值2": 117, "参考值3": 0.17 }, "geometry": { "type": "Point", "coordinates": [ 112.970659621946695, 28.146620321769543 ] } }, { "type": "Feature", "properties": { "id": 1610, "geom": "SRID=4326;POINT(112.985188 28.187008)", "零售户": "长沙市天心区湘津烟店", "经度": 112.985188, "纬度": 28.187008, "参考值1": 1.2, "参考值2": 86, "参考值3": 0.17 }, "geometry": { "type": "Point", "coordinates": [ 112.978619926191783, 28.181350194966953 ] } }, { "type": "Feature", "properties": { "id": 1614, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区贺岩食品批发部", "经度": 112.996195, "纬度": 28.144471, "参考值1": 1.13, "参考值2": 47, "参考值3": 0.17 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1621, "geom": "SRID=4326;POINT(113.006438 28.128063)", "零售户": "长沙市天心区清政园便利店", "经度": 113.006438, "纬度": 28.128063, "参考值1": 1.22, "参考值2": 99, "参考值3": 0.17 }, "geometry": { "type": "Point", "coordinates": [ 112.999879916126318, 28.122229553825736 ] } }, { "type": "Feature", "properties": { "id": 1622, "geom": "SRID=4326;POINT(112.992792 28.130343)", "零售户": "长沙市天心区洁鸣联食品店", "经度": 112.992792, "纬度": 28.130343, "参考值1": 1.19, "参考值2": 72, "参考值3": 0.17 }, "geometry": { "type": "Point", "coordinates": [ 112.986197976775856, 28.124660198374091 ] } }, { "type": "Feature", "properties": { "id": 1625, "geom": "SRID=4326;POINT(112.980177 28.191177)", "零售户": "长沙市天心区凌江商店", "经度": 112.980177, "纬度": 28.191177, "参考值1": 1.19, "参考值2": 98, "参考值3": 0.17 }, "geometry": { "type": "Point", "coordinates": [ 112.973610629622812, 28.185500907150043 ] } }, { "type": "Feature", "properties": { "id": 1628, "geom": "SRID=4326;POINT(112.987657 28.111218)", "零售户": "长沙市天心区何天雄烟酒商行", "经度": 112.987657, "纬度": 28.111218, "参考值1": 1.18, "参考值2": 56, "参考值3": 0.17 }, "geometry": { "type": "Point", "coordinates": [ 112.981054035239111, 28.10555164401109 ] } }, { "type": "Feature", "properties": { "id": 1637, "geom": "SRID=4326;POINT(112.989422 28.161322)", "零售户": "长沙市天心区阎辉烟店", "经度": 112.989422, "纬度": 28.161322, "参考值1": 1.15, "参考值2": 97, "参考值3": 0.16 }, "geometry": { "type": "Point", "coordinates": [ 112.982852472039269, 28.155660466221939 ] } }, { "type": "Feature", "properties": { "id": 1640, "geom": "SRID=4326;POINT(112.978064 28.192551)", "零售户": "长沙市天心区阳曦炒货店", "经度": 112.978064, "纬度": 28.192551, "参考值1": 1.1, "参考值2": 129, "参考值3": 0.16 }, "geometry": { "type": "Point", "coordinates": [ 112.971500118888287, 28.186860521090857 ] } }, { "type": "Feature", "properties": { "id": 1642, "geom": "SRID=4326;POINT(112.997912 28.095365)", "零售户": "长沙市天心区娟馨便利店", "经度": 112.997912, "纬度": 28.095365, "参考值1": 1.1, "参考值2": 87, "参考值3": 0.16 }, "geometry": { "type": "Point", "coordinates": [ 112.991333192440266, 28.0896429668257 ] } }, { "type": "Feature", "properties": { "id": 1643, "geom": "SRID=4326;POINT(112.981626 28.088578)", "零售户": "长沙市天心区杰云顺发商店", "经度": 112.981626, "纬度": 28.088578, "参考值1": 1.12, "参考值2": 96, "参考值3": 0.16 }, "geometry": { "type": "Point", "coordinates": [ 112.975041868383201, 28.082905298970044 ] } }, { "type": "Feature", "properties": { "id": 1646, "geom": "SRID=4326;POINT(112.991641 28.175603)", "零售户": "长沙市天心区坤哥日用品店", "经度": 112.991641, "纬度": 28.175603, "参考值1": 1.18, "参考值2": 111, "参考值3": 0.16 }, "geometry": { "type": "Point", "coordinates": [ 112.985078935727032, 28.169934586414833 ] } }, { "type": "Feature", "properties": { "id": 1653, "geom": "SRID=4326;POINT(112.986993 28.111206)", "零售户": "长沙市天心区雅露便利店", "经度": 112.986993, "纬度": 28.111206, "参考值1": 1.08, "参考值2": 87, "参考值3": 0.16 }, "geometry": { "type": "Point", "coordinates": [ 112.98038991172325, 28.105540151597651 ] } }, { "type": "Feature", "properties": { "id": 1656, "geom": "SRID=4326;POINT(112.980595 28.188334)", "零售户": "长沙市天心区梦之烟店", "经度": 112.980595, "纬度": 28.188334, "参考值1": 1.07, "参考值2": 86, "参考值3": 0.15 }, "geometry": { "type": "Point", "coordinates": [ 112.974029958958198, 28.182660717096265 ] } }, { "type": "Feature", "properties": { "id": 1657, "geom": "SRID=4326;POINT(112.974749 28.187901)", "零售户": "长沙市天心区青祠山便利店", "经度": 112.974749, "纬度": 28.187901, "参考值1": 1.08, "参考值2": 91, "参考值3": 0.15 }, "geometry": { "type": "Point", "coordinates": [ 112.968195716786596, 28.182181684548517 ] } }, { "type": "Feature", "properties": { "id": 1663, "geom": "SRID=4326;POINT(112.977458 28.185995)", "零售户": "长沙市天心区谢灿食品店", "经度": 112.977458, "纬度": 28.185995, "参考值1": 1.08, "参考值2": 115, "参考值3": 0.15 }, "geometry": { "type": "Point", "coordinates": [ 112.970899566587292, 28.180300827121819 ] } }, { "type": "Feature", "properties": { "id": 1664, "geom": "SRID=4326;POINT(113.005983 28.121886)", "零售户": "长沙市天心区帮你团商行", "经度": 113.005983, "纬度": 28.121886, "参考值1": 1.08, "参考值2": 84, "参考值3": 0.15 }, "geometry": { "type": "Point", "coordinates": [ 112.999420370524319, 28.116058781826656 ] } }, { "type": "Feature", "properties": { "id": 1667, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区稻兴便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 1.07, "参考值2": 85, "参考值3": 0.15 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1668, "geom": "SRID=4326;POINT(112.967088 28.116005)", "零售户": "长沙市天心区万兴隆烟酒店", "经度": 112.967088, "纬度": 28.116005, "参考值1": 1.14, "参考值2": 131, "参考值3": 0.15 }, "geometry": { "type": "Point", "coordinates": [ 112.960524198618785, 28.110178564979908 ] } }, { "type": "Feature", "properties": { "id": 1675, "geom": "SRID=4326;POINT(112.98072 28.194754)", "零售户": "长沙市天心区品汝烟店", "经度": 112.98072, "纬度": 28.194754, "参考值1": 1.02, "参考值2": 86, "参考值3": 0.15 }, "geometry": { "type": "Point", "coordinates": [ 112.974150054049133, 28.189080208689649 ] } }, { "type": "Feature", "properties": { "id": 1679, "geom": "SRID=4326;POINT(113.006867 28.127739)", "零售户": "长沙市天心区亿欢食杂店", "经度": 113.006867, "纬度": 28.127739, "参考值1": 1.04, "参考值2": 90, "参考值3": 0.15 }, "geometry": { "type": "Point", "coordinates": [ 113.000310373103616, 28.121898882075321 ] } }, { "type": "Feature", "properties": { "id": 1682, "geom": "SRID=4326;POINT(113.010663 28.130285)", "零售户": "长沙市天心区唐君食品贸易商", "经度": 113.010663, "纬度": 28.130285, "参考值1": 1.04, "参考值2": 77, "参考值3": 0.15 }, "geometry": { "type": "Point", "coordinates": [ 113.004123385565919, 28.124383464143584 ] } }, { "type": "Feature", "properties": { "id": 1683, "geom": "SRID=4326;POINT(112.979471 28.18401)", "零售户": "长沙市天心区裕秀副食品店", "经度": 112.979471, "纬度": 28.18401, "参考值1": 1.02, "参考值2": 84, "参考值3": 0.15 }, "geometry": { "type": "Point", "coordinates": [ 112.97290984997646, 28.178330643892206 ] } }, { "type": "Feature", "properties": { "id": 1693, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区阿道食品店", "经度": 112.978226, "纬度": 28.139107, "参考值1": 1.04, "参考值2": 70, "参考值3": 0.14 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 1694, "geom": "SRID=4326;POINT(112.986191 28.106185)", "零售户": "长沙市天心区佰艳五金店", "经度": 112.986191, "纬度": 28.106185, "参考值1": 1.02, "参考值2": 89, "参考值3": 0.14 }, "geometry": { "type": "Point", "coordinates": [ 112.979589808355371, 28.100519690781169 ] } }, { "type": "Feature", "properties": { "id": 1710, "geom": "SRID=4326;POINT(112.974236 28.165442)", "零售户": "长沙市天心区陈友连烟摊", "经度": 112.974236, "纬度": 28.165442, "参考值1": 0.93, "参考值2": 75, "参考值3": 0.14 }, "geometry": { "type": "Point", "coordinates": [ 112.967684863772291, 28.159717515576439 ] } }, { "type": "Feature", "properties": { "id": 1727, "geom": "SRID=4326;POINT(113.002132 28.105932)", "零售户": "长沙市天心区小梓嫣便利店", "经度": 113.002132, "纬度": 28.105932, "参考值1": 0.93, "参考值2": 71, "参考值3": 0.13 }, "geometry": { "type": "Point", "coordinates": [ 112.995557621730811, 28.100159466680708 ] } }, { "type": "Feature", "properties": { "id": 1729, "geom": "SRID=4326;POINT(112.98109 28.193724)", "零售户": "长沙市天心区易晋烟店", "经度": 112.98109, "纬度": 28.193724, "参考值1": 0.96, "参考值2": 86, "参考值3": 0.13 }, "geometry": { "type": "Point", "coordinates": [ 112.974520438116627, 28.188052318888051 ] } }, { "type": "Feature", "properties": { "id": 1730, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区陈卫国便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 0.9, "参考值2": 61, "参考值3": 0.13 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1732, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区席草食品店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 0.99, "参考值2": 70, "参考值3": 0.13 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1735, "geom": "SRID=4326;POINT(112.977024 28.191547)", "零售户": "长沙市天心区赵爹烟店", "经度": 112.977024, "纬度": 28.191547, "参考值1": 0.97, "参考值2": 77, "参考值3": 0.13 }, "geometry": { "type": "Point", "coordinates": [ 112.970462962079154, 28.185848368212238 ] } }, { "type": "Feature", "properties": { "id": 1740, "geom": "SRID=4326;POINT(112.981238 28.190841)", "零售户": "长沙市天心区牛福食品店", "经度": 112.981238, "纬度": 28.190841, "参考值1": 0.92, "参考值2": 86, "参考值3": 0.13 }, "geometry": { "type": "Point", "coordinates": [ 112.974670469337809, 28.185170593063805 ] } }, { "type": "Feature", "properties": { "id": 1743, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区春彩便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 0.95, "参考值2": 88, "参考值3": 0.13 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1745, "geom": "SRID=4326;POINT(112.986973 28.171621)", "零售户": "长沙市天心区诺宏便利店", "经度": 112.986973, "纬度": 28.171621, "参考值1": 0.94, "参考值2": 82, "参考值3": 0.13 }, "geometry": { "type": "Point", "coordinates": [ 112.980407426717605, 28.16596454865693 ] } }, { "type": "Feature", "properties": { "id": 1759, "geom": "SRID=4326;POINT(113.007841 28.141801)", "零售户": "长沙市天心区钦佳食品店", "经度": 113.007841, "纬度": 28.141801, "参考值1": 0.9, "参考值2": 62, "参考值3": 0.13 }, "geometry": { "type": "Point", "coordinates": [ 113.001299795974262, 28.13594843336406 ] } }, { "type": "Feature", "properties": { "id": 1766, "geom": "SRID=4326;POINT(112.981113 28.153293)", "零售户": "长沙市天心区沛清水果店", "经度": 112.981113, "纬度": 28.153293, "参考值1": 0.92, "参考值2": 78, "参考值3": 0.13 }, "geometry": { "type": "Point", "coordinates": [ 112.974539126381814, 28.147620332414554 ] } }, { "type": "Feature", "properties": { "id": 1768, "geom": "SRID=4326;POINT(112.984215 28.177609)", "零售户": "长沙市天心区沐佳便利店", "经度": 112.984215, "纬度": 28.177609, "参考值1": 0.92, "参考值2": 76, "参考值3": 0.13 }, "geometry": { "type": "Point", "coordinates": [ 112.977650425784248, 28.171950331954285 ] } }, { "type": "Feature", "properties": { "id": 1772, "geom": "SRID=4326;POINT(112.977035 28.177898)", "零售户": "长沙市天心区谢钧食杂店", "经度": 112.977035, "纬度": 28.177898, "参考值1": 0.89, "参考值2": 85, "参考值3": 0.13 }, "geometry": { "type": "Point", "coordinates": [ 112.970479961933847, 28.172200952526765 ] } }, { "type": "Feature", "properties": { "id": 1776, "geom": "SRID=4326;POINT(112.999679 28.066093)", "零售户": "长沙市天心区昌图文印社", "经度": 112.999679, "纬度": 28.066093, "参考值1": 0.9, "参考值2": 68, "参考值3": 0.13 }, "geometry": { "type": "Point", "coordinates": [ 112.993130841176679, 28.060358588311317 ] } }, { "type": "Feature", "properties": { "id": 1783, "geom": "SRID=4326;POINT(112.978345 28.15766)", "零售户": "中国石化销售有限公司湖南长", "经度": 112.978345, "纬度": 28.15766, "参考值1": 0.84, "参考值2": 31, "参考值3": 0.13 }, "geometry": { "type": "Point", "coordinates": [ 112.971779253011661, 28.151971258137365 ] } }, { "type": "Feature", "properties": { "id": 1784, "geom": "SRID=4326;POINT(113.000692 28.137263)", "零售户": "长沙市天心区速派马克超市", "经度": 113.000692, "纬度": 28.137263, "参考值1": 0.91, "参考值2": 77, "参考值3": 0.12 }, "geometry": { "type": "Point", "coordinates": [ 112.994121281880624, 28.131510486010288 ] } }, { "type": "Feature", "properties": { "id": 1799, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "长沙市天心区妌乐便利店", "经度": 112.996195, "纬度": 28.144471, "参考值1": 0.76, "参考值2": 63, "参考值3": 0.12 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 1809, "geom": "SRID=4326;POINT(112.980944 28.185461)", "零售户": "长沙市天心区周静烟酒商行", "经度": 112.980944, "纬度": 28.185461, "参考值1": 0.83, "参考值2": 67, "参考值3": 0.12 }, "geometry": { "type": "Point", "coordinates": [ 112.974380085906432, 28.179789941150062 ] } }, { "type": "Feature", "properties": { "id": 1815, "geom": "SRID=4326;POINT(112.988821 28.169672)", "零售户": "长沙市天心区绿沁水果店", "经度": 112.988821, "纬度": 28.169672, "参考值1": 0.82, "参考值2": 69, "参考值3": 0.12 }, "geometry": { "type": "Point", "coordinates": [ 112.982255482265103, 28.164013021395935 ] } }, { "type": "Feature", "properties": { "id": 1829, "geom": "SRID=4326;POINT(112.980606 28.189534)", "零售户": "长沙市天心区俊雷便利店", "经度": 112.980606, "纬度": 28.189534, "参考值1": 0.81, "参考值2": 56, "参考值3": 0.12 }, "geometry": { "type": "Point", "coordinates": [ 112.974040176780008, 28.183860586053168 ] } }, { "type": "Feature", "properties": { "id": 1836, "geom": "SRID=4326;POINT(113.00895 28.018441)", "零售户": "长沙市天心区一醉坊烟酒商行", "经度": 113.00895, "纬度": 28.018441, "参考值1": 0.81, "参考值2": 37, "参考值3": 0.11 }, "geometry": { "type": "Point", "coordinates": [ 113.002410152896147, 28.012569696711445 ] } }, { "type": "Feature", "properties": { "id": 1838, "geom": "SRID=4326;POINT(112.978849 28.178954)", "零售户": "长沙市天心区明章炒货店", "经度": 112.978849, "纬度": 28.178954, "参考值1": 0.8, "参考值2": 67, "参考值3": 0.11 }, "geometry": { "type": "Point", "coordinates": [ 112.972290346490595, 28.17327086485847 ] } }, { "type": "Feature", "properties": { "id": 1844, "geom": "SRID=4326;POINT(112.991678 28.158492)", "零售户": "长沙市天心区泽彭便利店", "经度": 112.991678, "纬度": 28.158492, "参考值1": 0.82, "参考值2": 66, "参考值3": 0.11 }, "geometry": { "type": "Point", "coordinates": [ 112.985108434692123, 28.152821516068773 ] } }, { "type": "Feature", "properties": { "id": 1857, "geom": "SRID=4326;POINT(112.990224 28.154005)", "零售户": "长沙市天心区红社烟酒行", "经度": 112.990224, "纬度": 28.154005, "参考值1": 0.77, "参考值2": 81, "参考值3": 0.11 }, "geometry": { "type": "Point", "coordinates": [ 112.983649053805777, 28.14833949561384 ] } }, { "type": "Feature", "properties": { "id": 1860, "geom": "SRID=4326;POINT(112.978676 28.19036)", "零售户": "长沙市天心区诗宁食品店", "经度": 112.978676, "纬度": 28.19036, "参考值1": 0.77, "参考值2": 66, "参考值3": 0.11 }, "geometry": { "type": "Point", "coordinates": [ 112.972112616428134, 28.18467440878883 ] } }, { "type": "Feature", "properties": { "id": 1913, "geom": "SRID=4326;POINT(112.982127 28.150709)", "零售户": "长沙市天心区润平便利店", "经度": 112.982127, "纬度": 28.150709, "参考值1": 0.71, "参考值2": 111, "参考值3": 0.1 }, "geometry": { "type": "Point", "coordinates": [ 112.975549505724359, 28.145040261046898 ] } }, { "type": "Feature", "properties": { "id": 1918, "geom": "SRID=4326;POINT(112.987657 28.111218)", "零售户": "长沙市天心区祥高便利店", "经度": 112.987657, "纬度": 28.111218, "参考值1": 0.71, "参考值2": 44, "参考值3": 0.1 }, "geometry": { "type": "Point", "coordinates": [ 112.981054035239111, 28.10555164401109 ] } }, { "type": "Feature", "properties": { "id": 1937, "geom": "SRID=4326;POINT(112.989422 28.161322)", "零售户": "长沙市天心区锦青便利店", "经度": 112.989422, "纬度": 28.161322, "参考值1": 0.73, "参考值2": 51, "参考值3": 0.1 }, "geometry": { "type": "Point", "coordinates": [ 112.982852472039269, 28.155660466221939 ] } }, { "type": "Feature", "properties": { "id": 1956, "geom": "SRID=4326;POINT(112.992169 28.147195)", "零售户": "长沙市天心区昕旺超市", "经度": 112.992169, "纬度": 28.147195, "参考值1": 0.68, "参考值2": 63, "参考值3": 0.09 }, "geometry": { "type": "Point", "coordinates": [ 112.985589481385361, 28.14151943622317 ] } }, { "type": "Feature", "properties": { "id": 1970, "geom": "SRID=4326;POINT(112.990517 28.073601)", "零售户": "长沙市天心区文毅便利店", "经度": 112.990517, "纬度": 28.073601, "参考值1": 0.67, "参考值2": 51, "参考值3": 0.09 }, "geometry": { "type": "Point", "coordinates": [ 112.983946386834617, 28.067935397281236 ] } }, { "type": "Feature", "properties": { "id": 1980, "geom": "SRID=4326;POINT(113.009982 28.130739)", "零售户": "长沙市天心区夜雾星窗便利店", "经度": 113.009982, "纬度": 28.130739, "参考值1": 0.64, "参考值2": 41, "参考值3": 0.09 }, "geometry": { "type": "Point", "coordinates": [ 113.00343985056675, 28.124849003207611 ] } }, { "type": "Feature", "properties": { "id": 2001, "geom": "SRID=4326;POINT(112.990559 28.192912)", "零售户": "长沙市天心区程林彬烟店", "经度": 112.990559, "纬度": 28.192912, "参考值1": 0.6, "参考值2": 47, "参考值3": 0.09 }, "geometry": { "type": "Point", "coordinates": [ 112.983988622798876, 28.187246389829475 ] } }, { "type": "Feature", "properties": { "id": 2006, "geom": "SRID=4326;POINT(112.985067 28.184768)", "零售户": "长沙市天心区星悦达食品店", "经度": 112.985067, "纬度": 28.184768, "参考值1": 0.61, "参考值2": 58, "参考值3": 0.09 }, "geometry": { "type": "Point", "coordinates": [ 112.978500097200765, 28.179110320912486 ] } }, { "type": "Feature", "properties": { "id": 2007, "geom": "SRID=4326;POINT(112.974749 28.187901)", "零售户": "长沙市天心区青山阁平价超市", "经度": 112.974749, "纬度": 28.187901, "参考值1": 0.61, "参考值2": 43, "参考值3": 0.09 }, "geometry": { "type": "Point", "coordinates": [ 112.968195716786596, 28.182181684548517 ] } }, { "type": "Feature", "properties": { "id": 2009, "geom": "SRID=4326;POINT(112.980177 28.191177)", "零售户": "长沙市天心区凌江烟店", "经度": 112.980177, "纬度": 28.191177, "参考值1": 0.63, "参考值2": 51, "参考值3": 0.09 }, "geometry": { "type": "Point", "coordinates": [ 112.973610629622812, 28.185500907150043 ] } }, { "type": "Feature", "properties": { "id": 2021, "geom": "SRID=4326;POINT(112.988459 28.162269)", "零售户": "长沙市天心区沛文便利店", "经度": 112.988459, "纬度": 28.162269, "参考值1": 0.61, "参考值2": 48, "参考值3": 0.09 }, "geometry": { "type": "Point", "coordinates": [ 112.981889577911389, 28.156609803579883 ] } }, { "type": "Feature", "properties": { "id": 2045, "geom": "SRID=4326;POINT(112.985063 28.19399)", "零售户": "长沙市天心区文文食品店", "经度": 112.985063, "纬度": 28.19399, "参考值1": 0.59, "参考值2": 48, "参考值3": 0.08 }, "geometry": { "type": "Point", "coordinates": [ 112.978490089043078, 28.18833082449769 ] } }, { "type": "Feature", "properties": { "id": 2049, "geom": "SRID=4326;POINT(112.999679 28.066093)", "零售户": "长沙市天心区前成友便利店", "经度": 112.999679, "纬度": 28.066093, "参考值1": 0.55, "参考值2": 46, "参考值3": 0.08 }, "geometry": { "type": "Point", "coordinates": [ 112.993130841176679, 28.060358588311317 ] } }, { "type": "Feature", "properties": { "id": 2064, "geom": "SRID=4326;POINT(112.978226 28.139107)", "零售户": "长沙市天心区嘉嘉鑫便利店", "经度": 112.978226, "纬度": 28.139107, "参考值1": 0.56, "参考值2": 36, "参考值3": 0.08 }, "geometry": { "type": "Point", "coordinates": [ 112.971642544050653, 28.133412898164675 ] } }, { "type": "Feature", "properties": { "id": 2072, "geom": "SRID=4326;POINT(113.002348 28.134693)", "零售户": "长沙市天心区婵娟烟酒店", "经度": 113.002348, "纬度": 28.134693, "参考值1": 0.59, "参考值2": 36, "参考值3": 0.08 }, "geometry": { "type": "Point", "coordinates": [ 112.995780206706826, 28.128919128501497 ] } }, { "type": "Feature", "properties": { "id": 2122, "geom": "SRID=4326;POINT(112.979691 28.197672)", "零售户": "长沙市天心区玲艾烟店", "经度": 112.979691, "纬度": 28.197672, "参考值1": 0.59, "参考值2": 44, "参考值3": 0.08 }, "geometry": { "type": "Point", "coordinates": [ 112.97311993877797, 28.191991652663585 ] } }, { "type": "Feature", "properties": { "id": 2145, "geom": "SRID=4326;POINT(112.987112 28.158988)", "零售户": "长沙市天心区旺日食品商行", "经度": 112.987112, "纬度": 28.158988, "参考值1": 0.53, "参考值2": 36, "参考值3": 0.07 }, "geometry": { "type": "Point", "coordinates": [ 112.98053978734913, 28.15332980865519 ] } }, { "type": "Feature", "properties": { "id": 2266, "geom": "SRID=4326;POINT(112.973549 28.148971)", "零售户": "长沙市天心区家晔兴超市", "经度": 112.973549, "纬度": 28.148971, "参考值1": 0.45, "参考值2": 31, "参考值3": 0.07 }, "geometry": { "type": "Point", "coordinates": [ 112.966986256787251, 28.143235670980136 ] } }, { "type": "Feature", "properties": { "id": 2281, "geom": "SRID=4326;POINT(112.995261 28.068772)", "零售户": "长沙市天心区秦青烟酒店", "经度": 112.995261, "纬度": 28.068772, "参考值1": 0.46, "参考值2": 34, "参考值3": 0.06 }, "geometry": { "type": "Point", "coordinates": [ 112.988700744204166, 28.06307970564572 ] } }, { "type": "Feature", "properties": { "id": 2355, "geom": "SRID=4326;POINT(112.97205 28.111479)", "零售户": "长沙市天心区邦骏汽车配件经", "经度": 112.97205, "纬度": 28.111479, "参考值1": 0.44, "参考值2": 33, "参考值3": 0.06 }, "geometry": { "type": "Point", "coordinates": [ 112.965469819936729, 28.105720742649307 ] } }, { "type": "Feature", "properties": { "id": 2381, "geom": "SRID=4326;POINT(112.988821 28.169672)", "零售户": "长沙市天心区绿沁水果店", "经度": 112.988821, "纬度": 28.169672, "参考值1": 0.4, "参考值2": 29, "参考值3": 0.06 }, "geometry": { "type": "Point", "coordinates": [ 112.982255482265103, 28.164013021395935 ] } }, { "type": "Feature", "properties": { "id": 2424, "geom": "SRID=4326;POINT(112.985328 28.178006)", "零售户": "长沙市天心区小自强文印社", "经度": 112.985328, "纬度": 28.178006, "参考值1": 0.43, "参考值2": 53, "参考值3": 0.06 }, "geometry": { "type": "Point", "coordinates": [ 112.978762941384161, 28.17234911073049 ] } }, { "type": "Feature", "properties": { "id": 2463, "geom": "SRID=4326;POINT(112.996195 28.144471)", "零售户": "湖南西野青园酒店管理有限公", "经度": 112.996195, "纬度": 28.144471, "参考值1": 0.36, "参考值2": 12, "参考值3": 0.06 }, "geometry": { "type": "Point", "coordinates": [ 112.989619676973206, 28.138766838302196 ] } }, { "type": "Feature", "properties": { "id": 2475, "geom": "SRID=4326;POINT(112.99023 28.072334)", "零售户": "长沙市天心区李方平百货商行", "经度": 112.99023, "纬度": 28.072334, "参考值1": 0.39, "参考值2": 31, "参考值3": 0.05 }, "geometry": { "type": "Point", "coordinates": [ 112.983660134855398, 28.066669670490338 ] } }, { "type": "Feature", "properties": { "id": 2532, "geom": "SRID=4326;POINT(112.978345 28.15766)", "零售户": "长沙市天心区衡润食品商行", "经度": 112.978345, "纬度": 28.15766, "参考值1": 0.36, "参考值2": 35, "参考值3": 0.05 }, "geometry": { "type": "Point", "coordinates": [ 112.971779253011661, 28.151971258137365 ] } }, { "type": "Feature", "properties": { "id": 2700, "geom": "SRID=4326;POINT(112.9794 28.14862)", "零售户": "长沙市天心区亚祥烟店", "经度": 112.9794, "纬度": 28.14862, "参考值1": 0.31, "参考值2": 24, "参考值3": 0.04 }, "geometry": { "type": "Point", "coordinates": [ 112.972823992813574, 28.142936428602045 ] } }, { "type": "Feature", "properties": { "id": 2748, "geom": "SRID=4326;POINT(112.977807 28.139137)", "零售户": "长沙市天心区赵菊兰烟草店", "经度": 112.977807, "纬度": 28.139137, "参考值1": 0.3, "参考值2": 23, "参考值3": 0.04 }, "geometry": { "type": "Point", "coordinates": [ 112.971224368191969, 28.133439708981001 ] } }, { "type": "Feature", "properties": { "id": 3031, "geom": "SRID=4326;POINT(112.993345 28.190259)", "零售户": "长沙市天心区农华便利店", "经度": 112.993345, "纬度": 28.190259, "参考值1": 0.24, "参考值2": 17, "参考值3": 0.03 }, "geometry": { "type": "Point", "coordinates": [ 112.986780063004431, 28.184579975287274 ] } }, { "type": "Feature", "properties": { "id": 3090, "geom": "SRID=4326;POINT(112.997585 28.080054)", "零售户": "长沙市天心区客汇隆超市", "经度": 112.997585, "纬度": 28.080054, "参考值1": 0.24, "参考值2": 20, "参考值3": 0.03 }, "geometry": { "type": "Point", "coordinates": [ 112.991020515598663, 28.07433893964452 ] } }, { "type": "Feature", "properties": { "id": 3355, "geom": "SRID=4326;POINT(112.985543 28.169864)", "零售户": "长沙市天心区秾榕便利店", "经度": 112.985543, "纬度": 28.169864, "参考值1": 0.18, "参考值2": 15, "参考值3": 0.03 }, "geometry": { "type": "Point", "coordinates": [ 112.978977027079523, 28.164207101737276 ] } }, { "type": "Feature", "properties": { "id": 3374, "geom": "SRID=4326;POINT(112.984623 28.190292)", "零售户": "长沙市天心区喜爱烟店", "经度": 112.984623, "纬度": 28.190292, "参考值1": 0.18, "参考值2": 27, "参考值3": 0.03 }, "geometry": { "type": "Point", "coordinates": [ 112.97805307535701, 28.184632846344481 ] } }, { "type": "Feature", "properties": { "id": 3422, "geom": "SRID=4326;POINT(112.977743 28.143778)", "零售户": "长沙市天心区添文副食商店", "经度": 112.977743, "纬度": 28.143778, "参考值1": 0.16, "参考值2": 13, "参考值3": 0.02 }, "geometry": { "type": "Point", "coordinates": [ 112.97116505246241, 28.138081346310816 ] } }, { "type": "Feature", "properties": { "id": 3578, "geom": "SRID=4326;POINT(112.960747 28.073522)", "零售户": "长沙市天心区桂井百货商店", "经度": 112.960747, "纬度": 28.073522, "参考值1": 0.14, "参考值2": 12, "参考值3": 0.02 }, "geometry": { "type": "Point", "coordinates": [ 112.954240227742233, 28.067599665896982 ] } }, { "type": "Feature", "properties": { "id": 3582, "geom": "SRID=4326;POINT(112.985206 28.19707)", "零售户": "长沙市天心区鹤来便利店", "经度": 112.985206, "纬度": 28.19707, "参考值1": 0.13, "参考值2": 6, "参考值3": 0.02 }, "geometry": { "type": "Point", "coordinates": [ 112.978630366584468, 28.191410340777495 ] } }, { "type": "Feature", "properties": { "id": 3829, "geom": "SRID=4326;POINT(112.981217 28.189281)", "零售户": "长沙市天心区冯记槟榔店", "经度": 112.981217, "纬度": 28.189281, "参考值1": 0.08, "参考值2": 10, "参考值3": 0.01 }, "geometry": { "type": "Point", "coordinates": [ 112.974650563293352, 28.183610756695771 ] } } ] } ================================================ FILE: tests/data/point/point.prj ================================================ GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] ================================================ FILE: tests/data/point/point.qpj ================================================ GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AUTHORITY["EPSG","4326"]] ================================================ FILE: tests/data/polygon/polygon.geojson ================================================ { "type": "FeatureCollection", "name": "polygon", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, "features": [ { "type": "Feature", "properties": { "gid": 841757, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.364583242820999, 39.983429083054787 ], [ 116.365023861152139, 39.98343926521116 ], [ 116.365027107121165, 39.98334980432724 ], [ 116.364713713932659, 39.983342503201641 ], [ 116.364722006474139, 39.983134510032805 ], [ 116.365007726133626, 39.983141129870347 ], [ 116.365012414114332, 39.983016928384146 ], [ 116.364599828552727, 39.983007426889039 ], [ 116.364583242820999, 39.983429083054787 ], [ 116.364583242820999, 39.983429083054787 ] ] ] } }, { "type": "Feature", "properties": { "gid": 841758, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.364972396183248, 39.983997314299224 ], [ 116.365222537711347, 39.984002545589199 ], [ 116.365220733915848, 39.984055915918276 ], [ 116.365738634315093, 39.984066809426807 ], [ 116.365749094868306, 39.983770257138843 ], [ 116.365552859400182, 39.983766207681626 ], [ 116.365545645211355, 39.983971229279334 ], [ 116.365239793776183, 39.983964813151339 ], [ 116.36524592480545, 39.983798131433225 ], [ 116.36497961019262, 39.983792562576632 ], [ 116.364972396183248, 39.983997314299224 ], [ 116.364972396183248, 39.983997314299224 ] ] ] } }, { "type": "Feature", "properties": { "gid": 841759, "sett_type": "3012", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.364623824275995, 39.986490610747246 ], [ 116.36461590083853, 39.98662246647477 ], [ 116.365349429412007, 39.986648441144517 ], [ 116.365357353061867, 39.986516495580815 ], [ 116.364623824275995, 39.986490610747246 ], [ 116.364623824275995, 39.986490610747246 ] ] ] } }, { "type": "Feature", "properties": { "gid": 841760, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.365356927911151, 39.987033254934261 ], [ 116.365498532500638, 39.987037108787909 ], [ 116.365504659683339, 39.986901115911628 ], [ 116.365363055063398, 39.986897262033821 ], [ 116.365356927911151, 39.987033254934261 ], [ 116.365356927911151, 39.987033254934261 ] ] ] } }, { "type": "Feature", "properties": { "gid": 841761, "sett_type": "3011", "grade_leve": 17, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.363977646615069, 39.986447246852556 ], [ 116.363974753177303, 39.986591515047657 ], [ 116.364328390621225, 39.986595603062902 ], [ 116.364330199123586, 39.986504794234705 ], [ 116.364283119099767, 39.986504230867844 ], [ 116.364284929396447, 39.986399292614045 ], [ 116.364171721993159, 39.986398013075195 ], [ 116.364170996679988, 39.986449401994278 ], [ 116.363977646615069, 39.986447246852556 ], [ 116.363977646615069, 39.986447246852556 ] ] ] } }, { "type": "Feature", "properties": { "gid": 841762, "sett_type": "3011", "grade_leve": 17, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.363485261216752, 39.986686891265045 ], [ 116.363471945813458, 39.98683108447463 ], [ 116.36356754041654, 39.986836166997747 ], [ 116.363572218988892, 39.986784142423886 ], [ 116.363746877602466, 39.986793431893162 ], [ 116.363742558924187, 39.986841226104389 ], [ 116.363833841790878, 39.986846135479347 ], [ 116.363850757038378, 39.986656039146816 ], [ 116.363689035507463, 39.986647450643417 ], [ 116.363684357168736, 39.986697495284496 ], [ 116.363485261216752, 39.986686891265045 ], [ 116.363485261216752, 39.986686891265045 ] ] ] } }, { "type": "Feature", "properties": { "gid": 841765, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.369466045848341, 39.983237876685649 ], [ 116.369589335753403, 39.983268409514025 ], [ 116.369646878939918, 39.983033986441768 ], [ 116.369523588456261, 39.983005883298937 ], [ 116.369466045848341, 39.983237876685649 ], [ 116.369466045848341, 39.983237876685649 ] ] ] } }, { "type": "Feature", "properties": { "gid": 841766, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.369222960638311, 39.983975165415373 ], [ 116.369339061566322, 39.983995896865913 ], [ 116.369387973394282, 39.983791993080452 ], [ 116.369269356385487, 39.983768834758507 ], [ 116.369222960638311, 39.983975165415373 ], [ 116.369222960638311, 39.983975165415373 ] ] ] } }, { "type": "Feature", "properties": { "gid": 841767, "sett_type": "3012", "grade_leve": 19, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.367786199395937, 39.987317779668288 ], [ 116.367994670417204, 39.987328755362491 ], [ 116.368184093390553, 39.987334717394091 ], [ 116.368193106262268, 39.987123484325153 ], [ 116.368234800777827, 39.987127119801812 ], [ 116.368232287644034, 39.987103994028992 ], [ 116.368222944686508, 39.987084567008417 ], [ 116.368200661637388, 39.987067316778642 ], [ 116.368167594657763, 39.987056200387613 ], [ 116.368144591459071, 39.987049300709167 ], [ 116.368114042241871, 39.98702540160761 ], [ 116.368044667398635, 39.987051861266835 ], [ 116.367940067794422, 39.987079897205717 ], [ 116.367780118842717, 39.98708352731289 ], [ 116.367786199395937, 39.987317779668288 ], [ 116.367786199395937, 39.987317779668288 ] ] ] } }, { "type": "Feature", "properties": { "gid": 841774, "sett_type": "3011", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.374735720810733, 39.984320593520742 ], [ 116.374733187488246, 39.984450820984527 ], [ 116.374999601534341, 39.984453679344213 ], [ 116.375002134885762, 39.984323451903023 ], [ 116.374735720810733, 39.984320593520742 ], [ 116.374735720810733, 39.984320593520742 ] ] ] } }, { "type": "Feature", "properties": { "gid": 841775, "sett_type": "3011", "grade_leve": 9, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.374134622297589, 39.984078179805124 ], [ 116.374939247230401, 39.984080260427639 ], [ 116.374938874547766, 39.98418339662431 ], [ 116.375382184824701, 39.984184535858788 ], [ 116.375382923998302, 39.984026951495309 ], [ 116.37494177091493, 39.984025809894696 ], [ 116.374942141429173, 39.983939683004778 ], [ 116.374135359260649, 39.983937604717504 ], [ 116.374134622297589, 39.984078179805124 ], [ 116.374134622297589, 39.984078179805124 ] ] ] } }, { "type": "Feature", "properties": { "gid": 841776, "sett_type": "3014", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.374423902342187, 39.987976677685779 ], [ 116.37478990274326, 39.987983203750481 ], [ 116.374802540554214, 39.98755831740236 ], [ 116.374436539945876, 39.987551881179698 ], [ 116.374423902342187, 39.987976677685779 ], [ 116.374423902342187, 39.987976677685779 ] ] ] } }, { "type": "Feature", "properties": { "gid": 841861, "sett_type": "3012", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.365337548590006, 39.98680982098503 ], [ 116.365502873434693, 39.986816431860923 ], [ 116.365522678032249, 39.986523016551551 ], [ 116.365357353061867, 39.986516495580815 ], [ 116.365349429412007, 39.986648441144517 ], [ 116.365337548590006, 39.98680982098503 ], [ 116.365337548590006, 39.98680982098503 ] ] ] } }, { "type": "Feature", "properties": { "gid": 841911, "sett_type": "3014", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.374911563737143, 39.986895195357398 ], [ 116.374901102591778, 39.987166995611666 ], [ 116.374898216726095, 39.987242235670315 ], [ 116.375067197812285, 39.987246371250116 ], [ 116.375075858949216, 39.986993382239895 ], [ 116.375177970959697, 39.986967082476745 ], [ 116.375177981929596, 39.986881046002452 ], [ 116.37506005980562, 39.986832846022097 ], [ 116.374911563737143, 39.986895195357398 ], [ 116.374911563737143, 39.986895195357398 ] ] ] } }, { "type": "Feature", "properties": { "gid": 841912, "sett_type": "3014", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.375098477465883, 39.987246787231982 ], [ 116.375067197812285, 39.987246371250116 ], [ 116.374898216726095, 39.987242235670315 ], [ 116.374901102591778, 39.987166995611666 ], [ 116.374737156077359, 39.987163215425227 ], [ 116.3747404029926, 39.987075915449843 ], [ 116.374438758663388, 39.987069048593519 ], [ 116.374430101179001, 39.987295218885741 ], [ 116.374818392412237, 39.987304060495475 ], [ 116.374816227733646, 39.987362740452305 ], [ 116.37509378790071, 39.987369007296863 ], [ 116.375098477465883, 39.987246787231982 ], [ 116.375098477465883, 39.987246787231982 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842053, "sett_type": "3011", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.365619215502221, 39.981994088246715 ], [ 116.365677798688168, 39.98199472749949 ], [ 116.365678161094721, 39.981971147957935 ], [ 116.365776997875031, 39.981973441897132 ], [ 116.365775916169895, 39.98200080227268 ], [ 116.365871518613034, 39.982003010922412 ], [ 116.365880144783389, 39.982000299201573 ], [ 116.365885896114648, 39.9819941715635 ], [ 116.365886975041803, 39.981988680307047 ], [ 116.365886975911948, 39.981981840583593 ], [ 116.365881226149057, 39.981975638720016 ], [ 116.36586720947885, 39.981973318039032 ], [ 116.365852833188782, 39.98197270778757 ], [ 116.365855718652057, 39.981892607080674 ], [ 116.365622104467761, 39.981886268641631 ], [ 116.365619215502221, 39.981994088246715 ], [ 116.365619215502221, 39.981994088246715 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842054, "sett_type": "3011", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.364785139871273, 39.981253947880411 ], [ 116.364792707137838, 39.981097073632064 ], [ 116.364607978818768, 39.981092023214927 ], [ 116.364605816698955, 39.981137294421579 ], [ 116.364689195864386, 39.981139607134189 ], [ 116.364683790761745, 39.981251120205435 ], [ 116.364785139871273, 39.981253947880411 ], [ 116.364785139871273, 39.981253947880411 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842055, "sett_type": "3014", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.364461270627373, 39.981688905667475 ], [ 116.364161540165327, 39.981681679986693 ], [ 116.36415973851966, 39.981718671041705 ], [ 116.364037187446911, 39.981717945148489 ], [ 116.363981841673379, 39.981719913816896 ], [ 116.363932604699158, 39.981728623589078 ], [ 116.363887320755495, 39.981739577697532 ], [ 116.363848504750251, 39.981758802293932 ], [ 116.363817595294066, 39.981777655654398 ], [ 116.363789559361877, 39.981808924430837 ], [ 116.363755771338674, 39.981855770818875 ], [ 116.363742469607217, 39.981891518386796 ], [ 116.363735996015052, 39.981928426146169 ], [ 116.363677654660904, 39.982882560848246 ], [ 116.36372149932545, 39.98288285808799 ], [ 116.363719334203438, 39.982952248361585 ], [ 116.364107109524227, 39.98296384514471 ], [ 116.364110712225937, 39.982894452852257 ], [ 116.364168573382827, 39.982896980624865 ], [ 116.364207127306415, 39.982115847711533 ], [ 116.364427792101708, 39.982122105320734 ], [ 116.364439675524793, 39.981937326052829 ], [ 116.364342999459808, 39.981936202655888 ], [ 116.36433687934813, 39.982018557965119 ], [ 116.364221874857733, 39.982016740834744 ], [ 116.36422980633499, 39.981820807550761 ], [ 116.364455502821286, 39.981826788208075 ], [ 116.364461270627373, 39.981688905667475 ], [ 116.364461270627373, 39.981688905667475 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842056, "sett_type": "3011", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.364680238202141, 39.980925698383103 ], [ 116.364857779128556, 39.980930039254545 ], [ 116.364857058617957, 39.980943539716193 ], [ 116.365575499387987, 39.980961080445013 ], [ 116.365575860671171, 39.980946320544447 ], [ 116.365650976322954, 39.98094810689728 ], [ 116.365654221103185, 39.980868545649685 ], [ 116.36486174277276, 39.980849216980367 ], [ 116.364862103543189, 39.980838416912839 ], [ 116.364683843800805, 39.980834077029897 ], [ 116.364680238202141, 39.980925698383103 ], [ 116.364680238202141, 39.980925698383103 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842057, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.371072334898912, 39.981753192073988 ], [ 116.371813943098431, 39.981805575977148 ], [ 116.371826538526832, 39.981701075185732 ], [ 116.371083491332968, 39.981654272512067 ], [ 116.371072334898912, 39.981753192073988 ], [ 116.371072334898912, 39.981753192073988 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842058, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.371093561185575, 39.981619341678567 ], [ 116.371609413928681, 39.981654716917369 ], [ 116.371631010307453, 39.98144112966996 ], [ 116.371114437570412, 39.981410434765451 ], [ 116.371093561185575, 39.981619341678567 ], [ 116.371093561185575, 39.981619341678567 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842059, "sett_type": "3011", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.370129395790286, 39.982101199425493 ], [ 116.370680461945881, 39.9821018672625 ], [ 116.370680475814481, 39.98199297166844 ], [ 116.370129409668692, 39.981992213834793 ], [ 116.370129395790286, 39.982101199425493 ], [ 116.370129395790286, 39.982101199425493 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842060, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.369998134753885, 39.982544955251257 ], [ 116.37040108567426, 39.982630040446864 ], [ 116.370432370628166, 39.98254270528372 ], [ 116.370051705189923, 39.982463981604546 ], [ 116.370036602305248, 39.982506298746969 ], [ 116.370015753943406, 39.982502004971863 ], [ 116.369998134753885, 39.982544955251257 ], [ 116.369998134753885, 39.982544955251257 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842061, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.370199532532354, 39.981780005129153 ], [ 116.370480634567187, 39.981796935916151 ], [ 116.370506910270819, 39.981527094413266 ], [ 116.370246297093345, 39.981513827780248 ], [ 116.370201333462916, 39.981751744035634 ], [ 116.370199532532354, 39.981780005129153 ], [ 116.370199532532354, 39.981780005129153 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842062, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.371096829163065, 39.981362848108297 ], [ 116.37163964455145, 39.98138955140606 ], [ 116.371649365386133, 39.981274164428882 ], [ 116.371513480659331, 39.981267487910557 ], [ 116.371515640502494, 39.981244446246023 ], [ 116.371069167185723, 39.981222487457863 ], [ 116.371064126830632, 39.981282611155741 ], [ 116.371103309767349, 39.981284453405301 ], [ 116.371096829163065, 39.981362848108297 ], [ 116.371096829163065, 39.981362848108297 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842063, "sett_type": "3012", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.371708301768976, 39.981427177616752 ], [ 116.372168086947454, 39.981454349467874 ], [ 116.372177445878989, 39.981359482250333 ], [ 116.371975412498657, 39.981347572221907 ], [ 116.371971092871064, 39.981392575531423 ], [ 116.371894162457366, 39.981387987262366 ], [ 116.371899921454172, 39.981331822680538 ], [ 116.371719099912383, 39.981321058995981 ], [ 116.371708301768976, 39.981427177616752 ], [ 116.371708301768976, 39.981427177616752 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842064, "sett_type": "3012", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.370104341611949, 39.981250045202891 ], [ 116.370108675786554, 39.981088316353784 ], [ 116.370069494206831, 39.98108764526323 ], [ 116.370070216791689, 39.981058935524842 ], [ 116.370389422624442, 39.98106402846502 ], [ 116.370387979029644, 39.98110893843257 ], [ 116.37032615057295, 39.981107935099239 ], [ 116.370320010345495, 39.981337793396804 ], [ 116.370450856761053, 39.981339881264574 ], [ 116.370461329902284, 39.980958913759181 ], [ 116.369997978197688, 39.980951480124517 ], [ 116.369989672753775, 39.981248208484239 ], [ 116.370104341611949, 39.981250045202891 ], [ 116.370104341611949, 39.981250045202891 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842590, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.36579688894679, 39.981001723981301 ], [ 116.366557404211022, 39.9810257964171 ], [ 116.36656280883409, 39.980920853361141 ], [ 116.365802652831988, 39.980896780315319 ], [ 116.36579688894679, 39.981001723981301 ], [ 116.36579688894679, 39.981001723981301 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842591, "sett_type": "3011", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.367248214415568, 39.981023609220955 ], [ 116.367253617776598, 39.980929645829242 ], [ 116.366683215567107, 39.980909711221727 ], [ 116.366677812329101, 39.981003584705853 ], [ 116.367248214415568, 39.981023609220955 ], [ 116.367248214415568, 39.981023609220955 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842593, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.36835546591027, 39.982319899256844 ], [ 116.36878823533965, 39.982331399014974 ], [ 116.368796526022024, 39.982147615813517 ], [ 116.368363756457725, 39.982136115948443 ], [ 116.36835546591027, 39.982319899256844 ], [ 116.36835546591027, 39.982319899256844 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842594, "sett_type": "3011", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.366517800554135, 39.981557908418075 ], [ 116.367213279556537, 39.981577403330384 ], [ 116.367212198425378, 39.981599813862708 ], [ 116.367436480616547, 39.981606085278905 ], [ 116.367440445438191, 39.981518873556382 ], [ 116.367228383673293, 39.981512945809207 ], [ 116.367229465057036, 39.981488555357181 ], [ 116.366522124912976, 39.981468716184025 ], [ 116.366517800554135, 39.981557908418075 ], [ 116.366517800554135, 39.981557908418075 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842595, "sett_type": "3011", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.366528977826448, 39.981280254553653 ], [ 116.367224457111135, 39.981299749689526 ], [ 116.367223375979577, 39.981322160222071 ], [ 116.367447658262691, 39.981328431711084 ], [ 116.367451982515448, 39.981241219510913 ], [ 116.367239920660836, 39.981235291692649 ], [ 116.367241002045006, 39.981210901240374 ], [ 116.366533302186923, 39.981191062318736 ], [ 116.366528977826448, 39.981280254553653 ], [ 116.366528977826448, 39.981280254553653 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842596, "sett_type": "3011", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.364853429246921, 39.98122190351625 ], [ 116.36507445806879, 39.981229784446988 ], [ 116.365073377592367, 39.981247695226926 ], [ 116.36576342954092, 39.98127247898767 ], [ 116.365769552346734, 39.981171314672302 ], [ 116.365088125795808, 39.981146878759567 ], [ 116.365089206249877, 39.981129147972638 ], [ 116.364859551835707, 39.981120919038823 ], [ 116.364853429246921, 39.98122190351625 ], [ 116.364853429246921, 39.98122190351625 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842597, "sett_type": "3012", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.364614407344959, 39.981410961243306 ], [ 116.364609364408309, 39.981500784693239 ], [ 116.365060764455436, 39.981516261919239 ], [ 116.365059323939178, 39.981539212996644 ], [ 116.365766267803224, 39.981563343289949 ], [ 116.36577131129765, 39.981470730114353 ], [ 116.365081618404247, 39.981447205651435 ], [ 116.365083058578207, 39.981426954465711 ], [ 116.364614407344959, 39.981410961243306 ], [ 116.364614407344959, 39.981410961243306 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842598, "sett_type": "3011", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.364599261689335, 39.981812906240222 ], [ 116.365049942149739, 39.981833334143104 ], [ 116.365048861926027, 39.981849265002808 ], [ 116.365515363037034, 39.98187039660187 ], [ 116.365523282895111, 39.981768599792758 ], [ 116.365061094413235, 39.981747732067412 ], [ 116.365061814597013, 39.981736841505331 ], [ 116.364606461856866, 39.981716240034579 ], [ 116.364599261689335, 39.981812906240222 ], [ 116.364599261689335, 39.981812906240222 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842599, "sett_type": "3011", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.36458592382489, 39.982129802139497 ], [ 116.36506320045352, 39.982143623056636 ], [ 116.365063921255512, 39.982127872691542 ], [ 116.365512453395269, 39.982140839639435 ], [ 116.365517497531826, 39.982042826651401 ], [ 116.365055667594348, 39.982029428197521 ], [ 116.365054946941385, 39.982044008610231 ], [ 116.364590967959558, 39.982030529073633 ], [ 116.36458592382489, 39.982129802139497 ], [ 116.36458592382489, 39.982129802139497 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842600, "sett_type": "3011", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.364572223940158, 39.982467397702358 ], [ 116.364723887548436, 39.982473304293528 ], [ 116.36472820823505, 39.982410840768992 ], [ 116.364842854961665, 39.982415269879937 ], [ 116.36484753642479, 39.982342096299291 ], [ 116.36499021653502, 39.982347656589901 ], [ 116.364995977671271, 39.982263051985008 ], [ 116.364711696249188, 39.982252110395464 ], [ 116.364705575053179, 39.982342385320464 ], [ 116.364580506493738, 39.982337611320034 ], [ 116.364572223940158, 39.982467397702358 ], [ 116.364572223940158, 39.982467397702358 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842601, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.364222134880777, 39.982798088707305 ], [ 116.364403266713211, 39.98280440221081 ], [ 116.364440003933623, 39.982180945695077 ], [ 116.364258871874711, 39.982174632011102 ], [ 116.364222134880777, 39.982798088707305 ], [ 116.364222134880777, 39.982798088707305 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842602, "sett_type": "3012", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.364123996472188, 39.982997479796481 ], [ 116.363840081869554, 39.982993744123583 ], [ 116.363836468340054, 39.983148542979869 ], [ 116.363964768638894, 39.983150249983957 ], [ 116.36396621404559, 39.983088420443011 ], [ 116.364121828321828, 39.983090449090284 ], [ 116.364123996472188, 39.982997479796481 ], [ 116.364123996472188, 39.982997479796481 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842603, "sett_type": "3011", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.367195629045796, 39.981880894552404 ], [ 116.36719454819017, 39.981901145171989 ], [ 116.367433926082143, 39.981908836380619 ], [ 116.367439690100738, 39.981805512927039 ], [ 116.367202828142766, 39.981797818322896 ], [ 116.367203548461418, 39.981786297829856 ], [ 116.366505194742658, 39.981763837124198 ], [ 116.366504474304733, 39.981776437588046 ], [ 116.366288825605352, 39.98176953046007 ], [ 116.366283421950953, 39.981867273841054 ], [ 116.366524229718181, 39.981875046847222 ], [ 116.366524950557391, 39.981859296511232 ], [ 116.367195629045796, 39.981880894552404 ], [ 116.367195629045796, 39.981880894552404 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842604, "sett_type": "3011", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.366024969399675, 39.982139865215686 ], [ 116.366507660921656, 39.98215477791134 ], [ 116.366508741303846, 39.982138037128969 ], [ 116.367172949857562, 39.982158653530909 ], [ 116.367171869735799, 39.982173144383687 ], [ 116.36741699830732, 39.982180737804335 ], [ 116.367421682236682, 39.982091545210174 ], [ 116.367193087155925, 39.982084469676224 ], [ 116.367193808127155, 39.982067819390771 ], [ 116.366493657466592, 39.98204617128124 ], [ 116.366492576947564, 39.982063992020535 ], [ 116.366029653219954, 39.982049682474752 ], [ 116.366024969399675, 39.982139865215686 ], [ 116.366024969399675, 39.982139865215686 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842605, "sett_type": "3011", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.368366650915362, 39.981987438225538 ], [ 116.36856901696946, 39.981989695752304 ], [ 116.368571551478382, 39.981845158342558 ], [ 116.36853237213316, 39.981844759059477 ], [ 116.368530924906665, 39.981919007918663 ], [ 116.368367738187132, 39.981917149666721 ], [ 116.368366650915362, 39.981987438225538 ], [ 116.368366650915362, 39.981987438225538 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842606, "sett_type": "3017", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.368497152254406, 39.981800886456348 ], [ 116.368662496578352, 39.981801572599139 ], [ 116.368665746206787, 39.981686733065793 ], [ 116.3685004020343, 39.981684696961558 ], [ 116.368497152254406, 39.981800886456348 ], [ 116.368497152254406, 39.981800886456348 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842607, "sett_type": "3011", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.367867774646882, 39.98179882788807 ], [ 116.368422026594857, 39.981817543204258 ], [ 116.368424563151407, 39.981656806435822 ], [ 116.368197397638781, 39.981648372371048 ], [ 116.368194875732698, 39.981694183802134 ], [ 116.367874259162463, 39.981683444049146 ], [ 116.367867774646882, 39.98179882788807 ], [ 116.367867774646882, 39.98179882788807 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842608, "sett_type": "3011", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.365594771434388, 39.982029130533263 ], [ 116.365592960082552, 39.982141718458905 ], [ 116.365595834196611, 39.982150624132572 ], [ 116.365600146347106, 39.98215628795473 ], [ 116.36560877130259, 39.982162485808075 ], [ 116.365622787491859, 39.982167596274863 ], [ 116.365646507801458, 39.982171613418465 ], [ 116.365848135418304, 39.982172776108051 ], [ 116.365848500242933, 39.982130207336681 ], [ 116.365756132616823, 39.982127454323212 ], [ 116.365758660517002, 39.982032774693302 ], [ 116.365594771434388, 39.982029130533263 ], [ 116.365594771434388, 39.982029130533263 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842761, "sett_type": "3012", "grade_leve": 9, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.362420623695584, 39.982384181705036 ], [ 116.36259419829473, 39.982388607672817 ], [ 116.362592756616337, 39.982421638435511 ], [ 116.36281772223056, 39.982427340348032 ], [ 116.362818804295344, 39.982396290036334 ], [ 116.362993099869499, 39.982400716758136 ], [ 116.362991657531438, 39.982438787301881 ], [ 116.363027954255728, 39.982439724655272 ], [ 116.36303480249552, 39.982281501163691 ], [ 116.362425669856449, 39.9822660991126 ], [ 116.362420623695584, 39.982384181705036 ], [ 116.362420623695584, 39.982384181705036 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842766, "sett_type": "3011", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.362468477222549, 39.981931340036695 ], [ 116.362539272540232, 39.981934026383165 ], [ 116.362546114400388, 39.981825120804331 ], [ 116.362920218360102, 39.9818388853149 ], [ 116.362929940970659, 39.981685337433127 ], [ 116.362484682167718, 39.981668886976614 ], [ 116.362468477222549, 39.981931340036695 ], [ 116.362468477222549, 39.981931340036695 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842769, "sett_type": "3014", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.361882135466445, 39.980813817891189 ], [ 116.362899500884922, 39.980846255645126 ], [ 116.363043953403377, 39.980971591054463 ], [ 116.362995299549326, 39.982059087448988 ], [ 116.363090174312219, 39.982061109937348 ], [ 116.363142065783492, 39.980949399963826 ], [ 116.362931492944128, 39.980784831684417 ], [ 116.362293973231957, 39.980762453212449 ], [ 116.36229577282127, 39.980740761449042 ], [ 116.362004329274271, 39.980730570781567 ], [ 116.361947905654191, 39.980759362906234 ], [ 116.361915563063647, 39.98075923069122 ], [ 116.361888611231251, 39.980756750627897 ], [ 116.361882135466445, 39.980813817891189 ], [ 116.361882135466445, 39.980813817891189 ] ] ] } }, { "type": "Feature", "properties": { "gid": 844753, "sett_type": "3011", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.365633976268853, 39.981796705912515 ], [ 116.365690043532041, 39.981798158620137 ], [ 116.36569076526574, 39.981775208558034 ], [ 116.365968947498317, 39.981776716605694 ], [ 116.365967865991934, 39.981802457041383 ], [ 116.36602896580365, 39.981802823437654 ], [ 116.366031851491059, 39.981721102809239 ], [ 116.366040477618213, 39.981719111098108 ], [ 116.366045869169426, 39.981716133849709 ], [ 116.366048026715319, 39.981707671244422 ], [ 116.366048746351481, 39.981701280520269 ], [ 116.366049466125077, 39.981693809839761 ], [ 116.36604659157635, 39.981687964005559 ], [ 116.366042997918541, 39.981684369063117 ], [ 116.366038325866384, 39.981682035543948 ], [ 116.36603221613494, 39.981679973979801 ], [ 116.366027184489994, 39.981679080895255 ], [ 116.366018918121569, 39.981678372227243 ], [ 116.366008854539572, 39.981678925968076 ], [ 116.36600454142318, 39.981680371809048 ], [ 116.366000228192959, 39.981682717614177 ], [ 116.365996633224299, 39.981689472258239 ], [ 116.365875871701505, 39.981687207771763 ], [ 116.365872998143359, 39.981673712260665 ], [ 116.365868686375549, 39.981664718539896 ], [ 116.365857904955277, 39.98165798360391 ], [ 116.36584640451477, 39.98165286959216 ], [ 116.365833825428467, 39.981651086929581 ], [ 116.365827356148586, 39.981650465835749 ], [ 116.36581729242782, 39.981652639565262 ], [ 116.36580471256427, 39.981657066662059 ], [ 116.365793210496435, 39.981664912143849 ], [ 116.365788536985221, 39.981674368181096 ], [ 116.365637945687695, 39.981671335529775 ], [ 116.365633976268853, 39.981796705912515 ], [ 116.365633976268853, 39.981796705912515 ] ] ] } }, { "type": "Feature", "properties": { "gid": 844764, "sett_type": "3011", "grade_leve": 13, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.369677943781852, 39.981845185609046 ], [ 116.369989956273926, 39.98184461393344 ], [ 116.369989609427677, 39.981745528389382 ], [ 116.369912684339511, 39.981745714677587 ], [ 116.369912334789603, 39.98166786827494 ], [ 116.369954751392257, 39.981667815156612 ], [ 116.369954396112021, 39.981634966934294 ], [ 116.369910541660161, 39.981635021854679 ], [ 116.369910196728398, 39.98152090691687 ], [ 116.36976209861939, 39.981521182817552 ], [ 116.369762443996493, 39.981631787895672 ], [ 116.369713557417001, 39.98163193940475 ], [ 116.369713911147215, 39.981676937133386 ], [ 116.369744465241965, 39.981676898679737 ], [ 116.369744815695228, 39.981747635367974 ], [ 116.369677596732757, 39.981747720002787 ], [ 116.369677943781852, 39.981845185609046 ], [ 116.369677943781852, 39.981845185609046 ] ] ] } }, { "type": "Feature", "properties": { "gid": 844765, "sett_type": "3012", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.368591432173318, 39.980971178078754 ], [ 116.368589270339243, 39.981011769229127 ], [ 116.368306390231297, 39.981002056563945 ], [ 116.36830458890347, 39.981034457595236 ], [ 116.367689595370436, 39.98101402436172 ], [ 116.367675148256581, 39.981562571187091 ], [ 116.368282952347641, 39.981585353422879 ], [ 116.368282955726983, 39.981558804495599 ], [ 116.368492149902508, 39.981566362455617 ], [ 116.368493590447954, 39.981544581472576 ], [ 116.368653542462084, 39.981550044365335 ], [ 116.36867191499185, 39.981229453652226 ], [ 116.368719721090031, 39.981231101926177 ], [ 116.368726583072146, 39.980975773429563 ], [ 116.368591432173318, 39.980971178078754 ], [ 116.368591432173318, 39.980971178078754 ] ] ] } }, { "type": "Feature", "properties": { "gid": 844772, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.361909307063897, 39.981914613090368 ], [ 116.361904623071965, 39.982011276088173 ], [ 116.362883536657549, 39.982040350405299 ], [ 116.362888220798482, 39.981943687526034 ], [ 116.362539272540232, 39.981934026383165 ], [ 116.362468477222549, 39.981931340036695 ], [ 116.361909307063897, 39.981914613090368 ], [ 116.361909307063897, 39.981914613090368 ] ] ] } }, { "type": "Feature", "properties": { "gid": 844894, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.362361419412139, 39.981665467655816 ], [ 116.362484682167718, 39.981668886976614 ], [ 116.362929940970659, 39.981685337433127 ], [ 116.362929947217538, 39.981636199417871 ], [ 116.362782245589614, 39.981631194294117 ], [ 116.362783686052708, 39.981607793147191 ], [ 116.362512722031866, 39.981597298866603 ], [ 116.362517415839662, 39.981424139026537 ], [ 116.362930691627568, 39.981434336525808 ], [ 116.362932500040827, 39.981343527583377 ], [ 116.362367571108223, 39.981331482182895 ], [ 116.362361419412139, 39.981665467655816 ], [ 116.362361419412139, 39.981665467655816 ] ] ] } }, { "type": "Feature", "properties": { "gid": 845016, "sett_type": "3011", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.368763477098568, 39.981988904802577 ], [ 116.368866997690859, 39.981991201560376 ], [ 116.368958656732275, 39.981994413805438 ], [ 116.368963702992176, 39.981884701791898 ], [ 116.368768523309754, 39.981879282755862 ], [ 116.368763477098568, 39.981988904802577 ], [ 116.368763477098568, 39.981988904802577 ] ] ] } }, { "type": "Feature", "properties": { "gid": 845017, "sett_type": "3011", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.368866997690859, 39.981991201560376 ], [ 116.368856551248626, 39.982167517820393 ], [ 116.368897887631817, 39.982168904673635 ], [ 116.368889602119268, 39.982311829503473 ], [ 116.368954302630527, 39.98231417639672 ], [ 116.36897339409704, 39.981994934895589 ], [ 116.368958656732275, 39.981994413805438 ], [ 116.368866997690859, 39.981991201560376 ], [ 116.368866997690859, 39.981991201560376 ] ] ] } }, { "type": "Feature", "properties": { "gid": 845018, "sett_type": "3012", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.371033943327021, 39.981183201944468 ], [ 116.371668787234555, 39.981199084192973 ], [ 116.371675278463016, 39.981038432926546 ], [ 116.370606908722223, 39.981013271933065 ], [ 116.370603662952945, 39.981095892582452 ], [ 116.371037547895838, 39.981106340668731 ], [ 116.371033943327021, 39.981183201944468 ], [ 116.371033943327021, 39.981183201944468 ] ] ] } }, { "type": "Feature", "properties": { "gid": 845019, "sett_type": "3012", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.370576998682708, 39.981593425259938 ], [ 116.371010523258406, 39.981607293285954 ], [ 116.371033943327021, 39.981183201944468 ], [ 116.371037547895838, 39.981106340668731 ], [ 116.370603662952945, 39.981095892582452 ], [ 116.370576998682708, 39.981593425259938 ], [ 116.370576998682708, 39.981593425259938 ] ] ] } }, { "type": "Feature", "properties": { "gid": 845253, "sett_type": "3012", "grade_leve": 11, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.364043371846464, 39.981129540216898 ], [ 116.364115256723636, 39.981071300431353 ], [ 116.364236010931364, 39.98107391905171 ], [ 116.364241425678784, 39.980885908998061 ], [ 116.364025793828844, 39.980878385391811 ], [ 116.363950680632044, 39.980889921841673 ], [ 116.363880236549903, 39.980925660802711 ], [ 116.363828479003402, 39.980974062700213 ], [ 116.363813021185948, 39.981007833404291 ], [ 116.36380187227779, 39.981070756778209 ], [ 116.363797901510338, 39.981208726858526 ], [ 116.364041564337356, 39.981212699416481 ], [ 116.364043371846464, 39.981129540216898 ], [ 116.364043371846464, 39.981129540216898 ] ] ] } }, { "type": "Feature", "properties": { "gid": 845254, "sett_type": "3012", "grade_leve": 8, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.364241425678784, 39.980885908998061 ], [ 116.364236010931364, 39.98107391905171 ], [ 116.364466020425567, 39.981077913744251 ], [ 116.364473950594899, 39.980892780060429 ], [ 116.364241425678784, 39.980885908998061 ], [ 116.364241425678784, 39.980885908998061 ] ] ] } }, { "type": "Feature", "properties": { "gid": 845285, "sett_type": "3016", "grade_leve": 7, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.364038305765149, 39.981402146369255 ], [ 116.364041564337356, 39.981212699416481 ], [ 116.363797901510338, 39.981208726858526 ], [ 116.363794988297229, 39.981508688857112 ], [ 116.364038291917808, 39.981511041972375 ], [ 116.364038305765149, 39.981402146369255 ], [ 116.364038305765149, 39.981402146369255 ] ] ] } }, { "type": "Feature", "properties": { "gid": 845286, "sett_type": "3012", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.364450524680919, 39.981407322250412 ], [ 116.364038305765149, 39.981402146369255 ], [ 116.364038291917808, 39.981511041972375 ], [ 116.364449072955679, 39.981518649783403 ], [ 116.364450524680919, 39.981407322250412 ], [ 116.364450524680919, 39.981407322250412 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846088, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.368250887483171, 39.984995716265104 ], [ 116.368250175213802, 39.984943789317164 ], [ 116.368128325249145, 39.984944488281812 ], [ 116.368129037504019, 39.984996505223513 ], [ 116.368250887483171, 39.984995716265104 ], [ 116.368250887483171, 39.984995716265104 ] ] ] } }, { "type": "Feature", "properties": { "gid": 845993, "sett_type": "3017", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.365208812105649, 39.987364916884772 ], [ 116.364560103074567, 39.987343955326892 ], [ 116.364533797297085, 39.987894949678896 ], [ 116.365448102923281, 39.987924991964164 ], [ 116.365475121473565, 39.987427995068408 ], [ 116.365207008092639, 39.987419997125357 ], [ 116.365208812105649, 39.987364916884772 ], [ 116.365208812105649, 39.987364916884772 ] ] ] } }, { "type": "Feature", "properties": { "gid": 845996, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.363606975138154, 39.987600718987238 ], [ 116.363445254661059, 39.987594111452687 ], [ 116.363425091593299, 39.987891398202308 ], [ 116.363590765089768, 39.987898539958906 ], [ 116.363606975138154, 39.987600718987238 ], [ 116.363606975138154, 39.987600718987238 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846000, "sett_type": "3011", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.364140648901682, 39.987700753590694 ], [ 116.364143888935317, 39.987657190786756 ], [ 116.364085668526087, 39.987654033590459 ], [ 116.364087826876954, 39.987638101180217 ], [ 116.363835897723618, 39.987635310073848 ], [ 116.363833738108923, 39.98766132208533 ], [ 116.363720892080352, 39.987657793495877 ], [ 116.363715478968402, 39.987833653994407 ], [ 116.364193819578702, 39.987848542073287 ], [ 116.364201385299822, 39.987702647358446 ], [ 116.364140648901682, 39.987700753590694 ], [ 116.364140648901682, 39.987700753590694 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846003, "sett_type": "3011", "grade_leve": 15, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.373023263710749, 39.987678395603247 ], [ 116.373023264605422, 39.987671375891424 ], [ 116.373099120427867, 39.987672368333506 ], [ 116.373096981609436, 39.987529366689046 ], [ 116.372894939161625, 39.987530320179026 ], [ 116.372894933552899, 39.987574328373007 ], [ 116.372742144117268, 39.987578375683896 ], [ 116.372741047649228, 39.987719311154152 ], [ 116.372944167481492, 39.987717365451822 ], [ 116.372944172459469, 39.987678307055369 ], [ 116.373023263710749, 39.987678395603247 ], [ 116.373023263710749, 39.987678395603247 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846004, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.363799241390566, 39.98762861269482 ], [ 116.363803925127243, 39.987536269807443 ], [ 116.363893411526988, 39.987539021982414 ], [ 116.363891250317025, 39.98757754347794 ], [ 116.36394839237488, 39.987579261965131 ], [ 116.363947672206763, 39.987590242538786 ], [ 116.364192773328611, 39.987597633894055 ], [ 116.364195655971045, 39.987538412245712 ], [ 116.363946601592957, 39.987530936506182 ], [ 116.363943017751467, 39.987452194853709 ], [ 116.363653355229729, 39.987444868941864 ], [ 116.363644350265716, 39.987605345233618 ], [ 116.363690710452516, 39.987606448800143 ], [ 116.363689629912102, 39.98762525957207 ], [ 116.363799241390566, 39.98762861269482 ], [ 116.363799241390566, 39.98762861269482 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846005, "sett_type": "3012", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.367785441872002, 39.987621428163536 ], [ 116.368007213178515, 39.987623476791775 ], [ 116.368007574517293, 39.98760853693372 ], [ 116.368103184736526, 39.987609491761624 ], [ 116.368105360270548, 39.987460995032677 ], [ 116.368183358642909, 39.987459363221845 ], [ 116.368184093390553, 39.987334717394091 ], [ 116.367994670417204, 39.987328755362491 ], [ 116.367991414520333, 39.987493452849662 ], [ 116.367786536683383, 39.987491742062865 ], [ 116.367785441872002, 39.987621428163536 ], [ 116.367785441872002, 39.987621428163536 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846007, "sett_type": "3014", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.367587074712304, 39.987310392737896 ], [ 116.367343381736831, 39.987307835994983 ], [ 116.367338675938058, 39.98756892150341 ], [ 116.367582368870487, 39.987571478212907 ], [ 116.367587074712304, 39.987310392737896 ], [ 116.367587074712304, 39.987310392737896 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846008, "sett_type": "3012", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.363560979176341, 39.98756253652855 ], [ 116.363569624619444, 39.987402960694737 ], [ 116.364289830352973, 39.987425243501868 ], [ 116.364296314814823, 39.9873038293224 ], [ 116.363622828331145, 39.987283099338704 ], [ 116.363640121029277, 39.986949998259611 ], [ 116.363469056328555, 39.986944663958795 ], [ 116.363448882395346, 39.987327267222284 ], [ 116.363405757014263, 39.987325979306505 ], [ 116.363393868071981, 39.987557376890152 ], [ 116.363560979176341, 39.98756253652855 ], [ 116.363560979176341, 39.98756253652855 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846009, "sett_type": "3000", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.367305641190825, 39.987312745993563 ], [ 116.366710795767446, 39.9873059829414 ], [ 116.366705018680776, 39.987513162199782 ], [ 116.367298784996592, 39.987525416362729 ], [ 116.367305641190825, 39.987312745993563 ], [ 116.367305641190825, 39.987312745993563 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846010, "sett_type": "3014", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.366095449275832, 39.98751263921875 ], [ 116.366100506654661, 39.987311400598195 ], [ 116.366391272027457, 39.987315774663394 ], [ 116.366392355543738, 39.987274374896835 ], [ 116.366322269674612, 39.987273300112108 ], [ 116.366324430391089, 39.987240088542535 ], [ 116.366326954519977, 39.987175467771387 ], [ 116.36610483730739, 39.987172260411413 ], [ 116.366103392237036, 39.987230579984683 ], [ 116.365871213337314, 39.987227117837492 ], [ 116.365864348670016, 39.987509175644441 ], [ 116.366095449275832, 39.98751263921875 ], [ 116.366095449275832, 39.98751263921875 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846011, "sett_type": "3000", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.366629558997772, 39.987368729947491 ], [ 116.366198979213337, 39.987362834184175 ], [ 116.366196085959018, 39.987503862320239 ], [ 116.366626306279031, 39.987509758533328 ], [ 116.366629558997772, 39.987368729947491 ], [ 116.366629558997772, 39.987368729947491 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846014, "sett_type": "3011", "grade_leve": 15, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.373559690107058, 39.987387092728753 ], [ 116.373558629402226, 39.987247149695371 ], [ 116.373357661570168, 39.98724908888088 ], [ 116.373357655960973, 39.987293097076147 ], [ 116.373204503899046, 39.987299122429434 ], [ 116.373204486314876, 39.987437086770271 ], [ 116.373409767035398, 39.987435141653563 ], [ 116.373409772139965, 39.987395093296556 ], [ 116.373485629533505, 39.987393116813415 ], [ 116.373485630302071, 39.987387087060767 ], [ 116.373559690107058, 39.987387092728753 ], [ 116.373559690107058, 39.987387092728753 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846017, "sett_type": "3014", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.367651417663424, 39.987273589218553 ], [ 116.36766006982478, 39.987070996127947 ], [ 116.367395889280999, 39.987064326239022 ], [ 116.367394086855853, 39.987105816926324 ], [ 116.366331279779132, 39.987078985863242 ], [ 116.366326954519977, 39.987175467771387 ], [ 116.366324430391089, 39.987240088542535 ], [ 116.367651417663424, 39.987273589218553 ], [ 116.367651417663424, 39.987273589218553 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846018, "sett_type": "3011", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.364884310613789, 39.987083141028783 ], [ 116.364755287444737, 39.987082421799144 ], [ 116.36474376762412, 39.98723309176075 ], [ 116.364885010230537, 39.987233883848958 ], [ 116.364884310613789, 39.987083141028783 ], [ 116.364884310613789, 39.987083141028783 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846019, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.364330535951012, 39.986682176472648 ], [ 116.364190733690776, 39.986680214523155 ], [ 116.364165868856858, 39.987207178124301 ], [ 116.36430459282839, 39.987209141505168 ], [ 116.364330535951012, 39.986682176472648 ], [ 116.364330535951012, 39.986682176472648 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846024, "sett_type": "3014", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.366288525064832, 39.986956019034885 ], [ 116.365775287056863, 39.986945471128109 ], [ 116.365771313744844, 39.987101260182691 ], [ 116.366279520070748, 39.987110284937749 ], [ 116.366288525064832, 39.986956019034885 ], [ 116.366288525064832, 39.986956019034885 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846027, "sett_type": "3011", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.365262088375616, 39.986697880293676 ], [ 116.364785527244095, 39.986684955735264 ], [ 116.364757811754501, 39.987015281019723 ], [ 116.365256654869654, 39.987031774114925 ], [ 116.365262088375616, 39.986697880293676 ], [ 116.365262088375616, 39.986697880293676 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846029, "sett_type": "3011", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.36463888949514, 39.986721160095769 ], [ 116.364576714639341, 39.986719177634768 ], [ 116.364569510264417, 39.98684896244206 ], [ 116.36463204449889, 39.986850944385552 ], [ 116.36463888949514, 39.986721160095769 ], [ 116.36463888949514, 39.986721160095769 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846033, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.366542667712253, 39.986677675790659 ], [ 116.365799762527274, 39.986664829032534 ], [ 116.365797596503171, 39.986740068916639 ], [ 116.366540142212429, 39.98675291611535 ], [ 116.366542667712253, 39.986677675790659 ], [ 116.366542667712253, 39.986677675790659 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846036, "sett_type": "3011", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.366518249426207, 39.986503925965145 ], [ 116.366313023380442, 39.986499344493403 ], [ 116.366307619513293, 39.986598707757778 ], [ 116.366517158529206, 39.986603283360843 ], [ 116.366518249426207, 39.986503925965145 ], [ 116.366518249426207, 39.986503925965145 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846037, "sett_type": "3012", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.366255158553116, 39.986492223481882 ], [ 116.365809848948885, 39.986484192597842 ], [ 116.365806600335432, 39.986593722561324 ], [ 116.366249753391514, 39.986601846335553 ], [ 116.366255158553116, 39.986492223481882 ], [ 116.366255158553116, 39.986492223481882 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846043, "sett_type": "3000", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.367008969806875, 39.985629761154946 ], [ 116.366713525240016, 39.985628178156212 ], [ 116.366712797878677, 39.985695136392941 ], [ 116.367008601861187, 39.985696718904137 ], [ 116.367008969806875, 39.985629761154946 ], [ 116.367008969806875, 39.985629761154946 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846046, "sett_type": "3012", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.369576906403552, 39.984900148615246 ], [ 116.369235791824735, 39.984832184066043 ], [ 116.369032980039037, 39.985468176954015 ], [ 116.369364745409811, 39.985542181028663 ], [ 116.369576906403552, 39.984900148615246 ], [ 116.369576906403552, 39.984900148615246 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846048, "sett_type": "3011", "grade_leve": 11, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.368497042374315, 39.985487496292507 ], [ 116.368502444531202, 39.985404962673343 ], [ 116.368050274306512, 39.985360283340029 ], [ 116.367921596839906, 39.985354062268186 ], [ 116.367475538584898, 39.985371840002195 ], [ 116.367484152748816, 39.985467314673308 ], [ 116.367972985170766, 39.985440571306391 ], [ 116.368497042374315, 39.985487496292507 ], [ 116.368497042374315, 39.985487496292507 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846049, "sett_type": "3012", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.368857943404933, 39.985349246274602 ], [ 116.368676787286176, 39.985309251176126 ], [ 116.368628962981617, 39.985451237106481 ], [ 116.368811916656554, 39.985486189839648 ], [ 116.368857943404933, 39.985349246274602 ], [ 116.368857943404933, 39.985349246274602 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846052, "sett_type": "3011", "grade_leve": 9, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.367286827246929, 39.985460917058418 ], [ 116.367292589666818, 39.985369923113829 ], [ 116.366298791156225, 39.985364870357678 ], [ 116.366292670031896, 39.98545190511652 ], [ 116.367286827246929, 39.985460917058418 ], [ 116.367286827246929, 39.985460917058418 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846053, "sett_type": "3011", "grade_leve": 12, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.366146028341404, 39.985459034525853 ], [ 116.366151789436913, 39.985376590044694 ], [ 116.365699297956638, 39.985331851843675 ], [ 116.36557063127421, 39.985325639435644 ], [ 116.365124610157707, 39.985343447012468 ], [ 116.365133223625122, 39.985438831114159 ], [ 116.365622374713269, 39.985412144521746 ], [ 116.366146028341404, 39.985459034525853 ], [ 116.366146028341404, 39.985459034525853 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846054, "sett_type": "3012", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.3629204812419, 39.985424428765704 ], [ 116.362935615505734, 39.985105369856804 ], [ 116.362911537946843, 39.985101624962503 ], [ 116.362916576203332, 39.985046359908317 ], [ 116.362702392107551, 39.985032092053473 ], [ 116.362692317999958, 39.985124262966401 ], [ 116.36241848128688, 39.985102524000766 ], [ 116.362408048716304, 39.985188305773832 ], [ 116.362243820275964, 39.985171267425152 ], [ 116.362223677853578, 39.985312411249069 ], [ 116.362768473916219, 39.985366692107362 ], [ 116.362760921042266, 39.985414401149569 ], [ 116.3629204812419, 39.985424428765704 ], [ 116.3629204812419, 39.985424428765704 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846057, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.369769950775023, 39.98478363008698 ], [ 116.369721784376893, 39.984773791086795 ], [ 116.369511063288726, 39.985390351796092 ], [ 116.369559229301359, 39.985400190487212 ], [ 116.369769950775023, 39.98478363008698 ], [ 116.369769950775023, 39.98478363008698 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846059, "sett_type": "3011", "grade_leve": 9, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.36501607722272, 39.985298870126627 ], [ 116.364028107654676, 39.985291892409293 ], [ 116.364023064920246, 39.985380905938058 ], [ 116.365009955732546, 39.985390944899798 ], [ 116.36501607722272, 39.985298870126627 ], [ 116.36501607722272, 39.985298870126627 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846062, "sett_type": "3011", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.368902892000932, 39.985211404191723 ], [ 116.368643737391821, 39.985159359973473 ], [ 116.368611015163552, 39.985259388150808 ], [ 116.36886585608886, 39.985311347659902 ], [ 116.368902892000932, 39.985211404191723 ], [ 116.368902892000932, 39.985211404191723 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846063, "sett_type": "3000", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.367612139612675, 39.985235404758946 ], [ 116.367476993956785, 39.98523315375018 ], [ 116.367475187620428, 39.985305333190347 ], [ 116.367609973847081, 39.985307494670749 ], [ 116.367612139612675, 39.985235404758946 ], [ 116.367612139612675, 39.985235404758946 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846064, "sett_type": "3000", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.36727678481617, 39.985291737355837 ], [ 116.367276074793139, 39.985222351141402 ], [ 116.367142727527067, 39.985223068928704 ], [ 116.367143437546915, 39.985292455140403 ], [ 116.36727678481617, 39.985291737355837 ], [ 116.36727678481617, 39.985291737355837 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846067, "sett_type": "3000", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.365303245360778, 39.985242492845543 ], [ 116.365303255745374, 39.985160866171725 ], [ 116.36516740202967, 39.985160784928624 ], [ 116.3651673916454, 39.985242411602485 ], [ 116.365303245360778, 39.985242492845543 ], [ 116.365303245360778, 39.985242492845543 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846068, "sett_type": "3011", "grade_leve": 22, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.363957695171592, 39.985077801387916 ], [ 116.363548718613444, 39.985063806678966 ], [ 116.363540792775311, 39.985216811794096 ], [ 116.363944737056428, 39.985236843337653 ], [ 116.363957695171592, 39.985077801387916 ], [ 116.363957695171592, 39.985077801387916 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846071, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.368545975323016, 39.985105578560201 ], [ 116.368401838808737, 39.985104775450345 ], [ 116.368401111285735, 39.985172633618262 ], [ 116.368545607251306, 39.985173346263466 ], [ 116.368545975323016, 39.985105578560201 ], [ 116.368545975323016, 39.985105578560201 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846073, "sett_type": "3011", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.368260945115111, 39.985048261011926 ], [ 116.367518716984719, 39.985004237829301 ], [ 116.367515827669294, 39.985113227197374 ], [ 116.36825374333182, 39.98515023622204 ], [ 116.368260945115111, 39.985048261011926 ], [ 116.368260945115111, 39.985048261011926 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846074, "sett_type": "3011", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.36705037809682, 39.985044189696232 ], [ 116.366308537053186, 39.985037180519676 ], [ 116.366299537814271, 39.985146178293945 ], [ 116.367050364730048, 39.985149215416953 ], [ 116.36705037809682, 39.985044189696232 ], [ 116.36705037809682, 39.985044189696232 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846076, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.3661288324151, 39.985019875958315 ], [ 116.365200848162445, 39.984988935442232 ], [ 116.365197600959405, 39.985087935907188 ], [ 116.36612881905117, 39.985124901679711 ], [ 116.3661288324151, 39.985019875958315 ], [ 116.3661288324151, 39.985019875958315 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846079, "sett_type": "3011", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.364793280858763, 39.98506321135288 ], [ 116.364799402669448, 39.984968256657446 ], [ 116.364110089476469, 39.984965269257749 ], [ 116.364107202298968, 39.985060219474136 ], [ 116.364793280858763, 39.98506321135288 ], [ 116.364793280858763, 39.98506321135288 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846081, "sett_type": "3014", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.368943908077952, 39.984905904068249 ], [ 116.36838892486098, 39.984900860563457 ], [ 116.368382077008604, 39.98504585352822 ], [ 116.368946046565696, 39.98504890547666 ], [ 116.368943908077952, 39.984905904068249 ], [ 116.368943908077952, 39.984905904068249 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846083, "sett_type": "3012", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.362930274559957, 39.984714793580707 ], [ 116.362852650144447, 39.984713106399312 ], [ 116.362841471940584, 39.985009210541484 ], [ 116.362919096315963, 39.985010987696498 ], [ 116.362930274559957, 39.984714793580707 ], [ 116.362930274559957, 39.984714793580707 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846085, "sett_type": "3012", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.36379351031772, 39.984652892961847 ], [ 116.363572849718892, 39.984650418957237 ], [ 116.363566335214571, 39.985009333628639 ], [ 116.363786995775271, 39.985011717598489 ], [ 116.363971000145384, 39.985017304915658 ], [ 116.363982545609645, 39.984662612980301 ], [ 116.36379351031772, 39.984652892961847 ], [ 116.36379351031772, 39.984652892961847 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846096, "sett_type": "3011", "grade_leve": 12, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.374251405224868, 39.984566369461533 ], [ 116.374237792958439, 39.984176790551082 ], [ 116.374100095395491, 39.984178204362806 ], [ 116.37410759406481, 39.984580659528447 ], [ 116.374163311486541, 39.984648094449483 ], [ 116.374400573751871, 39.984837542463978 ], [ 116.374504472966763, 39.984870545989018 ], [ 116.375021838143567, 39.98488203760941 ], [ 116.375025807657025, 39.984767377975437 ], [ 116.374508442657145, 39.984753816370734 ], [ 116.374251405224868, 39.984566369461533 ], [ 116.374251405224868, 39.984566369461533 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846097, "sett_type": "3011", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.368288301741885, 39.984740617966438 ], [ 116.367546432294859, 39.984696593711085 ], [ 116.367543183545862, 39.984805583556096 ], [ 116.368281459391824, 39.984842592705974 ], [ 116.368288301741885, 39.984740617966438 ], [ 116.368288301741885, 39.984740617966438 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846098, "sett_type": "3011", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.36707306117323, 39.98473511199127 ], [ 116.366330860110466, 39.984728102821954 ], [ 116.366321860864531, 39.984837100594028 ], [ 116.367073047818025, 39.984840047719011 ], [ 116.36707306117323, 39.98473511199127 ], [ 116.36707306117323, 39.98473511199127 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846099, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.367445774240352, 39.984835141435305 ], [ 116.36744723261134, 39.984672876134049 ], [ 116.36717981859735, 39.984671341982271 ], [ 116.367178360230014, 39.984833697291208 ], [ 116.367445774240352, 39.984835141435305 ], [ 116.367445774240352, 39.984835141435305 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846101, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.368413736523763, 39.984821001609923 ], [ 116.368416627402837, 39.984700492783752 ], [ 116.368445023297056, 39.984700905918331 ], [ 116.368447553442167, 39.984590567145709 ], [ 116.368367038580857, 39.984589321734667 ], [ 116.368361258117133, 39.984820259807478 ], [ 116.368413736523763, 39.984821001609923 ], [ 116.368413736523763, 39.984821001609923 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846102, "sett_type": "3011", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.366152952165336, 39.984712595622703 ], [ 116.365398917366434, 39.984685553006145 ], [ 116.365398905527741, 39.984778609218722 ], [ 116.366143235043864, 39.984814574706448 ], [ 116.366152952165336, 39.984712595622703 ], [ 116.366152952165336, 39.984712595622703 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846105, "sett_type": "3011", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.365019033903422, 39.984658272202502 ], [ 116.36409898941173, 39.984643278187029 ], [ 116.364093227134902, 39.984738232491495 ], [ 116.365017224957398, 39.984752230886258 ], [ 116.365019033903422, 39.984658272202502 ], [ 116.365019033903422, 39.984658272202502 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846107, "sett_type": "3012", "grade_leve": 12, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.373757762948784, 39.984725497251851 ], [ 116.373757431338987, 39.984506536575907 ], [ 116.373246562887701, 39.984506488643987 ], [ 116.373246534971798, 39.984725539723421 ], [ 116.373757762948784, 39.984725497251851 ], [ 116.373757762948784, 39.984725497251851 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846108, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.369810950686386, 39.98461564542783 ], [ 116.369330729847206, 39.984500606844712 ], [ 116.369296927784276, 39.984605585524655 ], [ 116.369776789315239, 39.984714594311505 ], [ 116.369810950686386, 39.98461564542783 ], [ 116.369810950686386, 39.98461564542783 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846109, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.36827429700368, 39.984635070516219 ], [ 116.368152447285198, 39.98463297950768 ], [ 116.368150642014669, 39.98469642927197 ], [ 116.368272491724881, 39.984698520274002 ], [ 116.36827429700368, 39.984635070516219 ], [ 116.36827429700368, 39.984635070516219 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846110, "sett_type": "3000", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.362936422854546, 39.984408527170309 ], [ 116.362850173438389, 39.984407122500997 ], [ 116.362842953107773, 39.98466569243319 ], [ 116.362929202503196, 39.984667097086195 ], [ 116.362936422854546, 39.984408527170309 ], [ 116.362936422854546, 39.984408527170309 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846114, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.367464513480016, 39.984450922283003 ], [ 116.367001573716408, 39.984436959857447 ], [ 116.36699545066277, 39.984537943934278 ], [ 116.367459468600686, 39.984551994844047 ], [ 116.367464513480016, 39.984450922283003 ], [ 116.367464513480016, 39.984450922283003 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846115, "sett_type": "3011", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.368306671378392, 39.984440816307142 ], [ 116.367564801427775, 39.984396791650468 ], [ 116.367561552676747, 39.984505781497091 ], [ 116.368299829023798, 39.984542791046088 ], [ 116.368306671378392, 39.984440816307142 ], [ 116.368306671378392, 39.984440816307142 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846116, "sett_type": "3011", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.366827961505507, 39.984524309274043 ], [ 116.366827616343059, 39.984412264315203 ], [ 116.366341682751923, 39.984412291023474 ], [ 116.366335918754871, 39.984517234566624 ], [ 116.366827961505507, 39.984524309274043 ], [ 116.366827961505507, 39.984524309274043 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846118, "sett_type": "3011", "grade_leve": 22, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.363993731119237, 39.984312421364173 ], [ 116.363598769065121, 39.984305335880642 ], [ 116.363592994410908, 39.984498386276499 ], [ 116.363984002383077, 39.984511417084491 ], [ 116.363993731119237, 39.984312421364173 ], [ 116.363993731119237, 39.984312421364173 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846119, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.365631836206248, 39.984493089068174 ], [ 116.365631854148205, 39.984352064803588 ], [ 116.365204882597638, 39.984352025863807 ], [ 116.365204864657471, 39.984493050128648 ], [ 116.365631836206248, 39.984493089068174 ], [ 116.365631836206248, 39.984493089068174 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846120, "sett_type": "3011", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.366167357806432, 39.984483715333319 ], [ 116.366172402438636, 39.984382732581111 ], [ 116.365684323188148, 39.984386101130895 ], [ 116.365685748553346, 39.984482485231418 ], [ 116.366167357806432, 39.984483715333319 ], [ 116.366167357806432, 39.984483715333319 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846121, "sett_type": "3011", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.365035243957749, 39.98436657150431 ], [ 116.364116276603554, 39.984355625386883 ], [ 116.364110514449379, 39.984449589731717 ], [ 116.365031278227804, 39.984463593073642 ], [ 116.365035243957749, 39.98436657150431 ], [ 116.365035243957749, 39.98436657150431 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846131, "sett_type": "3011", "grade_leve": 13, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.369258506119891, 39.984292357203955 ], [ 116.36927936782817, 39.984187124952605 ], [ 116.368770036895185, 39.984107320112351 ], [ 116.368259620021107, 39.984163238905133 ], [ 116.368268233502761, 39.984266003489608 ], [ 116.368769304228849, 39.984215496639877 ], [ 116.369258506119891, 39.984292357203955 ], [ 116.369258506119891, 39.984292357203955 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846135, "sett_type": "3012", "grade_leve": 12, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.373818230785076, 39.984185001004626 ], [ 116.373818259208278, 39.983961990074803 ], [ 116.373301277802952, 39.983961948130471 ], [ 116.373301249382749, 39.984184959060855 ], [ 116.373818230785076, 39.984185001004626 ], [ 116.373818230785076, 39.984185001004626 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846136, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.367469222171877, 39.984167247622999 ], [ 116.367470304894184, 39.984132417609104 ], [ 116.367841238189371, 39.984137867568926 ], [ 116.367843766810154, 39.98403904827677 ], [ 116.367470676912532, 39.984033511152404 ], [ 116.36746959350296, 39.984073740947174 ], [ 116.3670832099601, 39.984068045665126 ], [ 116.367080682097907, 39.984161465232404 ], [ 116.367469222171877, 39.984167247622999 ], [ 116.367469222171877, 39.984167247622999 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846139, "sett_type": "3012", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.362959845682866, 39.983908923575463 ], [ 116.362792737918397, 39.983903136602052 ], [ 116.362778691637871, 39.984145157167951 ], [ 116.362945439951332, 39.984150944601417 ], [ 116.362959845682866, 39.983908923575463 ], [ 116.362959845682866, 39.983908923575463 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846140, "sett_type": "3012", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.363784951140573, 39.984133626398105 ], [ 116.363813782194384, 39.983501900977146 ], [ 116.364190417870191, 39.983511984598955 ], [ 116.364196184411796, 39.983383641652175 ], [ 116.363632310700581, 39.983368516010515 ], [ 116.3635977133967, 39.984128584609806 ], [ 116.363784951140573, 39.984133626398105 ], [ 116.363784951140573, 39.984133626398105 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846142, "sett_type": "3011", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.364213771325424, 39.98356558930719 ], [ 116.363878104806147, 39.983558686859475 ], [ 116.3638586269049, 39.984117951837625 ], [ 116.36424892018475, 39.98412603664768 ], [ 116.36425577396048, 39.983926505082422 ], [ 116.364201506341587, 39.983925412020696 ], [ 116.364213771325424, 39.98356558930719 ], [ 116.364213771325424, 39.98356558930719 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846143, "sett_type": "3011", "grade_leve": 12, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.370025972242772, 39.984120846254726 ], [ 116.370082069474762, 39.983957522873446 ], [ 116.36999831649851, 39.983940528181371 ], [ 116.37003068032277, 39.983845631601987 ], [ 116.369912060549424, 39.983821481003396 ], [ 116.369871426302353, 39.983939517128697 ], [ 116.369701046354507, 39.983904992680074 ], [ 116.369745995509447, 39.983773991442902 ], [ 116.369612999038964, 39.983747070130924 ], [ 116.369570207545166, 39.983872669044693 ], [ 116.369514852541656, 39.983861489484745 ], [ 116.369464150267802, 39.984009867614461 ], [ 116.369566592855861, 39.984030617167512 ], [ 116.369598956159123, 39.983935630166712 ], [ 116.369687021259338, 39.983953518367279 ], [ 116.369657894227316, 39.98403869160132 ], [ 116.369824679385815, 39.984072410371752 ], [ 116.369856683384697, 39.983978684025317 ], [ 116.369970630010741, 39.984001850309348 ], [ 116.36993610873931, 39.984102599409582 ], [ 116.370025972242772, 39.984120846254726 ], [ 116.370025972242772, 39.984120846254726 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846144, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.366428005060527, 39.983920973927745 ], [ 116.36599239679677, 39.983913107584257 ], [ 116.365989870649415, 39.9839938377471 ], [ 116.366428354204714, 39.984001700160789 ], [ 116.366427271512222, 39.984036620203931 ], [ 116.366866840099519, 39.984044576612639 ], [ 116.366869005954342, 39.983971316692475 ], [ 116.36642656200118, 39.983963364155038 ], [ 116.366428005060527, 39.983920973927745 ], [ 116.366428005060527, 39.983920973927745 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846150, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.368628455487922, 39.983790805620117 ], [ 116.368556926301764, 39.983788648184991 ], [ 116.368557633572365, 39.983879903547752 ], [ 116.368628443950314, 39.983881431938556 ], [ 116.368628455487922, 39.983790805620117 ], [ 116.368628455487922, 39.983790805620117 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846156, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.368086432302448, 39.983677304792344 ], [ 116.367341690191893, 39.983654347883352 ], [ 116.367338442613459, 39.983754338124648 ], [ 116.368075636944852, 39.98377334499672 ], [ 116.368086432302448, 39.983677304792344 ], [ 116.368086432302448, 39.983677304792344 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846157, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.363031757832019, 39.983615971265174 ], [ 116.362264864791328, 39.98358784117535 ], [ 116.362258022855443, 39.983697826741619 ], [ 116.363024915736588, 39.983725866698585 ], [ 116.363031757832019, 39.983615971265174 ], [ 116.363031757832019, 39.983615971265174 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846159, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.366451772634804, 39.983558796477624 ], [ 116.366008615922198, 39.983554450020918 ], [ 116.366007528116299, 39.983629688441951 ], [ 116.366443855906226, 39.98363395414389 ], [ 116.36644313217171, 39.983672473554513 ], [ 116.366881982635817, 39.983676741277748 ], [ 116.366883070247923, 39.983603302811076 ], [ 116.366451048659627, 39.983599205811657 ], [ 116.366451772634804, 39.983558796477624 ], [ 116.366451772634804, 39.983558796477624 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846161, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.375088868234158, 39.983655944754858 ], [ 116.375092835509562, 39.983558924398999 ], [ 116.374142957244814, 39.983560961580395 ], [ 116.374142944879367, 39.983657977638956 ], [ 116.374284956941111, 39.9836569192029 ], [ 116.375088868234158, 39.983655944754858 ], [ 116.375088868234158, 39.983655944754858 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846162, "sett_type": "3011", "grade_leve": 16, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.373703976195401, 39.983621123218384 ], [ 116.373733097038567, 39.983621090246785 ], [ 116.373734171379567, 39.983654117684274 ], [ 116.373854969178893, 39.983655151166801 ], [ 116.373854987404812, 39.98351214697604 ], [ 116.373468148393798, 39.983513125667507 ], [ 116.373465254192453, 39.983655143178886 ], [ 116.373584972381323, 39.983654106908169 ], [ 116.373584976452975, 39.983622158206138 ], [ 116.373703976195401, 39.983621123218384 ], [ 116.373703976195401, 39.983621123218384 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846165, "sett_type": "3011", "grade_leve": 13, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.369468518932891, 39.983576439758203 ], [ 116.369485785369577, 39.983478051904477 ], [ 116.369018865219005, 39.98340106945907 ], [ 116.36896386964375, 39.983399069985822 ], [ 116.368489035067171, 39.983446120063029 ], [ 116.368505916552692, 39.983543114236959 ], [ 116.368982908503341, 39.983493091756813 ], [ 116.369468518932891, 39.983576439758203 ], [ 116.369468518932891, 39.983576439758203 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846168, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.362438103246632, 39.983402734659322 ], [ 116.362439184623057, 39.983376994124548 ], [ 116.363029989288364, 39.983393142908092 ], [ 116.36304188150433, 39.983134836199923 ], [ 116.362864710730733, 39.983129963452186 ], [ 116.36285966576682, 39.983238056382326 ], [ 116.362441719305963, 39.983226696534977 ], [ 116.362440277680392, 39.983259367315299 ], [ 116.362276766193503, 39.983254927260688 ], [ 116.362270279399894, 39.983398120954014 ], [ 116.362438103246632, 39.983402734659322 ], [ 116.362438103246632, 39.983402734659322 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846171, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.367477610130877, 39.983215975288253 ], [ 116.367085116268584, 39.983210108092145 ], [ 116.367082586986427, 39.983314687214538 ], [ 116.367473283674101, 39.983320466768042 ], [ 116.367472199531505, 39.9833664563319 ], [ 116.368206882428481, 39.983377279702381 ], [ 116.368209411289854, 39.983276840495698 ], [ 116.367476525472696, 39.983266014688169 ], [ 116.367477610130877, 39.983215975288253 ], [ 116.367477610130877, 39.983215975288253 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846172, "sett_type": "3011", "grade_leve": 13, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.370293870193109, 39.983367423337661 ], [ 116.37034996801404, 39.983204010409494 ], [ 116.370266214176326, 39.983187015027134 ], [ 116.37029857833349, 39.983092118706843 ], [ 116.370179957330308, 39.983068057128264 ], [ 116.37013968213185, 39.983186092481091 ], [ 116.369968940986467, 39.9831514770867 ], [ 116.370013890601044, 39.983020476207358 ], [ 116.369880892772599, 39.982993553806963 ], [ 116.369838100830947, 39.983119242377413 ], [ 116.369782745263819, 39.98310806236568 ], [ 116.369732042473984, 39.983256440093776 ], [ 116.369834486115977, 39.983277100486141 ], [ 116.369866849749229, 39.983182113742146 ], [ 116.36995491574794, 39.983200002662912 ], [ 116.369925788418385, 39.983285175665387 ], [ 116.370092575270547, 39.983318985798775 ], [ 116.370124579597459, 39.983225259707638 ], [ 116.370238527403998, 39.983248336932142 ], [ 116.370204005766453, 39.983349175752707 ], [ 116.370293870193109, 39.983367423337661 ], [ 116.370293870193109, 39.983367423337661 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846174, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.366468710836799, 39.983200318131424 ], [ 116.366025553844665, 39.983196061458528 ], [ 116.366024466038255, 39.983271299881686 ], [ 116.366460434675233, 39.983275566279858 ], [ 116.366460070368618, 39.983313995208157 ], [ 116.366898561678383, 39.983318263626387 ], [ 116.366900008702018, 39.983244914671516 ], [ 116.366467986861238, 39.98324072746653 ], [ 116.366468710836799, 39.983200318131424 ], [ 116.366468710836799, 39.983200318131424 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846175, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.375095025108507, 39.983304952369714 ], [ 116.375093959633446, 39.98320190772499 ], [ 116.374244028873406, 39.983203923268739 ], [ 116.374244734535722, 39.983308948203806 ], [ 116.374282844275882, 39.983307915779939 ], [ 116.375095025108507, 39.983304952369714 ], [ 116.375095025108507, 39.983304952369714 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846182, "sett_type": "3011", "grade_leve": 16, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.374030844009994, 39.983108855584447 ], [ 116.374030862236125, 39.982965851386155 ], [ 116.373640065633722, 39.982967822294718 ], [ 116.37364004816601, 39.983104886734253 ], [ 116.373759048178172, 39.983103851961026 ], [ 116.373760850099657, 39.983069831308448 ], [ 116.373911128860513, 39.983068851770554 ], [ 116.373914000175816, 39.98310682699146 ], [ 116.374030844009994, 39.983108855584447 ], [ 116.374030844009994, 39.983108855584447 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846185, "sett_type": "3010", "grade_leve": 12, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.363032978228645, 39.982496955049761 ], [ 116.362799026661904, 39.982491894919796 ], [ 116.362792849955383, 39.983021892347296 ], [ 116.363010989367481, 39.983023915477112 ], [ 116.363032978228645, 39.982496955049761 ], [ 116.363032978228645, 39.982496955049761 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846186, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.367521508205982, 39.982841982345121 ], [ 116.367129013718909, 39.982836114649892 ], [ 116.367126484432845, 39.982940693772875 ], [ 116.367517541172816, 39.982946473347127 ], [ 116.367516097609553, 39.982992373390971 ], [ 116.368251141119075, 39.983003287234979 ], [ 116.368253669984483, 39.982902848027948 ], [ 116.367520423546097, 39.982892021745471 ], [ 116.367521508205982, 39.982841982345121 ], [ 116.367521508205982, 39.982841982345121 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846187, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.370433072283689, 39.982678418896342 ], [ 116.370283177705232, 39.982648635872131 ], [ 116.370186081893394, 39.982960953865039 ], [ 116.370322675909946, 39.982988233036657 ], [ 116.370433072283689, 39.982678418896342 ], [ 116.370433072283689, 39.982678418896342 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846188, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.366196672404044, 39.98289515015 ], [ 116.366062971211392, 39.982892902658392 ], [ 116.366061888018081, 39.982931872552413 ], [ 116.3661481467702, 39.982933374742572 ], [ 116.366147425265055, 39.982954434869477 ], [ 116.366195586514593, 39.982955269182845 ], [ 116.366194864012016, 39.982984158991407 ], [ 116.366349052437897, 39.982986829134148 ], [ 116.366350858618574, 39.982915279593165 ], [ 116.366195951355664, 39.98291261042187 ], [ 116.366196672404044, 39.98289515015 ], [ 116.366196672404044, 39.98289515015 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846190, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.37509974409889, 39.982951891620125 ], [ 116.375097959916204, 39.982845967869729 ], [ 116.374418804209412, 39.982843923563607 ], [ 116.374418790318018, 39.982952909143293 ], [ 116.37509974409889, 39.982951891620125 ], [ 116.37509974409889, 39.982951891620125 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846191, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.36689394453748, 39.982883317533599 ], [ 116.366441795976613, 39.982875017846979 ], [ 116.366440352435802, 39.98292118792488 ], [ 116.366466230383423, 39.982921602838502 ], [ 116.366465147735425, 39.982956162898766 ], [ 116.366891418308199, 39.982964047639861 ], [ 116.36689394453748, 39.982883317533599 ], [ 116.36689394453748, 39.982883317533599 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846193, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.366212152562525, 39.982695697176752 ], [ 116.366065512593707, 39.982692477340457 ], [ 116.366059021838339, 39.982860239383591 ], [ 116.366205661761697, 39.982863549189318 ], [ 116.366212152562525, 39.982695697176752 ], [ 116.366212152562525, 39.982695697176752 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846194, "sett_type": "3011", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.366907247176457, 39.982851800958706 ], [ 116.366923104581559, 39.982515373362467 ], [ 116.366519117828361, 39.982504128206926 ], [ 116.366514792267196, 39.9826027700501 ], [ 116.366391153368994, 39.98259933774473 ], [ 116.366384666007662, 39.98273983083417 ], [ 116.366254558186924, 39.982736677777339 ], [ 116.366252030149781, 39.982832077336482 ], [ 116.366907247176457, 39.982851800958706 ], [ 116.366907247176457, 39.982851800958706 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846195, "sett_type": "3011", "grade_leve": 13, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.369722390963531, 39.982833109475912 ], [ 116.369737141014028, 39.982737334808512 ], [ 116.369270216429896, 39.982660348809745 ], [ 116.369215220335263, 39.982658348920666 ], [ 116.368740021864141, 39.98270530589825 ], [ 116.368757262953821, 39.982802299742346 ], [ 116.369234259374437, 39.982752370842249 ], [ 116.369722390963531, 39.982833109475912 ], [ 116.369722390963531, 39.982833109475912 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846196, "sett_type": "3012", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.371699546039281, 39.982432267285958 ], [ 116.370744415068728, 39.982362148130875 ], [ 116.370719943401099, 39.982577719410685 ], [ 116.371669321053105, 39.982652614530522 ], [ 116.371699546039281, 39.982432267285958 ], [ 116.371699546039281, 39.982432267285958 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846197, "sett_type": "3011", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.368300071762832, 39.982635948460327 ], [ 116.368203741973176, 39.982634904017985 ], [ 116.368199056144164, 39.982737955938809 ], [ 116.368296823438982, 39.982740888419826 ], [ 116.368300071762832, 39.982635948460327 ], [ 116.368300071762832, 39.982635948460327 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846198, "sett_type": "3011", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.36814193336474, 39.982517899455459 ], [ 116.367930944640918, 39.982510885995318 ], [ 116.367915825040527, 39.982693958397178 ], [ 116.368121062506489, 39.982701969238136 ], [ 116.36814193336474, 39.982517899455459 ], [ 116.36814193336474, 39.982517899455459 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846199, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.367525870269034, 39.982457782194203 ], [ 116.367149190864581, 39.982448563464885 ], [ 116.367146662905384, 39.982542703012975 ], [ 116.367515793822704, 39.982555171580209 ], [ 116.367514351382098, 39.982592251983036 ], [ 116.367890676310211, 39.982601655177938 ], [ 116.367894641954678, 39.982508503756598 ], [ 116.367516520117093, 39.982496762993058 ], [ 116.367525870269034, 39.982457782194203 ], [ 116.367525870269034, 39.982457782194203 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846200, "sett_type": "3011", "grade_leve": 16, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.37391838424962, 39.982558834355665 ], [ 116.373918388332825, 39.982526795653939 ], [ 116.37408484627899, 39.982527958679711 ], [ 116.374085920922269, 39.982558736224284 ], [ 116.374188385018755, 39.982557811656328 ], [ 116.374186245427111, 39.982420119644566 ], [ 116.373817017154479, 39.982423954119078 ], [ 116.373815921189802, 39.982560569801585 ], [ 116.37391838424962, 39.982558834355665 ], [ 116.37391838424962, 39.982558834355665 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846204, "sett_type": "3014", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.374687747272219, 39.982722941386243 ], [ 116.374685960457882, 39.982637896811745 ], [ 116.374804965355551, 39.982638936067488 ], [ 116.374809991162962, 39.982698958116501 ], [ 116.374931873092009, 39.982698914767468 ], [ 116.374930806854934, 39.982601899878127 ], [ 116.375025005486009, 39.982598917274238 ], [ 116.375039748511441, 39.982582881875821 ], [ 116.375042986116469, 39.982568928919505 ], [ 116.375034000004135, 39.982550939432365 ], [ 116.374980072445112, 39.982528949082891 ], [ 116.374492907407173, 39.98252588439977 ], [ 116.374484972932947, 39.982720915249288 ], [ 116.374687747272219, 39.982722941386243 ], [ 116.374687747272219, 39.982722941386243 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846506, "sett_type": "3012", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.368631959039035, 39.987327926189479 ], [ 116.368504002188374, 39.987286513417992 ], [ 116.368464813756304, 39.987358291255205 ], [ 116.368592410976404, 39.987399704341996 ], [ 116.368631959039035, 39.987327926189479 ], [ 116.368631959039035, 39.987327926189479 ] ] ] } }, { "type": "Feature", "properties": { "gid": 847076, "sett_type": "3000", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.369540206877318, 39.982350958922787 ], [ 116.369536239038609, 39.982459409531266 ], [ 116.369815897270982, 39.982467156787735 ], [ 116.36981914598951, 39.982360597039396 ], [ 116.369540206877318, 39.982350958922787 ], [ 116.369540206877318, 39.982350958922787 ] ] ] } }, { "type": "Feature", "properties": { "gid": 847080, "sett_type": "3012", "grade_leve": 20, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.369325068494106, 39.980971227624103 ], [ 116.369322178055256, 39.981087506585645 ], [ 116.369375371551982, 39.981133067175421 ], [ 116.369474209304414, 39.981231847860073 ], [ 116.369549690813457, 39.981266760945161 ], [ 116.369646743759304, 39.981272578172018 ], [ 116.369656469133076, 39.981115612271786 ], [ 116.369470290311128, 39.98095673397313 ], [ 116.369325068494106, 39.980971227624103 ], [ 116.369325068494106, 39.980971227624103 ] ] ] } }, { "type": "Feature", "properties": { "gid": 847146, "sett_type": "3012", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.374724268087121, 39.981089827543379 ], [ 116.374726413943392, 39.981178741580948 ], [ 116.374873822325213, 39.981178759952172 ], [ 116.374873808158256, 39.981289905461274 ], [ 116.375070114386091, 39.981289961344984 ], [ 116.375070120580801, 39.981241363308804 ], [ 116.375154971384049, 39.981241451157324 ], [ 116.37515499071408, 39.981089807283865 ], [ 116.374724268087121, 39.981089827543379 ], [ 116.374724268087121, 39.981089827543379 ] ] ] } }, { "type": "Feature", "properties": { "gid": 870556, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.374072023441258, 39.981586791277287 ], [ 116.374266161829397, 39.981619333019232 ], [ 116.374421906636059, 39.981069102200678 ], [ 116.374227766994579, 39.981036559457486 ], [ 116.374072023441258, 39.981586791277287 ], [ 116.374072023441258, 39.981586791277287 ] ] ] } }, { "type": "Feature", "properties": { "gid": 870557, "sett_type": "3102", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.374247749031397, 39.982223858992505 ], [ 116.374641071908044, 39.982223873067547 ], [ 116.374641089734212, 39.98208401873012 ], [ 116.374247766867626, 39.982083914658453 ], [ 116.374247749031397, 39.982223858992505 ], [ 116.374247749031397, 39.982223858992505 ] ] ] } }, { "type": "Feature", "properties": { "gid": 870558, "sett_type": "3102", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.374641089734212, 39.98208401873012 ], [ 116.374645447332583, 39.981744817703365 ], [ 116.374378318371285, 39.981740253352243 ], [ 116.374376131023041, 39.981977126163919 ], [ 116.374249218580502, 39.981977087379143 ], [ 116.374247766867626, 39.982083914658453 ], [ 116.374641089734212, 39.98208401873012 ], [ 116.374641089734212, 39.98208401873012 ] ] ] } }, { "type": "Feature", "properties": { "gid": 889155, "sett_type": "3012", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.36790904134773, 39.987983050739743 ], [ 116.367909769614002, 39.987909252825965 ], [ 116.367932414026313, 39.987909493090008 ], [ 116.367933140608926, 39.98784892463307 ], [ 116.367973756840996, 39.987849231340824 ], [ 116.367975570991689, 39.987715944454777 ], [ 116.368042426159903, 39.987716486842366 ], [ 116.36804315108418, 39.987668967851043 ], [ 116.367848336480719, 39.987671563342161 ], [ 116.367844343102433, 39.987982595774341 ], [ 116.36790904134773, 39.987983050739743 ], [ 116.36790904134773, 39.987983050739743 ] ] ] } }, { "type": "Feature", "properties": { "gid": 943369, "sett_type": "3011", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.375900208395606, 39.982002021397186 ], [ 116.375613291470984, 39.981988827284731 ], [ 116.375587362058766, 39.982319771571291 ], [ 116.375874278665762, 39.982332965431226 ], [ 116.375900208395606, 39.982002021397186 ], [ 116.375900208395606, 39.982002021397186 ] ] ] } }, { "type": "Feature", "properties": { "gid": 943370, "sett_type": "3011", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.375880447634358, 39.981888736938565 ], [ 116.375902409326955, 39.981659762961471 ], [ 116.375793107365794, 39.981653579199531 ], [ 116.375788427107409, 39.981701732220756 ], [ 116.375692069243001, 39.98169625504611 ], [ 116.37569638964905, 39.981650352301948 ], [ 116.375596796292186, 39.981644608899451 ], [ 116.375575194717058, 39.981871332810485 ], [ 116.375880447634358, 39.981888736938565 ], [ 116.375880447634358, 39.981888736938565 ] ] ] } }, { "type": "Feature", "properties": { "gid": 954771, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376076839642067, 39.984101449326815 ], [ 116.376075770544887, 39.984026483512785 ], [ 116.376356223094291, 39.98402402952685 ], [ 116.376355152481366, 39.983960853222555 ], [ 116.3762850390316, 39.983961466469822 ], [ 116.376283613881498, 39.983858962143181 ], [ 116.376114263817101, 39.983860399766037 ], [ 116.376116048154145, 39.983965693592729 ], [ 116.375854295025334, 39.98396795003967 ], [ 116.375852511533836, 39.983856176492331 ], [ 116.375656198620007, 39.983857825367714 ], [ 116.37565762438733, 39.983955199872639 ], [ 116.375608007094087, 39.983955612869657 ], [ 116.375609075000341, 39.984039758293882 ], [ 116.375886286029854, 39.984037303286186 ], [ 116.375886996739965, 39.984103089847771 ], [ 116.376076839642067, 39.984101449326815 ], [ 116.376076839642067, 39.984101449326815 ] ] ] } }, { "type": "Feature", "properties": { "gid": 954767, "sett_type": "3014", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376540945513398, 39.987551152695147 ], [ 116.376054470548496, 39.987523942579671 ], [ 116.37604834976932, 39.987589826318739 ], [ 116.376534824606068, 39.987617036332232 ], [ 116.376540945513398, 39.987551152695147 ], [ 116.376540945513398, 39.987551152695147 ] ] ] } }, { "type": "Feature", "properties": { "gid": 954769, "sett_type": "3011", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.375875481416273, 39.984179598930936 ], [ 116.375594315867048, 39.984179358380409 ], [ 116.375593936207778, 39.984337122344222 ], [ 116.375875101763086, 39.98433727289477 ], [ 116.375875481416273, 39.984179598930936 ], [ 116.375875481416273, 39.984179598930936 ] ] ] } }, { "type": "Feature", "properties": { "gid": 954770, "sett_type": "3014", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376388184980371, 39.984327103808255 ], [ 116.376386416494739, 39.984097345033668 ], [ 116.376151986521492, 39.984098400390472 ], [ 116.376153754978901, 39.984328249147254 ], [ 116.376388184980371, 39.984327103808255 ], [ 116.376388184980371, 39.984327103808255 ] ] ] } }, { "type": "Feature", "properties": { "gid": 954923, "sett_type": "3012", "grade_leve": 9, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376832355649839, 39.983434870451916 ], [ 116.376834156923039, 39.983407779705288 ], [ 116.376640353833267, 39.983400419762852 ], [ 116.376511991573949, 39.983396052958575 ], [ 116.376499740895852, 39.983597477473126 ], [ 116.376821906085141, 39.98360911408755 ], [ 116.376832355649839, 39.983434870451916 ], [ 116.376832355649839, 39.983434870451916 ] ] ] } }, { "type": "Feature", "properties": { "gid": 954924, "sett_type": "3010", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376640353833267, 39.983400419762852 ], [ 116.376834156923039, 39.983407779705288 ], [ 116.376832355649839, 39.983434870451916 ], [ 116.376876581938745, 39.98343554501804 ], [ 116.376895341775182, 39.982945585734157 ], [ 116.376518881718511, 39.982937064497648 ], [ 116.376514192041626, 39.983057934446258 ], [ 116.37665298172827, 39.983061120528554 ], [ 116.376640353833267, 39.983400419762852 ], [ 116.376640353833267, 39.983400419762852 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955286, "sett_type": "3012", "grade_leve": 15, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.377747374587926, 39.981311831139308 ], [ 116.37810875223083, 39.98132065326363 ], [ 116.378113080631721, 39.981215623268255 ], [ 116.377751702919397, 39.98120680108903 ], [ 116.377747374587926, 39.981311831139308 ], [ 116.377747374587926, 39.981311831139308 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955287, "sett_type": "3012", "grade_leve": 9, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.37810875223083, 39.98132065326363 ], [ 116.377747374587926, 39.981311831139308 ], [ 116.377739088650088, 39.981434504414828 ], [ 116.378102263757484, 39.981445844564504 ], [ 116.37810875223083, 39.98132065326363 ], [ 116.37810875223083, 39.98132065326363 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955303, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376565424105848, 39.981688136976786 ], [ 116.376014588526559, 39.981663424195077 ], [ 116.376006664749156, 39.981770528212238 ], [ 116.376557140580928, 39.981795241217334 ], [ 116.376565424105848, 39.981688136976786 ], [ 116.376565424105848, 39.981688136976786 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955304, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376521869800982, 39.982061756988578 ], [ 116.375988294105213, 39.982033696926401 ], [ 116.375979292384741, 39.982135312309012 ], [ 116.376512867873899, 39.982163372206855 ], [ 116.376521869800982, 39.982061756988578 ], [ 116.376521869800982, 39.982061756988578 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955305, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376932847443797, 39.982075822673806 ], [ 116.376645559077602, 39.982056319066345 ], [ 116.376632600569437, 39.982168647903208 ], [ 116.376920248339417, 39.982188151013922 ], [ 116.376932847443797, 39.982075822673806 ], [ 116.376932847443797, 39.982075822673806 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955306, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376986827931248, 39.981717941982048 ], [ 116.376686594630627, 39.981698811186114 ], [ 116.376674714978535, 39.981809608956205 ], [ 116.376974948112959, 39.981828829625385 ], [ 116.376986827931248, 39.981717941982048 ], [ 116.376986827931248, 39.981717941982048 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955455, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.379037235985592, 39.981167752014414 ], [ 116.378260879298665, 39.98114312133211 ], [ 116.37825511160662, 39.981255352420966 ], [ 116.379031108483147, 39.98128007328252 ], [ 116.379037235985592, 39.981167752014414 ], [ 116.379037235985592, 39.981167752014414 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955456, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.379891294841059, 39.981199352341392 ], [ 116.379136125434968, 39.981170628117169 ], [ 116.37912963954507, 39.981273230097088 ], [ 116.379884808729514, 39.981301954145479 ], [ 116.379891294841059, 39.981199352341392 ], [ 116.379891294841059, 39.981199352341392 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955457, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.379860677529322, 39.981593474523343 ], [ 116.379460794637737, 39.981578816121036 ], [ 116.37945430865264, 39.981681418021886 ], [ 116.379854191426631, 39.981696076330898 ], [ 116.379860677529322, 39.981593474523343 ], [ 116.379860677529322, 39.981593474523343 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955458, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.379332425534486, 39.981503249502502 ], [ 116.378238903137202, 39.981467849655928 ], [ 116.378233135829433, 39.981577110866084 ], [ 116.379326657932438, 39.981612600484887 ], [ 116.379332425534486, 39.981503249502502 ], [ 116.379332425534486, 39.981503249502502 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955459, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.379309741190539, 39.981733301488724 ], [ 116.378241749967614, 39.981701927372008 ], [ 116.378237424147386, 39.981786528169977 ], [ 116.379305415163131, 39.981817902122536 ], [ 116.379309741190539, 39.981733301488724 ], [ 116.379309741190539, 39.981733301488724 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955460, "sett_type": "3012", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.377697410692605, 39.98117544645973 ], [ 116.377259451235432, 39.981164367074598 ], [ 116.377255123583254, 39.981264807385017 ], [ 116.37769308295691, 39.981275886704061 ], [ 116.377697410692605, 39.98117544645973 ], [ 116.377697410692605, 39.98117544645973 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955486, "sett_type": "3011", "grade_leve": 18, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.378491267240292, 39.981989402696492 ], [ 116.37849199026563, 39.981959253220083 ], [ 116.378539096516519, 39.981959747571615 ], [ 116.378541267950581, 39.981850849892446 ], [ 116.378293871337348, 39.981848030498526 ], [ 116.378291699663521, 39.981958998112894 ], [ 116.378317589872296, 39.981959332828467 ], [ 116.378317227530232, 39.981980932304708 ], [ 116.378257176660952, 39.981980270982767 ], [ 116.378255366493747, 39.982076208855688 ], [ 116.378551666900194, 39.982079610540062 ], [ 116.378553116685751, 39.981990062775196 ], [ 116.378491267240292, 39.981989402696492 ], [ 116.378491267240292, 39.981989402696492 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955487, "sett_type": "3011", "grade_leve": 18, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.378979594403134, 39.98199784315397 ], [ 116.37898031744443, 39.981967693690102 ], [ 116.379027424707303, 39.981968278853628 ], [ 116.379029596200965, 39.981859291215841 ], [ 116.378782194209052, 39.981856557540645 ], [ 116.378780022487248, 39.981967525117398 ], [ 116.378805913256755, 39.981967860279902 ], [ 116.378805550918131, 39.981989369753514 ], [ 116.3787454987486, 39.98198870739521 ], [ 116.378743688529909, 39.982084735233137 ], [ 116.37903999537464, 39.982088052043338 ], [ 116.379041445192485, 39.981998504303682 ], [ 116.378979594403134, 39.98199784315397 ], [ 116.378979594403134, 39.98199784315397 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955488, "sett_type": "3011", "grade_leve": 18, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.378957213587597, 39.98267022714073 ], [ 116.378957577030974, 39.982640078020857 ], [ 116.379005043854988, 39.982640572807817 ], [ 116.379006855737259, 39.982531675513556 ], [ 116.378759813593192, 39.982528941693332 ], [ 116.378757641873207, 39.982639909264797 ], [ 116.378783532628105, 39.982640154410369 ], [ 116.378782810683788, 39.982661754224146 ], [ 116.378723118169262, 39.982661091568673 ], [ 116.378721307963545, 39.982757029405604 ], [ 116.379017254899466, 39.982760436318145 ], [ 116.379019064314406, 39.982670888241131 ], [ 116.378957213587597, 39.98267022714073 ], [ 116.378957213587597, 39.98267022714073 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955489, "sett_type": "3011", "grade_leve": 18, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.377935983016783, 39.982651059579624 ], [ 116.377936346443178, 39.98262091044657 ], [ 116.377983451526546, 39.982621493873303 ], [ 116.377985622918089, 39.982512506162031 ], [ 116.37773823235581, 39.982509781595319 ], [ 116.377736420313695, 39.982620748887022 ], [ 116.377761950311239, 39.982621083456017 ], [ 116.377761587989639, 39.982642592941637 ], [ 116.377701898166336, 39.982641932431484 ], [ 116.377700088032483, 39.982737960330027 ], [ 116.377996021613797, 39.982741266592058 ], [ 116.377997830933722, 39.982651808445873 ], [ 116.377935983016783, 39.982651059579624 ], [ 116.377935983016783, 39.982651059579624 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955490, "sett_type": "3012", "grade_leve": 13, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.377449138977269, 39.98246750270318 ], [ 116.377449861968984, 39.982437353201682 ], [ 116.377496966048852, 39.982437935828159 ], [ 116.377499137393045, 39.982328948078049 ], [ 116.377251752093102, 39.9823262277081 ], [ 116.377249580520328, 39.982437195396678 ], [ 116.377275469546007, 39.982437529169083 ], [ 116.377275107232308, 39.982459038661233 ], [ 116.377215059106447, 39.982458379526342 ], [ 116.377213249011987, 39.982554407457265 ], [ 116.377509535869379, 39.982557708335392 ], [ 116.377510985575512, 39.982468250517833 ], [ 116.377449138977269, 39.98246750270318 ], [ 116.377449138977269, 39.98246750270318 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955491, "sett_type": "3011", "grade_leve": 18, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.377931042765752, 39.981914984383288 ], [ 116.3779317657729, 39.981884834892412 ], [ 116.377978870847414, 39.981885418311641 ], [ 116.377981042238076, 39.981776430592497 ], [ 116.377733651722224, 39.981773706065134 ], [ 116.377731480103108, 39.98188467372298 ], [ 116.377757369685156, 39.981884917933371 ], [ 116.37775700735223, 39.981906517416895 ], [ 116.37769695796284, 39.981905857274839 ], [ 116.377695147829769, 39.982001885180367 ], [ 116.377991440932803, 39.982005191036691 ], [ 116.377992890681554, 39.981915643242566 ], [ 116.377931042765752, 39.981914984383288 ], [ 116.377931042765752, 39.981914984383288 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955492, "sett_type": "3011", "grade_leve": 14, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.377451391829041, 39.981719360830745 ], [ 116.377452114820713, 39.9816892113272 ], [ 116.377499218917336, 39.981689703961074 ], [ 116.377501390249833, 39.981580806199894 ], [ 116.377254004933675, 39.981577995813915 ], [ 116.3772518333611, 39.981688963510045 ], [ 116.377277722389664, 39.981689297284511 ], [ 116.377277360064554, 39.981710896774494 ], [ 116.37721731194344, 39.981710147638481 ], [ 116.377215501849193, 39.981806175575983 ], [ 116.377511788739767, 39.981809476477686 ], [ 116.377513238445687, 39.981720018653967 ], [ 116.377451391829041, 39.981719360830745 ], [ 116.377451391829041, 39.981719360830745 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955493, "sett_type": "3011", "grade_leve": 18, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.380348286741949, 39.98182729044229 ], [ 116.380349368656042, 39.981803350437417 ], [ 116.38038784787652, 39.981804395678665 ], [ 116.380393618903739, 39.981670385916757 ], [ 116.380115275300497, 39.981663078489653 ], [ 116.38010950445026, 39.981796278342628 ], [ 116.380156614027484, 39.981797495388349 ], [ 116.380155531985153, 39.981822515357067 ], [ 116.3800803724898, 39.981820513930622 ], [ 116.380076045174093, 39.981914024083146 ], [ 116.380408331141567, 39.981922812411888 ], [ 116.380412298948201, 39.981828942649948 ], [ 116.380348286741949, 39.98182729044229 ], [ 116.380348286741949, 39.98182729044229 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955494, "sett_type": "3012", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.379376971213446, 39.98185734331242 ], [ 116.379246795433531, 39.981853505871712 ], [ 116.379241026682521, 39.981972036496472 ], [ 116.379250735888775, 39.981972387329797 ], [ 116.379247490664881, 39.982041417584597 ], [ 116.379392050557954, 39.982045691523012 ], [ 116.379389526691781, 39.982097711775722 ], [ 116.379932533643199, 39.982113677343804 ], [ 116.379937941836886, 39.982003966836587 ], [ 116.37937048176245, 39.981987304122164 ], [ 116.379376971213446, 39.98185734331242 ], [ 116.379376971213446, 39.98185734331242 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955495, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.380645378526708, 39.98148386772656 ], [ 116.380655834793302, 39.981271107030118 ], [ 116.379999172045487, 39.981252351211474 ], [ 116.379993403201112, 39.981370071719702 ], [ 116.380592166478763, 39.98138716917375 ], [ 116.38059036320351, 39.981427579146853 ], [ 116.380522394661639, 39.981425660082678 ], [ 116.380519510709817, 39.981480290452339 ], [ 116.380645378526708, 39.98148386772656 ], [ 116.380645378526708, 39.98148386772656 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955497, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.380601436038773, 39.982019295228255 ], [ 116.380298636190503, 39.982008137974312 ], [ 116.380291789558271, 39.982116859752807 ], [ 116.380594589300003, 39.982128106927725 ], [ 116.380601436038773, 39.982019295228255 ], [ 116.380601436038773, 39.982019295228255 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955498, "sett_type": "3016", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.379065860554945, 39.982291329222853 ], [ 116.378881746755781, 39.98229033460612 ], [ 116.378880653880927, 39.982400761161628 ], [ 116.379065127269783, 39.982401755429898 ], [ 116.379065860554945, 39.982291329222853 ], [ 116.379065860554945, 39.982291329222853 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955499, "sett_type": "3011", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.377574249006202, 39.982638640147314 ], [ 116.377242363993233, 39.98263420469609 ], [ 116.377239832793705, 39.982745622728231 ], [ 116.377571717769371, 39.982750058150174 ], [ 116.377574249006202, 39.982638640147314 ], [ 116.377574249006202, 39.982638640147314 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955500, "sett_type": "3012", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376919858029211, 39.982429251614064 ], [ 116.376619265879739, 39.982411381833089 ], [ 116.376607025450852, 39.982531989597888 ], [ 116.37690761744085, 39.982549859251961 ], [ 116.376919858029211, 39.982429251614064 ], [ 116.376919858029211, 39.982429251614064 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955501, "sett_type": "3011", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376782831438319, 39.982685791878311 ], [ 116.376645838927772, 39.982681433365343 ], [ 116.376639351180373, 39.982804195078806 ], [ 116.37677598408942, 39.982808553931243 ], [ 116.376782831438319, 39.982685791878311 ], [ 116.376782831438319, 39.982685791878311 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955502, "sett_type": "3012", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376377986763117, 39.982531777609992 ], [ 116.376199647423775, 39.982531154200103 ], [ 116.376197080125266, 39.982926600804966 ], [ 116.37637577898883, 39.982927313820433 ], [ 116.376377986763117, 39.982531777609992 ], [ 116.376377986763117, 39.982531777609992 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955504, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376999096149916, 39.981380983117397 ], [ 116.376616162389155, 39.981371837257136 ], [ 116.376611472785143, 39.981491987236957 ], [ 116.376994046901231, 39.981501133402638 ], [ 116.376999096149916, 39.981380983117397 ], [ 116.376999096149916, 39.981380983117397 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955505, "sett_type": "3012", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.377007040166433, 39.981117825672712 ], [ 116.376650354583433, 39.981105682683705 ], [ 116.376644589445746, 39.981201084776281 ], [ 116.377001634494192, 39.981213317323352 ], [ 116.377007040166433, 39.981117825672712 ], [ 116.377007040166433, 39.981117825672712 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955506, "sett_type": "3012", "grade_leve": 8, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.381992097284297, 39.982403272151863 ], [ 116.3817860214794, 39.982395886887439 ], [ 116.381748899652592, 39.983011493429615 ], [ 116.381955334746493, 39.983018878107117 ], [ 116.381992097284297, 39.982403272151863 ], [ 116.381992097284297, 39.982403272151863 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955521, "sett_type": "3012", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.38186487670373, 39.98166612959902 ], [ 116.381806254799088, 39.981665099378127 ], [ 116.381800473010429, 39.981880465546801 ], [ 116.3819547604283, 39.981883034778704 ], [ 116.38195873481429, 39.981739847238345 ], [ 116.381862709622368, 39.981738308505456 ], [ 116.38186487670373, 39.98166612959902 ], [ 116.38186487670373, 39.98166612959902 ] ] ] } }, { "type": "Feature", "properties": { "gid": 957009, "sett_type": "3012", "grade_leve": 25, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.380984381414379, 39.982469747339657 ], [ 116.380744510822154, 39.98245825988846 ], [ 116.380716416700963, 39.982797481066235 ], [ 116.380955208472542, 39.982805999341892 ], [ 116.380984381414379, 39.982469747339657 ], [ 116.380984381414379, 39.982469747339657 ] ] ] } }, { "type": "Feature", "properties": { "gid": 957010, "sett_type": "3011", "grade_leve": 12, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.38100203233958, 39.982242221066343 ], [ 116.38076288070225, 39.982231542788909 ], [ 116.380744510822154, 39.98245825988846 ], [ 116.380984381414379, 39.982469747339657 ], [ 116.38100203233958, 39.982242221066343 ], [ 116.38100203233958, 39.982242221066343 ] ] ] } }, { "type": "Feature", "properties": { "gid": 957043, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376023829722513, 39.982503710306766 ], [ 116.375275256524617, 39.982499649854773 ], [ 116.375274164481908, 39.982604946752609 ], [ 116.376022737643623, 39.982609007176848 ], [ 116.376023829722513, 39.982503710306766 ], [ 116.376023829722513, 39.982503710306766 ] ] ] } }, { "type": "Feature", "properties": { "gid": 957149, "sett_type": "3012", "grade_leve": 25, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.380797476755603, 39.981668314969809 ], [ 116.381012534017032, 39.981674964875808 ], [ 116.381021165111079, 39.981675317278423 ], [ 116.381037737815006, 39.98144275216297 ], [ 116.38103450584326, 39.981405856496963 ], [ 116.381003580137929, 39.981385904474408 ], [ 116.380958628298259, 39.981370734642177 ], [ 116.380920147832441, 39.981371578525057 ], [ 116.380856851524683, 39.981384593904956 ], [ 116.38082304176919, 39.981421702322841 ], [ 116.380797476755603, 39.981668314969809 ], [ 116.380797476755603, 39.981668314969809 ] ] ] } }, { "type": "Feature", "properties": { "gid": 957151, "sett_type": "3014", "grade_leve": 25, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.380993081474713, 39.981929581638546 ], [ 116.38077982268986, 39.981921760337492 ], [ 116.38076288070225, 39.982231542788909 ], [ 116.38100203233958, 39.982242221066343 ], [ 116.381025448215283, 39.981929733186732 ], [ 116.380993081474713, 39.981929581638546 ], [ 116.380993081474713, 39.981929581638546 ] ] ] } }, { "type": "Feature", "properties": { "gid": 957574, "sett_type": "3015", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.381998854569815, 39.982998772229756 ], [ 116.381780550394453, 39.98299472717548 ], [ 116.381768634675609, 39.983366782157319 ], [ 116.381986938728829, 39.983370827115188 ], [ 116.381998854569815, 39.982998772229756 ], [ 116.381998854569815, 39.982998772229756 ] ] ] } }, { "type": "Feature", "properties": { "gid": 957676, "sett_type": "3012", "grade_leve": 8, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.37581365519938, 39.981233094420816 ], [ 116.375655095869746, 39.981226783544116 ], [ 116.375638532430884, 39.981417773488204 ], [ 116.375792417217852, 39.981426519145806 ], [ 116.37581365519938, 39.981233094420816 ], [ 116.37581365519938, 39.981233094420816 ] ] ] } }, { "type": "Feature", "properties": { "gid": 957677, "sett_type": "3012", "grade_leve": 10, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.375655095869746, 39.981226783544116 ], [ 116.37581365519938, 39.981233094420816 ], [ 116.376452576711571, 39.981264371368674 ], [ 116.37646338060469, 39.981129815584374 ], [ 116.375665899393184, 39.981092227465943 ], [ 116.375655095869746, 39.981226783544116 ], [ 116.375655095869746, 39.981226783544116 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958304, "sett_type": "3014", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.375127550351777, 39.987636079630001 ], [ 116.374961085251854, 39.987634550855844 ], [ 116.374956009695083, 39.987964482795803 ], [ 116.37513110364857, 39.987966092171362 ], [ 116.375129652852394, 39.988065269655948 ], [ 116.375624740660285, 39.988069776214978 ], [ 116.375626915730905, 39.987930189646882 ], [ 116.375123198985833, 39.98792560242147 ], [ 116.375127550351777, 39.987636079630001 ], [ 116.375127550351777, 39.987636079630001 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958308, "sett_type": "3012", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376906242875393, 39.987689100318889 ], [ 116.376123125556745, 39.987676504004114 ], [ 116.376120957474683, 39.987760922805897 ], [ 116.376862724894423, 39.987772841502206 ], [ 116.376858390312023, 39.987928179548099 ], [ 116.376978844335738, 39.987930126066196 ], [ 116.376982819512776, 39.987773708450291 ], [ 116.376904074856824, 39.987772439106649 ], [ 116.376906242875393, 39.987689100318889 ], [ 116.376906242875393, 39.987689100318889 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958310, "sett_type": "3014", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.375845917217262, 39.987636118542078 ], [ 116.375184720613603, 39.987606858830361 ], [ 116.375175356470365, 39.987733493761134 ], [ 116.375828283245781, 39.987762402057562 ], [ 116.375823961735549, 39.987816764406034 ], [ 116.376009847801953, 39.987824937250195 ], [ 116.37601885211879, 39.987703072768468 ], [ 116.375841595107019, 39.987695160696546 ], [ 116.375845917217262, 39.987636118542078 ], [ 116.375845917217262, 39.987636118542078 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958311, "sett_type": "3011", "grade_leve": 13, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.379678999057191, 39.987819677780507 ], [ 116.379679792604747, 39.987237221035201 ], [ 116.379515092379137, 39.987237014224831 ], [ 116.379514313011114, 39.987708415538819 ], [ 116.379056179486838, 39.987708036771181 ], [ 116.379056165316001, 39.987819092207552 ], [ 116.379678999057191, 39.987819677780507 ], [ 116.379678999057191, 39.987819677780507 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958313, "sett_type": "3011", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.3787027396707, 39.9873708884476 ], [ 116.37856213938268, 39.987369404116507 ], [ 116.37855525696591, 39.98776278456851 ], [ 116.378695857221473, 39.98776417886895 ], [ 116.3787027396707, 39.9873708884476 ], [ 116.3787027396707, 39.9873708884476 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958315, "sett_type": "3014", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.377502434553776, 39.98748897368479 ], [ 116.377500680319002, 39.987146899527247 ], [ 116.377432367568076, 39.987098100220692 ], [ 116.377179945585894, 39.987122474426599 ], [ 116.377134990191976, 39.987195417109177 ], [ 116.376212344136988, 39.987289606233581 ], [ 116.376164891247768, 39.987225308684046 ], [ 116.375904931779587, 39.987255461647287 ], [ 116.375875440725011, 39.987318400309221 ], [ 116.375873633982692, 39.987388959320214 ], [ 116.375951289574118, 39.987444584795277 ], [ 116.376017804246729, 39.987461703816741 ], [ 116.37728779098569, 39.987322966869002 ], [ 116.377294958398707, 39.987511141870861 ], [ 116.377502434553776, 39.98748897368479 ], [ 116.377502434553776, 39.98748897368479 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958316, "sett_type": "3012", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.378792690139846, 39.986963298829963 ], [ 116.378564349425559, 39.986957938909867 ], [ 116.378550641937153, 39.987295258288903 ], [ 116.37877898251098, 39.987300618097898 ], [ 116.378792690139846, 39.986963298829963 ], [ 116.378792690139846, 39.986963298829963 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958317, "sett_type": "3015", "grade_leve": 10, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.379672992388535, 39.986983707770399 ], [ 116.378948395048184, 39.986963959942784 ], [ 116.378942625613973, 39.98708843032356 ], [ 116.379667222765264, 39.987108178001449 ], [ 116.379672992388535, 39.986983707770399 ], [ 116.379672992388535, 39.986983707770399 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958356, "sett_type": "3015", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.382000611925875, 39.986136492501785 ], [ 116.38199632861577, 39.985882256539526 ], [ 116.381853549203896, 39.985882287206302 ], [ 116.381852078170425, 39.986136528023856 ], [ 116.382000611925875, 39.986136492501785 ], [ 116.382000611925875, 39.986136492501785 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958366, "sett_type": "3012", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.379623539827136, 39.985624899457058 ], [ 116.379216828113258, 39.985615650687265 ], [ 116.379203838657631, 39.985958998872206 ], [ 116.379894641263903, 39.985974644553828 ], [ 116.379901857952177, 39.985783125773644 ], [ 116.37961776673805, 39.985776638602104 ], [ 116.379623539827136, 39.985624899457058 ], [ 116.379623539827136, 39.985624899457058 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958369, "sett_type": "3016", "grade_leve": 25, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.379054260950028, 39.985834495602518 ], [ 116.379061486824369, 39.985568819631894 ], [ 116.378747559823552, 39.985563809583475 ], [ 116.378740694770812, 39.985820665649982 ], [ 116.378632097947104, 39.985818880256076 ], [ 116.37862884594611, 39.985941728355293 ], [ 116.379115018547452, 39.985949543261263 ], [ 116.37911826949464, 39.985835514857797 ], [ 116.379054260950028, 39.985834495602518 ], [ 116.379054260950028, 39.985834495602518 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958381, "sett_type": "3011", "grade_leve": 28, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376825593610661, 39.985708004500204 ], [ 116.376828120668009, 39.985628715152778 ], [ 116.37688169558713, 39.985629650110717 ], [ 116.376885667738136, 39.985496811479145 ], [ 116.376742561848658, 39.985494168711242 ], [ 116.376740395958493, 39.985560948207592 ], [ 116.37665733742584, 39.985559413990956 ], [ 116.376659143058475, 39.985498034639477 ], [ 116.376513521666425, 39.9854953056035 ], [ 116.376509550096557, 39.985624094451381 ], [ 116.376558809565893, 39.985625033295705 ], [ 116.37655664417511, 39.985688032959217 ], [ 116.376495519300036, 39.98568692645167 ], [ 116.376491908450788, 39.985806625297208 ], [ 116.376892099429483, 39.985814131879344 ], [ 116.376895348883366, 39.985709282845583 ], [ 116.376825593610661, 39.985708004500204 ], [ 116.376825593610661, 39.985708004500204 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958393, "sett_type": "3011", "grade_leve": 25, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.379831772298786, 39.985480082696967 ], [ 116.379838998428696, 39.985214406917699 ], [ 116.37952506048093, 39.985209388148974 ], [ 116.379518195186421, 39.98546624403469 ], [ 116.379409594587827, 39.985464455633426 ], [ 116.379406342472464, 39.985587303647215 ], [ 116.379892532019156, 39.985595132051955 ], [ 116.379895783081352, 39.985481103734827 ], [ 116.379831772298786, 39.985480082696967 ], [ 116.379831772298786, 39.985480082696967 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958394, "sett_type": "3012", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.381913690659289, 39.985250012194214 ], [ 116.381834209205806, 39.985249269547325 ], [ 116.381828771724727, 39.985584690422883 ], [ 116.381908253157704, 39.98558543305375 ], [ 116.381913690659289, 39.985250012194214 ], [ 116.381913690659289, 39.985250012194214 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958412, "sett_type": "3012", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376952609520444, 39.985005273023368 ], [ 116.376795121007049, 39.985000124819457 ], [ 116.376778182407563, 39.985307029688641 ], [ 116.376935670804713, 39.985312177800381 ], [ 116.376952609520444, 39.985005273023368 ], [ 116.376952609520444, 39.985005273023368 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958413, "sett_type": "3011", "grade_leve": 28, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376341693397976, 39.985180317438193 ], [ 116.376344220401762, 39.985101028044348 ], [ 116.376397794205388, 39.985101962112005 ], [ 116.376401766272039, 39.984969123406991 ], [ 116.376258663360261, 39.984966483015654 ], [ 116.376256497515911, 39.985033262551653 ], [ 116.376173440719782, 39.985031639715565 ], [ 116.376175246302736, 39.984970350327089 ], [ 116.376029627929583, 39.984967623700882 ], [ 116.376025656443531, 39.98509641262158 ], [ 116.376074914892513, 39.985097350651408 ], [ 116.376073109099366, 39.985160349975502 ], [ 116.376011625949729, 39.985159154860952 ], [ 116.376008015165212, 39.985278943769195 ], [ 116.376408197833243, 39.985286443717975 ], [ 116.376411447218146, 39.985181594624308 ], [ 116.376341693397976, 39.985180317438193 ], [ 116.376341693397976, 39.985180317438193 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958414, "sett_type": "3011", "grade_leve": 25, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.377768811581504, 39.985210630966677 ], [ 116.377769207263128, 39.984927592154968 ], [ 116.37726867973079, 39.984927374506789 ], [ 116.37726828406042, 39.985210413325497 ], [ 116.377768811581504, 39.985210630966677 ], [ 116.377768811581504, 39.985210630966677 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958416, "sett_type": "3016", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.381985265641262, 39.985207923491799 ], [ 116.381984911795897, 39.985162475650483 ], [ 116.381784589331076, 39.985163185219136 ], [ 116.381784943173287, 39.985208633057844 ], [ 116.381985265641262, 39.985207923491799 ], [ 116.381985265641262, 39.985207923491799 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958422, "sett_type": "3012", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.381952939271358, 39.984880274166663 ], [ 116.381842168553078, 39.984879737917218 ], [ 116.381840340083045, 39.985116699772732 ], [ 116.381950751133672, 39.98511732631458 ], [ 116.381952939271358, 39.984880274166663 ], [ 116.381952939271358, 39.984880274166663 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958435, "sett_type": "3011", "grade_leve": 26, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.378538406500184, 39.984550022715176 ], [ 116.378287774477315, 39.984540726771918 ], [ 116.377959448253762, 39.984745250976893 ], [ 116.378156834848156, 39.984936658771176 ], [ 116.378360737217463, 39.984802904887346 ], [ 116.378549881346487, 39.984801281340488 ], [ 116.378538406500184, 39.984550022715176 ], [ 116.378538406500184, 39.984550022715176 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958446, "sett_type": "3011", "grade_leve": 24, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.379569729256815, 39.98460169138157 ], [ 116.379006232433738, 39.984598711835311 ], [ 116.37900404111133, 39.984863123109093 ], [ 116.379567178269355, 39.984866102945887 ], [ 116.379569729256815, 39.98460169138157 ], [ 116.379569729256815, 39.98460169138157 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958447, "sett_type": "3012", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.377000093196614, 39.984840801200185 ], [ 116.377002981365877, 39.984749541981316 ], [ 116.377136740317937, 39.984750395614363 ], [ 116.377134600801497, 39.984610093525617 ], [ 116.377251461077392, 39.984608084998357 ], [ 116.377251823345034, 39.984586935495798 ], [ 116.377353941823287, 39.984584492338257 ], [ 116.37735502319039, 39.984563702096438 ], [ 116.377457861366508, 39.984560538611021 ], [ 116.37745822349973, 39.984540469066971 ], [ 116.377566455456162, 39.984539730447196 ], [ 116.377568620827802, 39.984477630815149 ], [ 116.377738700231163, 39.98447989082544 ], [ 116.377735491235867, 39.984266602734131 ], [ 116.377702769824182, 39.984265465392099 ], [ 116.377699900965467, 39.98420463073726 ], [ 116.377351867804791, 39.983930491138906 ], [ 116.377082165277031, 39.984128666565006 ], [ 116.377281707456206, 39.984275157978239 ], [ 116.377430585267533, 39.984157022539527 ], [ 116.377533054291149, 39.984231616520105 ], [ 116.377532667064301, 39.984448418053312 ], [ 116.377426232971501, 39.984450414938877 ], [ 116.377422633867212, 39.984476877481718 ], [ 116.377324470919262, 39.984474996575088 ], [ 116.377326265401663, 39.984501453680963 ], [ 116.377218034578107, 39.9845021932042 ], [ 116.377217671633815, 39.984528652491072 ], [ 116.377104407541381, 39.984528047600833 ], [ 116.377104044989196, 39.984551447013708 ], [ 116.377004445249653, 39.984548668696824 ], [ 116.3770004804243, 39.984623909672102 ], [ 116.376952298964525, 39.984620989055657 ], [ 116.376950132297225, 39.984693708300362 ], [ 116.376553176147695, 39.984687727499747 ], [ 116.37655028028847, 39.984839734287895 ], [ 116.377000093196614, 39.984840801200185 ], [ 116.377000093196614, 39.984840801200185 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958450, "sett_type": "3011", "grade_leve": 4, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376127809712628, 39.984778798008513 ], [ 116.376122794277364, 39.984635259151382 ], [ 116.375573402675073, 39.984646911659887 ], [ 116.375580569283144, 39.984837336203704 ], [ 116.375667579422952, 39.984835533285164 ], [ 116.375665787672432, 39.984788647114783 ], [ 116.376127809712628, 39.984778798008513 ], [ 116.376127809712628, 39.984778798008513 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958451, "sett_type": "3012", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.381955462390806, 39.984836443829742 ], [ 116.38195333649476, 39.984585895868015 ], [ 116.381840407768991, 39.98458644140316 ], [ 116.381842893287356, 39.984837079047303 ], [ 116.381955462390806, 39.984836443829742 ], [ 116.381955462390806, 39.984836443829742 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958452, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376328089074178, 39.984719190511697 ], [ 116.376177076318115, 39.984717458747753 ], [ 116.376174903928757, 39.984835626197025 ], [ 116.376325916670424, 39.984837357949729 ], [ 116.376328089074178, 39.984719190511697 ], [ 116.376328089074178, 39.984719190511697 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958476, "sett_type": "3015", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.381811293413691, 39.984454621502543 ], [ 116.381873633660987, 39.983500787553844 ], [ 116.382196236068069, 39.983513295717465 ], [ 116.382201281364743, 39.983433464758818 ], [ 116.381761795124618, 39.983416375956963 ], [ 116.38169405037074, 39.984450131519559 ], [ 116.381811293413691, 39.984454621502543 ], [ 116.381811293413691, 39.984454621502543 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958479, "sett_type": "3011", "grade_leve": 18, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.380472388637841, 39.984389104332671 ], [ 116.380469185967385, 39.984123258067058 ], [ 116.380137976506376, 39.984125717568212 ], [ 116.380141179130035, 39.984391563795405 ], [ 116.380472388637841, 39.984389104332671 ], [ 116.380472388637841, 39.984389104332671 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958483, "sett_type": "3011", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.379817535931068, 39.984319593290103 ], [ 116.379654273188919, 39.984318754355407 ], [ 116.379653547116462, 39.984372482834573 ], [ 116.37981716946426, 39.984373321433395 ], [ 116.379817535931068, 39.984319593290103 ], [ 116.379817535931068, 39.984319593290103 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958484, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.375446519976961, 39.984363739326305 ], [ 116.375447248137846, 39.984292551451183 ], [ 116.375085191967472, 39.984290512856113 ], [ 116.375084463806715, 39.984361790736457 ], [ 116.375446519976961, 39.984363739326305 ], [ 116.375446519976961, 39.984363739326305 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958485, "sett_type": "3012", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.379615073001332, 39.984341469833616 ], [ 116.379612567860917, 39.984246526039747 ], [ 116.378843378527108, 39.984258501114667 ], [ 116.378845883582457, 39.984353444839698 ], [ 116.379615073001332, 39.984341469833616 ], [ 116.379615073001332, 39.984341469833616 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958489, "sett_type": "3012", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.378125713114599, 39.983665941225766 ], [ 116.378041938170739, 39.98360347619505 ], [ 116.377656793950479, 39.983873667269123 ], [ 116.378141099833371, 39.98425702199394 ], [ 116.378438117128326, 39.984266541536037 ], [ 116.378435250703262, 39.984185907613146 ], [ 116.378184619317125, 39.984180572419767 ], [ 116.377833705847777, 39.983877270966083 ], [ 116.378125713114599, 39.983665941225766 ], [ 116.378125713114599, 39.983665941225766 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958491, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.379790257323435, 39.983913465037993 ], [ 116.379633108681944, 39.983908210764326 ], [ 116.379617250411044, 39.984186584135301 ], [ 116.379774758549843, 39.984191837987098 ], [ 116.379790257323435, 39.983913465037993 ], [ 116.379790257323435, 39.983913465037993 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958492, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.378679467353464, 39.983758908844855 ], [ 116.378515853737269, 39.983754927012356 ], [ 116.378498899159382, 39.984177026214951 ], [ 116.378662512662686, 39.98418091795277 ], [ 116.378679467353464, 39.983758908844855 ], [ 116.378679467353464, 39.983758908844855 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958508, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.379630606788908, 39.983787798000606 ], [ 116.378819708467162, 39.983762914003172 ], [ 116.378816103159565, 39.983836264464649 ], [ 116.379626641752708, 39.98386105869524 ], [ 116.379630606788908, 39.983787798000606 ], [ 116.379630606788908, 39.983787798000606 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958509, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.379808604241731, 39.983860440271052 ], [ 116.37980753993493, 39.983746595896875 ], [ 116.379702174137037, 39.983746873285426 ], [ 116.379701446742573, 39.983810951345468 ], [ 116.379753230494345, 39.983811263412676 ], [ 116.379753583834699, 39.983860401081415 ], [ 116.379808604241731, 39.983860440271052 ], [ 116.379808604241731, 39.983860440271052 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958513, "sett_type": "3012", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376869001614708, 39.98366666337418 ], [ 116.376476361842521, 39.98365833928937 ], [ 116.376476350010691, 39.98375112551782 ], [ 116.376868989781997, 39.983759449602367 ], [ 116.376869001614708, 39.98366666337418 ], [ 116.376869001614708, 39.98366666337418 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958518, "sett_type": "3011", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376354459797639, 39.983753592400923 ], [ 116.376353750290235, 39.983678266213481 ], [ 116.376108534029498, 39.983679603168923 ], [ 116.376109243529811, 39.983754929350432 ], [ 116.376354459797639, 39.983753592400923 ], [ 116.376354459797639, 39.983753592400923 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958519, "sett_type": "3012", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.377509030650316, 39.983699672336385 ], [ 116.377844549043374, 39.983439698047675 ], [ 116.377759338026294, 39.983367785656107 ], [ 116.377489631541337, 39.983559387539131 ], [ 116.377315614046722, 39.983436807889987 ], [ 116.377312431184876, 39.983019048124191 ], [ 116.37764899170368, 39.983023479713516 ], [ 116.377649722323468, 39.982933572643702 ], [ 116.377189469382841, 39.982931156257081 ], [ 116.377188322568259, 39.983465195669176 ], [ 116.377509030650316, 39.983699672336385 ], [ 116.377509030650316, 39.983699672336385 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958522, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376019009425875, 39.983649818725397 ], [ 116.376019740336019, 39.983557211729639 ], [ 116.375260740631944, 39.983553162651276 ], [ 116.375260009758165, 39.983645679669536 ], [ 116.376019009425875, 39.983649818725397 ], [ 116.376019009425875, 39.983649818725397 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958525, "sett_type": "3011", "grade_leve": 18, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.380501614372747, 39.983634098905405 ], [ 116.380498411708459, 39.983368162620017 ], [ 116.380167201802919, 39.983370621770455 ], [ 116.380170404420397, 39.983636558017409 ], [ 116.380501614372747, 39.983634098905405 ], [ 116.380501614372747, 39.983634098905405 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958527, "sett_type": "3012", "grade_leve": 3, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376324632110581, 39.983632308498436 ], [ 116.376326856199285, 39.983108797506269 ], [ 116.376155708293737, 39.983108346844617 ], [ 116.376153124669798, 39.983631858227646 ], [ 116.376324632110581, 39.983632308498436 ], [ 116.376324632110581, 39.983632308498436 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958531, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.378428569961741, 39.982998682508274 ], [ 116.37842929926471, 39.982919305030983 ], [ 116.377965794019985, 39.982919489187893 ], [ 116.377972943488615, 39.983250038664927 ], [ 116.37837527706067, 39.983577410765449 ], [ 116.37867409573434, 39.983584321136739 ], [ 116.378678423660219, 39.983483881063677 ], [ 116.3784482859608, 39.983479963751542 ], [ 116.378103837194473, 39.983205811477291 ], [ 116.378109257260817, 39.98299953454918 ], [ 116.378428569961741, 39.982998682508274 ], [ 116.378428569961741, 39.982998682508274 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958533, "sett_type": "3011", "grade_leve": 5, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.379839952765195, 39.983371821293936 ], [ 116.379194822165545, 39.983347944124297 ], [ 116.379187255284478, 39.983467556397514 ], [ 116.379832385663207, 39.98349143339189 ], [ 116.379839952765195, 39.983371821293936 ], [ 116.379839952765195, 39.983371821293936 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958534, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.379023343684679, 39.982951582749969 ], [ 116.37872416080944, 39.982944399037521 ], [ 116.378702517046278, 39.983478728085473 ], [ 116.379001340032161, 39.983485911909597 ], [ 116.379023343684679, 39.982951582749969 ], [ 116.379023343684679, 39.982951582749969 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958537, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376038469651419, 39.983301152405517 ], [ 116.376036684413194, 39.983202968287991 ], [ 116.37526114372379, 39.983211536136032 ], [ 116.375262928893349, 39.983309810203039 ], [ 116.376038469651419, 39.983301152405517 ], [ 116.376038469651419, 39.983301152405517 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958542, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.377926960985135, 39.982905938132959 ], [ 116.377924808217728, 39.982868951768303 ], [ 116.377847857679356, 39.982871907889553 ], [ 116.377857879353471, 39.983236923085897 ], [ 116.377936987285054, 39.983234954817767 ], [ 116.377926960985135, 39.982905938132959 ], [ 116.377926960985135, 39.982905938132959 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958545, "sett_type": "3011", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376312483067323, 39.983037445432501 ], [ 116.376312851860675, 39.982964997996433 ], [ 116.376121928612704, 39.982964838198406 ], [ 116.376121559822636, 39.983037285636897 ], [ 116.376312483067323, 39.983037445432501 ], [ 116.376312483067323, 39.983037445432501 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958550, "sett_type": "3011", "grade_leve": 6, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376047142309162, 39.982960597128667 ], [ 116.376047514322309, 39.982862860714548 ], [ 116.375260469297487, 39.982861271125799 ], [ 116.375260097286784, 39.982959097546242 ], [ 116.376047142309162, 39.982960597128667 ], [ 116.376047142309162, 39.982960597128667 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958555, "sett_type": "3012", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376522912754822, 39.982341914521562 ], [ 116.37652580235445, 39.982238955706642 ], [ 116.376384856576806, 39.982231902635689 ], [ 116.376383771021324, 39.982285901573213 ], [ 116.375958061240127, 39.982273929118662 ], [ 116.37595481917235, 39.982321900597285 ], [ 116.376522912754822, 39.982341914521562 ], [ 116.376522912754822, 39.982341914521562 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958609, "sett_type": "3011", "grade_leve": 1, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.380609187735089, 39.983273387284022 ], [ 116.381087493505973, 39.983269274277255 ], [ 116.381088587045937, 39.983154527993577 ], [ 116.380609203342559, 39.983151082252178 ], [ 116.380609187735089, 39.983273387284022 ], [ 116.380609187735089, 39.983273387284022 ] ] ] } }, { "type": "Feature", "properties": { "gid": 980302, "sett_type": "3012", "grade_leve": 15, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.375389954925481, 39.985281132659068 ], [ 116.375346091043809, 39.985280009964185 ], [ 116.375346454589248, 39.985248600858085 ], [ 116.375157696786616, 39.985245475091816 ], [ 116.375143248834462, 39.985766569417812 ], [ 116.375329849310731, 39.98576942743005 ], [ 116.375330572672055, 39.985735858025791 ], [ 116.375365448142247, 39.985735820428786 ], [ 116.375363300338762, 39.985661755778615 ], [ 116.375339570920801, 39.985659531449237 ], [ 116.375342485480246, 39.985359660590476 ], [ 116.375387787429489, 39.98536150170213 ], [ 116.375389954925481, 39.985281132659068 ], [ 116.375389954925481, 39.985281132659068 ] ] ] } }, { "type": "Feature", "properties": { "gid": 980303, "sett_type": "3012", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.375391037612161, 39.985249272797702 ], [ 116.375346454589248, 39.985248600858085 ], [ 116.375346091043809, 39.985280009964185 ], [ 116.375389954925481, 39.985281132659068 ], [ 116.375391037612161, 39.985249272797702 ], [ 116.375391037612161, 39.985249272797702 ] ] ] } }, { "type": "Feature", "properties": { "gid": 980304, "sett_type": "3012", "grade_leve": 2, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.375329849310731, 39.98576942743005 ], [ 116.37573864969292, 39.985775829020085 ], [ 116.375739371414568, 39.985755219096397 ], [ 116.375784314725962, 39.985755891245432 ], [ 116.375791899377234, 39.985488054156576 ], [ 116.37547621925269, 39.985483441622065 ], [ 116.375478378196846, 39.985470209845957 ], [ 116.375474784603981, 39.985455814294184 ], [ 116.375463281415577, 39.985438727348409 ], [ 116.37545069902005, 39.985426231378753 ], [ 116.375429128018069, 39.985414195060088 ], [ 116.375405039474202, 39.985408191219214 ], [ 116.375386703033243, 39.985406771015931 ], [ 116.375387787429489, 39.98536150170213 ], [ 116.375342485480246, 39.985359660590476 ], [ 116.375339570920801, 39.985659531449237 ], [ 116.375363300338762, 39.985661755778615 ], [ 116.375365448142247, 39.985735820428786 ], [ 116.375330572672055, 39.985735858025791 ], [ 116.375329849310731, 39.98576942743005 ], [ 116.375329849310731, 39.98576942743005 ] ] ] } }, { "type": "Feature", "properties": { "gid": 842592, "sett_type": "3011", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.367298183739067, 39.980953345526949 ], [ 116.367296374335496, 39.981049734029604 ], [ 116.367483636434628, 39.98105182521487 ], [ 116.367485445850889, 39.980955436722077 ], [ 116.367298183739067, 39.980953345526949 ], [ 116.367298183739067, 39.980953345526949 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846016, "sett_type": "3011", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.368839731107073, 39.98723334234996 ], [ 116.368556498435495, 39.98714929109628 ], [ 116.368522343386303, 39.987211252758904 ], [ 116.368807012399003, 39.987303851523613 ], [ 116.368839731107073, 39.98723334234996 ], [ 116.368839731107073, 39.98723334234996 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846125, "sett_type": "3011", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.374595855377777, 39.984383564933552 ], [ 116.374595502605288, 39.984330557487823 ], [ 116.37448908208971, 39.984330585088053 ], [ 116.374489075332761, 39.984383592930456 ], [ 116.374595855377777, 39.984383564933552 ], [ 116.374595855377777, 39.984383564933552 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846201, "sett_type": "3000", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.369282831102993, 39.982394933551731 ], [ 116.368727482883628, 39.982378185357931 ], [ 116.368726035199288, 39.982455944062878 ], [ 116.369279945675331, 39.982471884094331 ], [ 116.369282831102993, 39.982394933551731 ], [ 116.369282831102993, 39.982394933551731 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846311, "sett_type": "3000", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.362969133836117, 39.984346022262663 ], [ 116.362969861967585, 39.984272224219843 ], [ 116.362762144749524, 39.984269286187548 ], [ 116.362760338771011, 39.984341015888063 ], [ 116.362969133836117, 39.984346022262663 ], [ 116.362969133836117, 39.984346022262663 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846314, "sett_type": "3011", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.368316665175655, 39.982171365751952 ], [ 116.368318470239032, 39.982109625911626 ], [ 116.368138031719511, 39.982107971211583 ], [ 116.368136585683089, 39.982173040457269 ], [ 116.368316665175655, 39.982171365751952 ], [ 116.368316665175655, 39.982171365751952 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846315, "sett_type": "3011", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.367962979570194, 39.982156348375554 ], [ 116.368096330726019, 39.982156353747442 ], [ 116.36809814470945, 39.982024416734731 ], [ 116.3679662314957, 39.982022789535833 ], [ 116.367962979570194, 39.982156348375554 ], [ 116.367962979570194, 39.982156348375554 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846316, "sett_type": "3011", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.367598874601882, 39.982144678316786 ], [ 116.367683340754326, 39.982147536626691 ], [ 116.367685875051905, 39.982003989112798 ], [ 116.367600690039779, 39.982001041750628 ], [ 116.367598874601882, 39.982144678316786 ], [ 116.367598874601882, 39.982144678316786 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846510, "sett_type": "3011", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.367111643113304, 39.986588894452723 ], [ 116.367111654717078, 39.986497728181412 ], [ 116.367037613260763, 39.98649764720642 ], [ 116.367037242221556, 39.986588903955131 ], [ 116.367111643113304, 39.986588894452723 ], [ 116.367111643113304, 39.986588894452723 ] ] ] } }, { "type": "Feature", "properties": { "gid": 846511, "sett_type": "3011", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.366752589506561, 39.986512429258148 ], [ 116.366572520448585, 39.986512312215588 ], [ 116.366572509625072, 39.986597358737285 ], [ 116.366754375785248, 39.986597473359872 ], [ 116.366754376907735, 39.986588653720631 ], [ 116.366752589506561, 39.986512429258148 ], [ 116.366752589506561, 39.986512429258148 ] ] ] } }, { "type": "Feature", "properties": { "gid": 847073, "sett_type": "3012", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.371048201305086, 39.982134355978111 ], [ 116.371052525440263, 39.982052724028215 ], [ 116.370934617992049, 39.982043868183901 ], [ 116.370940018474627, 39.981978434245669 ], [ 116.37105576910092, 39.981987112743262 ], [ 116.371062977638289, 39.981838160014959 ], [ 116.370834711716853, 39.981823949295944 ], [ 116.37081310582488, 39.982117543837312 ], [ 116.371048201305086, 39.982134355978111 ], [ 116.371048201305086, 39.982134355978111 ] ] ] } }, { "type": "Feature", "properties": { "gid": 847074, "sett_type": "3012", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.371048201305086, 39.982134355978111 ], [ 116.371778664671922, 39.982186572636785 ], [ 116.371783708517285, 39.982100170120738 ], [ 116.371845540157537, 39.98210378616433 ], [ 116.372041460951081, 39.982117052553399 ], [ 116.372097541345738, 39.982120585920192 ], [ 116.372156559980695, 39.981636155724125 ], [ 116.372020313630046, 39.981624797638183 ], [ 116.371991161367845, 39.981887261607099 ], [ 116.371062977638289, 39.981838160014959 ], [ 116.37105576910092, 39.981987112743262 ], [ 116.371181945066425, 39.981996588972898 ], [ 116.371176544532503, 39.982062022870196 ], [ 116.371052525440263, 39.982052724028215 ], [ 116.371048201305086, 39.982134355978111 ], [ 116.371048201305086, 39.982134355978111 ] ] ] } }, { "type": "Feature", "properties": { "gid": 847075, "sett_type": "3000", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.371708283942624, 39.981567121961014 ], [ 116.372377293072844, 39.981613396335234 ], [ 116.372386292264807, 39.981521049502341 ], [ 116.371715844587982, 39.981477566544342 ], [ 116.371708283942624, 39.981567121961014 ], [ 116.371708283942624, 39.981567121961014 ] ] ] } }, { "type": "Feature", "properties": { "gid": 847077, "sett_type": "3000", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.369014696735093, 39.982262801111702 ], [ 116.369311962465488, 39.982272501481248 ], [ 116.369324590736184, 39.981900440542745 ], [ 116.369028044015153, 39.981888759219828 ], [ 116.369014696735093, 39.982262801111702 ], [ 116.369014696735093, 39.982262801111702 ] ] ] } }, { "type": "Feature", "properties": { "gid": 847078, "sett_type": "3012", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.368886164846529, 39.98107690403414 ], [ 116.369322178055256, 39.981087506585645 ], [ 116.369325068494106, 39.980971227624103 ], [ 116.369261085931214, 39.98096932907616 ], [ 116.369261092095385, 39.980920911029983 ], [ 116.369173026376501, 39.980918953316369 ], [ 116.369170863738788, 39.980965484189596 ], [ 116.36904038323911, 39.980962590994089 ], [ 116.369039311188658, 39.980913094371061 ], [ 116.368961669984898, 39.980913103801939 ], [ 116.368962742410403, 39.980959630542309 ], [ 116.368886179774535, 39.980959638766734 ], [ 116.368886164846529, 39.98107690403414 ], [ 116.368886164846529, 39.98107690403414 ] ] ] } }, { "type": "Feature", "properties": { "gid": 847079, "sett_type": "3011", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.368858061277592, 39.981600088917922 ], [ 116.369231169893865, 39.981608791239069 ], [ 116.369231183952579, 39.981498365701142 ], [ 116.369124426837104, 39.981496431928363 ], [ 116.369123713983214, 39.981448914766055 ], [ 116.368862034947682, 39.981445020102989 ], [ 116.368858061277592, 39.981600088917922 ], [ 116.368858061277592, 39.981600088917922 ] ] ] } }, { "type": "Feature", "properties": { "gid": 847081, "sett_type": "3011", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.369519080946404, 39.981706611809777 ], [ 116.369619010431549, 39.981704685630142 ], [ 116.369621908546975, 39.981528379126843 ], [ 116.3695162276112, 39.981531302532744 ], [ 116.369519080946404, 39.981706611809777 ], [ 116.369519080946404, 39.981706611809777 ] ] ] } }, { "type": "Feature", "properties": { "gid": 874465, "sett_type": "3012", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.367037613260763, 39.98649764720642 ], [ 116.366752591407902, 39.98649748986908 ], [ 116.366752589506561, 39.986512429258148 ], [ 116.366754376907735, 39.986588653720631 ], [ 116.367037242221556, 39.986588903955131 ], [ 116.367037613260763, 39.98649764720642 ], [ 116.367037613260763, 39.98649764720642 ] ] ] } }, { "type": "Feature", "properties": { "gid": 874480, "sett_type": "3012", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.371845540157537, 39.98210378616433 ], [ 116.371803772278867, 39.982630854586006 ], [ 116.371998254847767, 39.982643582444545 ], [ 116.372041460951081, 39.982117052553399 ], [ 116.371845540157537, 39.98210378616433 ], [ 116.371845540157537, 39.98210378616433 ] ] ] } }, { "type": "Feature", "properties": { "gid": 943534, "sett_type": "3201", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.377250026692238, 39.987396622066932 ], [ 116.377032847585284, 39.987394682965352 ], [ 116.377028132982431, 39.98771012478435 ], [ 116.377550948301618, 39.987714815704273 ], [ 116.37755312495797, 39.987564249725423 ], [ 116.377247488670179, 39.987561497848311 ], [ 116.377250026692238, 39.987396622066932 ], [ 116.377250026692238, 39.987396622066932 ] ] ] } }, { "type": "Feature", "properties": { "gid": 943535, "sett_type": "3201", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.377546023452993, 39.986858775876215 ], [ 116.377375226470861, 39.986855527774395 ], [ 116.377368366865724, 39.987072965752283 ], [ 116.377539163796044, 39.987076213813239 ], [ 116.377546023452993, 39.986858775876215 ], [ 116.377546023452993, 39.986858775876215 ] ] ] } }, { "type": "Feature", "properties": { "gid": 943542, "sett_type": "3201", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.377577958386269, 39.987385942184929 ], [ 116.377678998892776, 39.987388901041619 ], [ 116.377701330375984, 39.987093330926513 ], [ 116.378324842325881, 39.987121064794586 ], [ 116.378316174058583, 39.987420310934212 ], [ 116.378433398387159, 39.987430726375109 ], [ 116.378467998574692, 39.986806568459713 ], [ 116.377596734193943, 39.986775388501776 ], [ 116.377577958386269, 39.987385942184929 ], [ 116.377577958386269, 39.987385942184929 ] ] ] } }, { "type": "Feature", "properties": { "gid": 943543, "sett_type": "3201", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.377553422274232, 39.988052299310738 ], [ 116.37840167114588, 39.988084760262105 ], [ 116.378433398387159, 39.987430726375109 ], [ 116.378316174058583, 39.987420310934212 ], [ 116.37829924088922, 39.987675736939664 ], [ 116.377674649022921, 39.987662854100165 ], [ 116.377678998892776, 39.987388901041619 ], [ 116.377577958386269, 39.987385942184929 ], [ 116.377553422274232, 39.988052299310738 ], [ 116.377553422274232, 39.988052299310738 ] ] ] } }, { "type": "Feature", "properties": { "gid": 943663, "sett_type": "3201", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.375162086924519, 39.984651854613546 ], [ 116.375211703271688, 39.984651530867296 ], [ 116.37521243313472, 39.984566933534659 ], [ 116.375218189257041, 39.984539478425333 ], [ 116.375233652570188, 39.984514892695707 ], [ 116.375257025085489, 39.984495608205421 ], [ 116.375286149356683, 39.984483427229861 ], [ 116.375318148931754, 39.984479522841866 ], [ 116.375349787907496, 39.984484258524084 ], [ 116.375378189997065, 39.984497277387753 ], [ 116.375400838580077, 39.984517142190796 ], [ 116.375415576606201, 39.984542145310272 ], [ 116.375420247129611, 39.984569769157225 ], [ 116.375421315497832, 39.984650224719772 ], [ 116.37548028050179, 39.984649891368953 ], [ 116.375480310805315, 39.984412211048713 ], [ 116.375429615315539, 39.984412175520973 ], [ 116.375429606950917, 39.984477782849638 ], [ 116.375411272613292, 39.984459713308972 ], [ 116.375370287545763, 39.984438788289879 ], [ 116.375325346053188, 39.98443001709898 ], [ 116.375280043510969, 39.984433755855143 ], [ 116.375237615843162, 39.984449461081368 ], [ 116.375201658513078, 39.984476408900683 ], [ 116.37517576708089, 39.984512975458486 ], [ 116.375163537273465, 39.984556186950861 ], [ 116.375162086924519, 39.984651854613546 ], [ 116.375162086924519, 39.984651854613546 ] ] ] } }, { "type": "Feature", "properties": { "gid": 943664, "sett_type": "3201", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.37548028050179, 39.984649891368953 ], [ 116.375421315497832, 39.984650224719772 ], [ 116.375422384187345, 39.984728160384371 ], [ 116.375413032343417, 39.984757599240822 ], [ 116.375398288547458, 39.984777864278556 ], [ 116.375375276008128, 39.984792648453301 ], [ 116.375344354233007, 39.984802401378317 ], [ 116.375312354737531, 39.984805405774665 ], [ 116.375280715926635, 39.984799770169133 ], [ 116.375252673573712, 39.984786121035938 ], [ 116.375230744302314, 39.984765535597646 ], [ 116.375217085053762, 39.984740171417506 ], [ 116.375211335609407, 39.984715248660684 ], [ 116.375211703271688, 39.984651530867296 ], [ 116.375162086924519, 39.984651854613546 ], [ 116.375161359805276, 39.984714942823061 ], [ 116.375168545898816, 39.984751563534424 ], [ 116.375186877559102, 39.98478916212904 ], [ 116.375218512711086, 39.984822516505162 ], [ 116.375258778276361, 39.984844702040121 ], [ 116.375303719493303, 39.984854643082286 ], [ 116.375349021919718, 39.984852164311015 ], [ 116.375390370668299, 39.98484033024797 ], [ 116.375432081142534, 39.984811936530811 ], [ 116.375480259836465, 39.984811974764618 ], [ 116.37548028050179, 39.984649891368953 ], [ 116.37548028050179, 39.984649891368953 ] ] ] } }, { "type": "Feature", "properties": { "gid": 943665, "sett_type": "3201", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376944081386569, 39.984209894260019 ], [ 116.376880078869362, 39.984209599855056 ], [ 116.376876814509444, 39.984431354146828 ], [ 116.376869618860965, 39.984465560132328 ], [ 116.376851636612983, 39.98449725729548 ], [ 116.376823946722411, 39.984524554624777 ], [ 116.376788347257289, 39.984545740367793 ], [ 116.376746995811942, 39.984559372389384 ], [ 116.376702409440725, 39.98456472814614 ], [ 116.376657464707449, 39.98456135469845 ], [ 116.376611441988572, 39.984553212630907 ], [ 116.376574409775259, 39.984533901774086 ], [ 116.376544570170722, 39.984503873940078 ], [ 116.376533427038297, 39.984478776527069 ], [ 116.376528397698948, 39.98444359318411 ], [ 116.376536338112899, 39.984207434589109 ], [ 116.376456516316949, 39.984205987583728 ], [ 116.376449653674356, 39.984449434781197 ], [ 116.376453605356033, 39.984476519562698 ], [ 116.376466185649562, 39.984509715119529 ], [ 116.376490631110926, 39.984544968264792 ], [ 116.376528380197144, 39.984580837594237 ], [ 116.376581950660636, 39.984611290797488 ], [ 116.376636242733127, 39.984623204110775 ], [ 116.376693412446315, 39.984627104882414 ], [ 116.376749864392067, 39.984621466895973 ], [ 116.376803081760031, 39.984605212779705 ], [ 116.376850547545445, 39.984578615089092 ], [ 116.376860616498931, 39.984569515123745 ], [ 116.376864562316499, 39.984643128065059 ], [ 116.376933958303525, 39.984643146923865 ], [ 116.376944081386569, 39.984209894260019 ], [ 116.376944081386569, 39.984209894260019 ] ] ] } }, { "type": "Feature", "properties": { "gid": 943666, "sett_type": "3201", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376536338112899, 39.984207434589109 ], [ 116.376543561304402, 39.983956427340594 ], [ 116.376547163599341, 39.983903865748495 ], [ 116.376561909368604, 39.983873791683926 ], [ 116.376583845127044, 39.983853249788126 ], [ 116.376623398617312, 39.983838539437485 ], [ 116.376676614295619, 39.983833264642023 ], [ 116.376718683190475, 39.983831781283634 ], [ 116.37676218929893, 39.983839026149987 ], [ 116.376801019869575, 39.983856445475055 ], [ 116.376839850046224, 39.983877464705628 ], [ 116.376867892347207, 39.98390641473334 ], [ 116.376884428269904, 39.98393807647669 ], [ 116.376880078869362, 39.984209599855056 ], [ 116.376944081386569, 39.984209894260019 ], [ 116.376962114344295, 39.983781133304944 ], [ 116.376883729283051, 39.983780133637055 ], [ 116.376883005414015, 39.983817302863386 ], [ 116.376847051504214, 39.983797630566023 ], [ 116.376770826619463, 39.983777729756326 ], [ 116.376696398267015, 39.983769796804445 ], [ 116.376650014566579, 39.983772184618246 ], [ 116.376593922078584, 39.983780522316763 ], [ 116.376548615573739, 39.98379613863716 ], [ 116.37651013911956, 39.983824707405645 ], [ 116.376484965431416, 39.983860732090754 ], [ 116.376469138224991, 39.983912856419288 ], [ 116.376456516316949, 39.984205987583728 ], [ 116.376536338112899, 39.984207434589109 ], [ 116.376536338112899, 39.984207434589109 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955496, "sett_type": "3011", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.379751733365509, 39.981452730740074 ], [ 116.379570851247991, 39.981444798877277 ], [ 116.379563286604636, 39.981545871820323 ], [ 116.379744168660167, 39.981553803633901 ], [ 116.379751733365509, 39.981452730740074 ], [ 116.379751733365509, 39.981452730740074 ] ] ] } }, { "type": "Feature", "properties": { "gid": 955503, "sett_type": "3011", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.376384473209029, 39.982418645444973 ], [ 116.376223392891291, 39.98241431404746 ], [ 116.376219787365216, 39.982492614643952 ], [ 116.376380867657829, 39.982496946021584 ], [ 116.376384473209029, 39.982418645444973 ], [ 116.376384473209029, 39.982418645444973 ] ] ] } }, { "type": "Feature", "properties": { "gid": 957150, "sett_type": "3012", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.381012534017032, 39.981674964875808 ], [ 116.380797476755603, 39.981668314969809 ], [ 116.38077982268986, 39.981921760337492 ], [ 116.380993081474713, 39.981929581638546 ], [ 116.381012534017032, 39.981674964875808 ], [ 116.381012534017032, 39.981674964875808 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958445, "sett_type": "3011", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.377925998955916, 39.984809991404681 ], [ 116.377862001643976, 39.984747417353894 ], [ 116.377754120048778, 39.984809442001321 ], [ 116.377818836468634, 39.984870035176669 ], [ 116.377925998955916, 39.984809991404681 ], [ 116.377925998955916, 39.984809991404681 ] ] ] } }, { "type": "Feature", "properties": { "gid": 958458, "sett_type": "3011", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.377821016546903, 39.984692830257551 ], [ 116.377780747500751, 39.984663171488627 ], [ 116.377687249701637, 39.984722572195487 ], [ 116.37772679922071, 39.984753851483148 ], [ 116.377821016546903, 39.984692830257551 ], [ 116.377821016546903, 39.984692830257551 ] ] ] } }, { "type": "Feature", "properties": { "gid": 959064, "sett_type": "3011", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.380426954732869, 39.982523881215052 ], [ 116.380439933779897, 39.982267739949599 ], [ 116.380102972043673, 39.982261205412144 ], [ 116.380089633581292, 39.982517347164226 ], [ 116.380426954732869, 39.982523881215052 ], [ 116.380426954732869, 39.982523881215052 ] ] ] } }, { "type": "Feature", "properties": { "gid": 979963, "sett_type": "3011", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.37819914006576, 39.985922706902336 ], [ 116.378200233321664, 39.985809040492015 ], [ 116.378124720615347, 39.985808664592078 ], [ 116.37812691124104, 39.985549023081312 ], [ 116.37783493111678, 39.985547511464461 ], [ 116.377832740532057, 39.985807063001424 ], [ 116.377691785968054, 39.985806303301217 ], [ 116.377691052314773, 39.985919969372382 ], [ 116.37819914006576, 39.985922706902336 ], [ 116.37819914006576, 39.985922706902336 ] ] ] } }, { "type": "Feature", "properties": { "gid": 980035, "sett_type": "3012", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.380629947395278, 39.992498078297324 ], [ 116.380639006643094, 39.99196043266317 ], [ 116.380579668684845, 39.991960395681069 ], [ 116.380644815080899, 39.988716692166705 ], [ 116.380794419428767, 39.988716739100269 ], [ 116.380814682690499, 39.987744221275243 ], [ 116.380728012644113, 39.98774429819651 ], [ 116.380729107328378, 39.987620462326042 ], [ 116.380011306611721, 39.987612200226891 ], [ 116.380009132857708, 39.987738107028292 ], [ 116.379930017895802, 39.987737909557907 ], [ 116.379917667323014, 39.988707450888739 ], [ 116.380023033977793, 39.988708434265646 ], [ 116.379956741760239, 39.992491577778871 ], [ 116.380629947395278, 39.992498078297324 ], [ 116.380629947395278, 39.992498078297324 ] ] ] } }, { "type": "Feature", "properties": { "gid": 980127, "sett_type": "3012", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.380679817478565, 39.987786099368051 ], [ 116.380681631031834, 39.987665232733505 ], [ 116.380060208249702, 39.987658863595087 ], [ 116.380058394588204, 39.987780990218852 ], [ 116.380679817478565, 39.987786099368051 ], [ 116.380679817478565, 39.987786099368051 ] ] ] } }, { "type": "Feature", "properties": { "gid": 980301, "sett_type": "3012", "grade_leve": 0, "city": "北京市", "layer": "建筑物" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.375124910059981, 39.985785038563407 ], [ 116.375804804218333, 39.985792947946607 ], [ 116.375810957661528, 39.985470394625963 ], [ 116.37552475944986, 39.985468810140993 ], [ 116.375404685313953, 39.985365983328826 ], [ 116.375407938321729, 39.98523161532956 ], [ 116.375140800867769, 39.985226954178152 ], [ 116.375124910059981, 39.985785038563407 ], [ 116.375124910059981, 39.985785038563407 ] ] ] } } ] } ================================================ FILE: tests/test_transform.py ================================================ import pytest from coord_convert.transform import wgs2gcj, wgs2bd, gcj2wgs, gcj2bd, bd2wgs, bd2gcj from coord_convert.transform import Transform lon, lat = 120.0, 40.0 def test_gcj_wgs(): forward_lon, forward_lat = wgs2gcj(lon, lat) assert isinstance(forward_lon, float) assert isinstance(forward_lat, float) reversed_lon, reversed_lat = gcj2wgs(forward_lon, forward_lat) assert round(reversed_lon, 6) == lon assert round(reversed_lat, 6) == lat def test_gcj_bd(): forward_lon, forward_lat = gcj2bd(lon, lat) assert isinstance(forward_lon, float) assert isinstance(forward_lat, float) reversed_lon, reversed_lat = bd2gcj(forward_lon, forward_lat) assert round(reversed_lon, 6) == lon assert round(reversed_lat, 6) == lat def test_wgs_bd(): forward_lon, forward_lat = wgs2bd(lon, lat) assert isinstance(forward_lon, float) assert isinstance(forward_lat, float) reversed_lon, reversed_lat = bd2wgs(forward_lon, forward_lat) assert round(reversed_lon, 6) == lon assert round(reversed_lat, 6) == lat def test_Transform(): transform = Transform() forward_lon, forward_lat = getattr(transform, 'wgs2gcj')(lon, lat) reversed_lon, reversed_lat = getattr(transform, 'gcj2wgs')(forward_lon, forward_lat) assert round(reversed_lon, 6) == lon assert round(reversed_lat, 6) == lat forward_lon, forward_lat = getattr(transform, 'wgs2bd')(lon, lat) reversed_lon, reversed_lat = getattr(transform, 'bd2wgs')(forward_lon, forward_lat) assert round(reversed_lon, 6) == lon assert round(reversed_lat, 6) == lat forward_lon, forward_lat = getattr(transform, 'gcj2bd')(lon, lat) reversed_lon, reversed_lat = getattr(transform, 'bd2gcj')(forward_lon, forward_lat) assert round(reversed_lon, 6) == lon assert round(reversed_lat, 6) == lat