├── tests ├── __init__.py ├── data │ ├── point │ │ ├── point.cpg │ │ ├── point.dbf │ │ ├── point.shp │ │ ├── point.shx │ │ ├── point.prj │ │ └── point.qpj │ ├── multiPoint │ │ ├── multi-point.cpg │ │ ├── multi-point.dbf │ │ ├── multi-point.shp │ │ ├── multi-point.shx │ │ ├── multi-point.prj │ │ └── multi-point.qpj │ ├── multiPolygon │ │ ├── polygon_wgs.cpg │ │ ├── polygon_wgs.dbf │ │ ├── polygon_wgs.shp │ │ ├── polygon_wgs.shx │ │ ├── polygon_wgs.prj │ │ └── polygon_wgs.qpj │ ├── multiPolyline │ │ ├── polyline_wgs.cpg │ │ ├── polyline_wgs.dbf │ │ ├── polyline_wgs.shp │ │ ├── polyline_wgs.shx │ │ └── polyline_wgs.prj │ └── polygon │ │ └── polygon.geojson └── test_transform.py ├── requirements.txt ├── coord_convert ├── __init__.py ├── coordconvert.py └── transform.py ├── .gitignore ├── assets └── all.jpg ├── .pypic ├── .github └── workflows │ ├── test.yml │ └── pypi.yml ├── LICENSE ├── setup.py └── README.md /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/point/point.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | click 2 | tqdm 3 | fiona -------------------------------------------------------------------------------- /tests/data/multiPoint/multi-point.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /coord_convert/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.2.1' -------------------------------------------------------------------------------- /tests/data/multiPolygon/polygon_wgs.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /tests/data/multiPolyline/polyline_wgs.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .pytest_cache 3 | __pycache__ 4 | *.egg-info 5 | dist 6 | build -------------------------------------------------------------------------------- /assets/all.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshuair/coord-convert/HEAD/assets/all.jpg -------------------------------------------------------------------------------- /tests/data/point/point.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshuair/coord-convert/HEAD/tests/data/point/point.dbf -------------------------------------------------------------------------------- /tests/data/point/point.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshuair/coord-convert/HEAD/tests/data/point/point.shp -------------------------------------------------------------------------------- /tests/data/point/point.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshuair/coord-convert/HEAD/tests/data/point/point.shx -------------------------------------------------------------------------------- /tests/data/multiPoint/multi-point.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshuair/coord-convert/HEAD/tests/data/multiPoint/multi-point.dbf -------------------------------------------------------------------------------- /tests/data/multiPoint/multi-point.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshuair/coord-convert/HEAD/tests/data/multiPoint/multi-point.shp -------------------------------------------------------------------------------- /tests/data/multiPoint/multi-point.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshuair/coord-convert/HEAD/tests/data/multiPoint/multi-point.shx -------------------------------------------------------------------------------- /tests/data/multiPolygon/polygon_wgs.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshuair/coord-convert/HEAD/tests/data/multiPolygon/polygon_wgs.dbf -------------------------------------------------------------------------------- /tests/data/multiPolygon/polygon_wgs.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshuair/coord-convert/HEAD/tests/data/multiPolygon/polygon_wgs.shp -------------------------------------------------------------------------------- /tests/data/multiPolygon/polygon_wgs.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshuair/coord-convert/HEAD/tests/data/multiPolygon/polygon_wgs.shx -------------------------------------------------------------------------------- /tests/data/multiPolyline/polyline_wgs.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshuair/coord-convert/HEAD/tests/data/multiPolyline/polyline_wgs.dbf -------------------------------------------------------------------------------- /tests/data/multiPolyline/polyline_wgs.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshuair/coord-convert/HEAD/tests/data/multiPolyline/polyline_wgs.shp -------------------------------------------------------------------------------- /tests/data/multiPolyline/polyline_wgs.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sshuair/coord-convert/HEAD/tests/data/multiPolyline/polyline_wgs.shx -------------------------------------------------------------------------------- /tests/data/point/point.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /tests/data/multiPoint/multi-point.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /tests/data/multiPolygon/polygon_wgs.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /tests/data/multiPolyline/polyline_wgs.prj: -------------------------------------------------------------------------------- 1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] -------------------------------------------------------------------------------- /tests/data/point/point.qpj: -------------------------------------------------------------------------------- 1 | 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"]] 2 | -------------------------------------------------------------------------------- /tests/data/multiPoint/multi-point.qpj: -------------------------------------------------------------------------------- 1 | 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"]] 2 | -------------------------------------------------------------------------------- /tests/data/multiPolygon/polygon_wgs.qpj: -------------------------------------------------------------------------------- 1 | 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"]] 2 | -------------------------------------------------------------------------------- /.pypic: -------------------------------------------------------------------------------- 1 | [distutils] 2 | index-servers= 3 | pypi 4 | testpypi 5 | 6 | [pypi] 7 | repository = https://upload.pypi.org/legacy/ 8 | username = 9 | password = 10 | 11 | [testpypi] 12 | repository = https://test.pypi.org/legacy/ 13 | username = 14 | password = -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- 1 | name: pytest 2 | 3 | on: [push] 4 | 5 | jobs: 6 | build: 7 | 8 | runs-on: ubuntu-latest 9 | strategy: 10 | max-parallel: 4 11 | matrix: 12 | python-version: [3.5, 3.6, 3.7] 13 | 14 | steps: 15 | - uses: actions/checkout@v1 16 | - name: Set up Python ${{ matrix.python-version }} 17 | uses: actions/setup-python@v1 18 | with: 19 | python-version: ${{ matrix.python-version }} 20 | - name: Install dependencies 21 | run: | 22 | python -m pip install --upgrade pip 23 | pip install -r requirements.txt 24 | - name: Lint with flake8 25 | run: | 26 | pip install flake8 27 | # stop the build if there are Python syntax errors or undefined names 28 | flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics 29 | # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide 30 | flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics 31 | - name: Test with pytest 32 | run: | 33 | pip install pytest 34 | pytest 35 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 sshuair 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.github/workflows/pypi.yml: -------------------------------------------------------------------------------- 1 | name: pypi 2 | 3 | on: [release] 4 | 5 | jobs: 6 | build: 7 | 8 | runs-on: ubuntu-latest 9 | strategy: 10 | max-parallel: 4 11 | matrix: 12 | python-version: [3.6] 13 | 14 | steps: 15 | - uses: actions/checkout@v1 16 | - name: Set up Python ${{ matrix.python-version }} 17 | uses: actions/setup-python@v1 18 | with: 19 | python-version: ${{ matrix.python-version }} 20 | - name: Install dependencies 21 | run: | 22 | python -m pip install --upgrade pip 23 | pip install -r requirements.txt 24 | - name: Lint with flake8 25 | run: | 26 | pip install flake8 27 | # stop the build if there are Python syntax errors or undefined names 28 | flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics 29 | # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide 30 | flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics 31 | - name: Test with pytest 32 | run: | 33 | pip install pytest 34 | pytest 35 | - name: build wheels 36 | run: | 37 | pip install setuptools wheel twine 38 | python setup.py sdist bdist_wheel 39 | python -m twine upload -r pypi --verbose -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} dist/* -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | #coding: --utf-8-- 2 | from setuptools import setup 3 | 4 | # version 5 | with open('coord_convert/__init__.py') as f: 6 | for line in f: 7 | if line.find('__version__') >= 0: 8 | version = line.split('=')[1].strip() 9 | version = version.strip('"') 10 | version = version.strip("'") 11 | break 12 | 13 | # install requirements 14 | with open('requirements.txt') as f: 15 | requirements = [x.strip() for x in f.readlines()] 16 | 17 | # readme 18 | with open('README.md', encoding='utf-8') as f: 19 | readme = f.read() 20 | 21 | setup( 22 | name='coord-convert', 23 | version = version, 24 | description = u'china mars coordinate convertor.', 25 | long_description = readme, 26 | long_description_content_type="text/markdown", 27 | classifiers=[ 28 | 'Development Status :: 4 - Beta', 29 | 'Intended Audience :: Developers', 30 | 'Intended Audience :: Information Technology', 31 | 'Intended Audience :: Science/Research', 32 | 'License :: OSI Approved :: MIT License', 33 | 'Programming Language :: C', 34 | 'Programming Language :: Cython', 35 | 'Programming Language :: Python :: 3.5', 36 | 'Programming Language :: Python :: 3.6', 37 | 'Programming Language :: Python :: 3', 38 | 'Topic :: Multimedia :: Graphics :: Graphics Conversion', 39 | 'Topic :: Scientific/Engineering :: GIS'], 40 | keywords='coordinate vector china', 41 | author='sshuair', 42 | author_email='sshuair@gmail.com', 43 | url='https://github.com/sshuair/coord-convert', 44 | packages = ['coord_convert'], 45 | install_requires=requirements, 46 | entry_points=''' 47 | [console_scripts] 48 | coord_covert=coord_convert.coordconvert:convertor 49 | ''' 50 | 51 | ) 52 | -------------------------------------------------------------------------------- /tests/test_transform.py: -------------------------------------------------------------------------------- 1 | import pytest 2 | from coord_convert.transform import wgs2gcj, wgs2bd, gcj2wgs, gcj2bd, bd2wgs, bd2gcj 3 | from coord_convert.transform import Transform 4 | 5 | lon, lat = 120.0, 40.0 6 | 7 | def test_gcj_wgs(): 8 | forward_lon, forward_lat = wgs2gcj(lon, lat) 9 | assert isinstance(forward_lon, float) 10 | assert isinstance(forward_lat, float) 11 | 12 | reversed_lon, reversed_lat = gcj2wgs(forward_lon, forward_lat) 13 | assert round(reversed_lon, 6) == lon 14 | assert round(reversed_lat, 6) == lat 15 | 16 | 17 | def test_gcj_bd(): 18 | forward_lon, forward_lat = gcj2bd(lon, lat) 19 | assert isinstance(forward_lon, float) 20 | assert isinstance(forward_lat, float) 21 | 22 | reversed_lon, reversed_lat = bd2gcj(forward_lon, forward_lat) 23 | assert round(reversed_lon, 6) == lon 24 | assert round(reversed_lat, 6) == lat 25 | 26 | 27 | def test_wgs_bd(): 28 | forward_lon, forward_lat = wgs2bd(lon, lat) 29 | assert isinstance(forward_lon, float) 30 | assert isinstance(forward_lat, float) 31 | 32 | reversed_lon, reversed_lat = bd2wgs(forward_lon, forward_lat) 33 | assert round(reversed_lon, 6) == lon 34 | assert round(reversed_lat, 6) == lat 35 | 36 | def test_Transform(): 37 | transform = Transform() 38 | forward_lon, forward_lat = getattr(transform, 'wgs2gcj')(lon, lat) 39 | reversed_lon, reversed_lat = getattr(transform, 'gcj2wgs')(forward_lon, forward_lat) 40 | assert round(reversed_lon, 6) == lon 41 | assert round(reversed_lat, 6) == lat 42 | 43 | forward_lon, forward_lat = getattr(transform, 'wgs2bd')(lon, lat) 44 | reversed_lon, reversed_lat = getattr(transform, 'bd2wgs')(forward_lon, forward_lat) 45 | assert round(reversed_lon, 6) == lon 46 | assert round(reversed_lat, 6) == lat 47 | 48 | forward_lon, forward_lat = getattr(transform, 'gcj2bd')(lon, lat) 49 | reversed_lon, reversed_lat = getattr(transform, 'bd2gcj')(forward_lon, forward_lat) 50 | assert round(reversed_lon, 6) == lon 51 | assert round(reversed_lat, 6) == lat -------------------------------------------------------------------------------- /coord_convert/coordconvert.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | import fiona 3 | from tqdm import tqdm 4 | import click 5 | 6 | from coord_convert.transform import Transform 7 | 8 | 9 | def recur_map(f, data): 10 | """递归处理所有坐标 11 | 12 | Arguments: 13 | f {function} -- [apply function] 14 | data {collection} -- [fiona collection] 15 | """ 16 | 17 | return[ not type(x) is list and f(x) or recur_map(f, x) for x in data ] 18 | 19 | 20 | @click.command() 21 | @click.argument('convert_type', type=click.STRING) 22 | @click.argument('src_path', type=click.Path(exists=True)) 23 | @click.argument('dst_path', type=click.Path(exists=False)) 24 | def convertor(src_path, dst_path, convert_type): 25 | """convert input china coordinate to another. 26 | 27 | \b 28 | Arguments: 29 | convert_type {string} -- [coordinate convert type, e.g. wgs2bd] 30 | \b 31 | wgs2gcj : convert WGS-84 to GCJ-02 32 | wgs2bd : convert WGS-84 to DB-09 33 | gcj2wgs : convert GCJ-02 to WGS-84 34 | gcj2bd : convert GCJ-02 to BD-09 35 | bd2wgs : convert BD-09 to WGS-84 36 | bd2gcj : convert BD-09 to GCJ-02 37 | 38 | src_path {string} -- [source file path] 39 | dst_path {string} -- [destination file path] 40 | 41 | 42 | Example: 43 | 44 | \b 45 | coord_covert wgs2gcj ./test/data/line/multi-polygon.shp ~/temp/qqqq.shp 46 | """ 47 | 48 | with fiona.open(src_path, 'r', encoding='utf-8') as source: 49 | source_schema = source.schema.copy() 50 | with fiona.open(dst_path, 'w', encoding='utf-8', **source.meta) as out: 51 | transform = Transform() 52 | f = lambda x: getattr(transform, convert_type)(x[0], x[1]) #dynamic call convert func 53 | 54 | for fea in tqdm(source): 55 | collections = fea['geometry']['coordinates'] 56 | if type(collections) is tuple: 57 | fea['geometry']['coordinates'] = f(collections) 58 | elif type(collections) is list: 59 | fea['geometry']['coordinates'] = recur_map(f, collections) 60 | else: 61 | raise TypeError("collection must be list or tuple") 62 | out.write(fea) 63 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # China Coordinate Convertor 2 | 3 | [![Actions Status](https://github.com/sshuair/coord-convert/workflows/pytest/badge.svg)](https://github.com/sshuair/coord-convert/actions) 4 | [![GitHub stars](https://img.shields.io/github/stars/sshuair/coord-convert)](https://github.com/sshuair/coord-convert/stargazers) 5 | [![GitHub forks](https://img.shields.io/github/forks/sshuair/coord-convert)](https://github.com/sshuair/coord-convert/network) 6 | [![GitHub license](https://img.shields.io/github/license/sshuair/coord-convert)](https://github.com/sshuair/coord-convert/blob/master/LICENSE) 7 | 8 | [中国火星坐标](https://en.wikipedia.org/wiki/Restrictions_on_geographic_data_in_China)转换命令行工具,用于`WGS-84`(未偏移坐标), `GCJ-02`(国家测绘局、高德、谷歌中国地图), `BD-09`(百度坐标系)三者之间的互相转换,支持文件格式: 9 | - ESRI Shapefile 10 | - GeoJSON 11 | 12 | 图片名称 13 | 14 | ## 安装 15 | 推荐使用: 16 | `pip install coord-convert` 17 | 18 | 或者也可以从源码安装: 19 | ``` 20 | git clone https://github.com/sshuair/coord-convert.git 21 | pip install -r requirements.txt 22 | python setup.py install 23 | ``` 24 | 25 | ## 依赖 26 | - python3 27 | - fiona 28 | - tqdm 29 | - click 30 | 31 | ## 使用方法 32 | >注意:火星坐标转换是针对经纬度的转换,因此在进行转换前需要将坐标转换成经纬度;比如web墨卡托(3857)等投影坐标系需要先转成经纬度坐标(4326) 33 | 34 | ### Python API调用 35 | 在python程序中调用相应的坐标转换接口 36 | 37 | ```python 38 | from coord_convert.transform import wgs2gcj, wgs2bd, gcj2wgs, gcj2bd, bd2wgs, bd2gcj 39 | lon, lat = 120, 40 40 | gcj_lon, gcj_lat = wgs2gcj(lon, lat) 41 | bd_lon, bd_lat = wgs2bd(lon, lat) 42 | print(gcj_lon, gcj_lat) # the result should be: 120.00567568355486 40.0013047896019 43 | 44 | ``` 45 | 46 | 47 | ### 命令行调用 48 | 火星坐标转换还支持命令行直接对shp、geojson等文件进行转换,比如 49 | 50 | ```bash 51 | ~/temp > coord_covert gcj2wgs tests/data/Polyline/polyline.geojson aa.geojson 52 | 100%|██████████████████████████████████████████████████████| 219/219 [00:00<00:00, 550.93it/s] 53 | ``` 54 | 55 | 更详细的用法: 56 | ``` 57 | convert input china coordinate to another. 58 | 59 | Arguments: 60 | convert_type {string} -- [coordinate convert type, e.g. wgs2bd] 61 | 62 | wgs2gcj : convert WGS-84 to GCJ-02 63 | wgs2bd : convert WGS-84 to DB-09 64 | gcj2wgs : convert GCJ-02 to WGS-84 65 | gcj2bd : convert GCJ-02 to BD-09 66 | bd2wgs : convert BD-09 to WGS-84 67 | bd2gcj : convert BD-09 to GCJ-02 68 | 69 | src_path {string} -- [source file path] 70 | dst_path {string} -- [destination file path] 71 | 72 | 73 | Example: 74 | coord_covert wgs2gcj ./tests/data/polygon/polygon_wgs.shp ~/temp/polygon_gcj.shp 75 | 76 | ``` 77 | -------------------------------------------------------------------------------- /coord_convert/transform.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from math import sin, cos, sqrt, fabs, atan2 3 | from math import pi as PI 4 | 5 | 6 | # define ellipsoid 7 | a = 6378245.0 8 | f = 1 / 298.3 9 | b = a * (1 - f) 10 | ee = 1 - (b * b) / (a * a) 11 | 12 | 13 | def outOfChina(lng, lat): 14 | """check weather lng and lat out of china 15 | 16 | Arguments: 17 | lng {float} -- longitude 18 | lat {float} -- latitude 19 | 20 | Returns: 21 | Bollen -- True or False 22 | """ 23 | return not (72.004 <= lng <= 137.8347 and 0.8293 <= lat <= 55.8271) 24 | 25 | 26 | def transformLat(x, y): 27 | ret = -100.0 + 2.0 * x + 3.0 * y + 0.2 * y * y + 0.1 * x * y + 0.2 * sqrt(fabs(x)) 28 | ret = ret + (20.0 * sin(6.0 * x * PI) + 20.0 * sin(2.0 * x * PI)) * 2.0 / 3.0 29 | ret = ret + (20.0 * sin(y * PI) + 40.0 * sin(y / 3.0 * PI)) * 2.0 / 3.0 30 | ret = ret + (160.0 * sin(y / 12.0 * PI) + 320.0 * sin(y * PI / 30.0)) * 2.0 / 3.0 31 | return ret 32 | 33 | 34 | def transformLon(x, y): 35 | ret = 300.0 + x + 2.0 * y + 0.1 * x * x + 0.1 * x * y + 0.1 * sqrt(fabs(x)) 36 | ret = ret + (20.0 * sin(6.0 * x * PI) + 20.0 * sin(2.0 * x * PI)) * 2.0 / 3.0 37 | ret = ret + (20.0 * sin(x * PI) + 40.0 * sin(x / 3.0 * PI)) * 2.0 / 3.0 38 | ret = ret + (150.0 * sin(x / 12.0 * PI) + 300.0 * sin(x * PI / 30.0)) * 2.0 / 3.0 39 | return ret 40 | 41 | 42 | def wgs2gcj(wgsLon, wgsLat): 43 | """wgs coord to gcj 44 | 45 | Arguments: 46 | wgsLon {float} -- lon 47 | wgsLat {float} -- lat 48 | 49 | Returns: 50 | tuple -- gcj coords 51 | """ 52 | 53 | if outOfChina(wgsLon, wgsLat): 54 | return wgsLon, wgsLat 55 | dLat = transformLat(wgsLon - 105.0, wgsLat - 35.0) 56 | dLon = transformLon(wgsLon - 105.0, wgsLat - 35.0) 57 | radLat = wgsLat / 180.0 * PI 58 | magic = sin(radLat) 59 | magic = 1 - ee * magic * magic 60 | sqrtMagic = sqrt(magic) 61 | dLat = (dLat * 180.0) / ((a * (1 - ee)) / (magic * sqrtMagic) * PI) 62 | dLon = (dLon * 180.0) / (a / sqrtMagic * cos(radLat) * PI) 63 | gcjLat = wgsLat + dLat 64 | gcjLon = wgsLon + dLon 65 | return (gcjLon, gcjLat) 66 | 67 | 68 | def gcj2wgs(gcjLon, gcjLat): 69 | g0 = (gcjLon, gcjLat) 70 | w0 = g0 71 | g1 = wgs2gcj(w0[0], w0[1]) 72 | # w1 = w0 - (g1 - g0) 73 | w1 = tuple(map(lambda x: x[0]-(x[1]-x[2]), zip(w0,g1,g0))) 74 | # delta = w1 - w0 75 | delta = tuple(map(lambda x: x[0] - x[1], zip(w1, w0))) 76 | while (abs(delta[0]) >= 1e-6 or abs(delta[1]) >= 1e-6): 77 | w0 = w1 78 | g1 = wgs2gcj(w0[0], w0[1]) 79 | # w1 = w0 - (g1 - g0) 80 | w1 = tuple(map(lambda x: x[0]-(x[1]-x[2]), zip(w0,g1,g0))) 81 | # delta = w1 - w0 82 | delta = tuple(map(lambda x: x[0] - x[1], zip(w1, w0))) 83 | return w1 84 | 85 | 86 | def gcj2bd(gcjLon, gcjLat): 87 | z = sqrt(gcjLon * gcjLon + gcjLat * gcjLat) + 0.00002 * sin(gcjLat * PI * 3000.0 / 180.0) 88 | theta = atan2(gcjLat, gcjLon) + 0.000003 * cos(gcjLon * PI * 3000.0 / 180.0) 89 | bdLon = z * cos(theta) + 0.0065 90 | bdLat = z * sin(theta) + 0.006 91 | return (bdLon, bdLat) 92 | 93 | 94 | def bd2gcj(bdLon, bdLat): 95 | x = bdLon - 0.0065 96 | y = bdLat - 0.006 97 | z = sqrt(x * x + y * y) - 0.00002 * sin(y * PI * 3000.0 / 180.0) 98 | theta = atan2(y, x) - 0.000003 * cos(x * PI * 3000.0 / 180.0) 99 | gcjLon = z * cos(theta) 100 | gcjLat = z * sin(theta) 101 | return (gcjLon, gcjLat) 102 | 103 | 104 | def wgs2bd(wgsLon, wgsLat): 105 | gcj = wgs2gcj(wgsLon, wgsLat) 106 | return gcj2bd(gcj[0], gcj[1]) 107 | 108 | 109 | def bd2wgs(bdLon, bdLat): 110 | gcj = bd2gcj(bdLon, bdLat) 111 | return gcj2wgs(gcj[0], gcj[1]) 112 | 113 | 114 | class Transform(): 115 | 116 | def transformLat(self, x, y): 117 | return transformLat(x, y) 118 | 119 | def transformLon(self, x, y): 120 | return transformLon(x, y) 121 | 122 | def wgs2gcj(self, wgsLon, wgsLat): 123 | return wgs2gcj(wgsLon, wgsLat) 124 | 125 | def gcj2wgs(self, gcjLon, gcjLat): 126 | return gcj2wgs(gcjLon, gcjLat) 127 | 128 | def gcj2bd(self, gcjLon, gcjLat): 129 | return gcj2bd(gcjLon, gcjLat) 130 | 131 | def bd2gcj(self, bdLon, bdLat): 132 | return bd2gcj(bdLon, bdLat) 133 | 134 | def wgs2bd(self, wgsLon, wgsLat): 135 | return wgs2bd(wgsLon, wgsLat) 136 | 137 | def bd2wgs(self, bdLon, bdLat): 138 | return bd2wgs(bdLon, bdLat) 139 | -------------------------------------------------------------------------------- /tests/data/polygon/polygon.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FeatureCollection", 3 | "name": "polygon", 4 | "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, 5 | "features": [ 6 | { "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 ] ] ] } }, 7 | { "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 ] ] ] } }, 8 | { "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 ] ] ] } }, 9 | { "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 ] ] ] } }, 10 | { "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 ] ] ] } }, 11 | { "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 ] ] ] } }, 12 | { "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 ] ] ] } }, 13 | { "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 ] ] ] } }, 14 | { "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 ] ] ] } }, 15 | { "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 ] ] ] } }, 16 | { "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 ] ] ] } }, 17 | { "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 ] ] ] } }, 18 | { "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 ] ] ] } }, 19 | { "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 ] ] ] } }, 20 | { "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 ] ] ] } }, 21 | { "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 ] ] ] } }, 22 | { "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 ] ] ] } }, 23 | { "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 ] ] ] } }, 24 | { "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 ] ] ] } }, 25 | { "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 ] ] ] } }, 26 | { "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 ] ] ] } }, 27 | { "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 ] ] ] } }, 28 | { "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 ] ] ] } }, 29 | { "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 ] ] ] } }, 30 | { "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 ] ] ] } }, 31 | { "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 ] ] ] } }, 32 | { "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 ] ] ] } }, 33 | { "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 ] ] ] } }, 34 | { "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 ] ] ] } }, 35 | { "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 ] ] ] } }, 36 | { "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 ] ] ] } }, 37 | { "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 ] ] ] } }, 38 | { "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 ] ] ] } }, 39 | { "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 ] ] ] } }, 40 | { "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 ] ] ] } }, 41 | { "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 ] ] ] } }, 42 | { "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 ] ] ] } }, 43 | { "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 ] ] ] } }, 44 | { "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 ] ] ] } }, 45 | { "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 ] ] ] } }, 46 | { "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 ] ] ] } }, 47 | { "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 ] ] ] } }, 48 | { "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 ] ] ] } }, 49 | { "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 ] ] ] } }, 50 | { "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 ] ] ] } }, 51 | { "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 ] ] ] } }, 52 | { "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 ] ] ] } }, 53 | { "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 ] ] ] } }, 54 | { "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 ] ] ] } }, 55 | { "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 ] ] ] } }, 56 | { "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 ] ] ] } }, 57 | { "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 ] ] ] } }, 58 | { "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 ] ] ] } }, 59 | { "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 ] ] ] } }, 60 | { "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 ] ] ] } }, 61 | { "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 ] ] ] } }, 62 | { "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 ] ] ] } }, 63 | { "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 ] ] ] } }, 64 | { "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 ] ] ] } }, 65 | { "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 ] ] ] } }, 66 | { "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 ] ] ] } }, 67 | { "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 ] ] ] } }, 68 | { "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 ] ] ] } }, 69 | { "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 ] ] ] } }, 70 | { "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 ] ] ] } }, 71 | { "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 ] ] ] } }, 72 | { "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 ] ] ] } }, 73 | { "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 ] ] ] } }, 74 | { "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 ] ] ] } }, 75 | { "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 ] ] ] } }, 76 | { "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 ] ] ] } }, 77 | { "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 ] ] ] } }, 78 | { "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 ] ] ] } }, 79 | { "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 ] ] ] } }, 80 | { "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 ] ] ] } }, 81 | { "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 ] ] ] } }, 82 | { "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 ] ] ] } }, 83 | { "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 ] ] ] } }, 84 | { "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 ] ] ] } }, 85 | { "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 ] ] ] } }, 86 | { "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 ] ] ] } }, 87 | { "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 ] ] ] } }, 88 | { "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 ] ] ] } }, 89 | { "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 ] ] ] } }, 90 | { "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 ] ] ] } }, 91 | { "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 ] ] ] } }, 92 | { "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 ] ] ] } }, 93 | { "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 ] ] ] } }, 94 | { "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 ] ] ] } }, 95 | { "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 ] ] ] } }, 96 | { "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 ] ] ] } }, 97 | { "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 ] ] ] } }, 98 | { "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 ] ] ] } }, 99 | { "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 ] ] ] } }, 100 | { "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 ] ] ] } }, 101 | { "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 ] ] ] } }, 102 | { "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 ] ] ] } }, 103 | { "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 ] ] ] } }, 104 | { "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 ] ] ] } }, 105 | { "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 ] ] ] } }, 106 | { "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 ] ] ] } }, 107 | { "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 ] ] ] } }, 108 | { "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 ] ] ] } }, 109 | { "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 ] ] ] } }, 110 | { "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 ] ] ] } }, 111 | { "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 ] ] ] } }, 112 | { "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 ] ] ] } }, 113 | { "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 ] ] ] } }, 114 | { "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 ] ] ] } }, 115 | { "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 ] ] ] } }, 116 | { "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 ] ] ] } }, 117 | { "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 ] ] ] } }, 118 | { "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 ] ] ] } }, 119 | { "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 ] ] ] } }, 120 | { "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 ] ] ] } }, 121 | { "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 ] ] ] } }, 122 | { "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 ] ] ] } }, 123 | { "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 ] ] ] } }, 124 | { "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 ] ] ] } }, 125 | { "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 ] ] ] } }, 126 | { "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 ] ] ] } }, 127 | { "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 ] ] ] } }, 128 | { "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 ] ] ] } }, 129 | { "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 ] ] ] } }, 130 | { "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 ] ] ] } }, 131 | { "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 ] ] ] } }, 132 | { "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 ] ] ] } }, 133 | { "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 ] ] ] } }, 134 | { "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 ] ] ] } }, 135 | { "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 ] ] ] } }, 136 | { "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 ] ] ] } }, 137 | { "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 ] ] ] } }, 138 | { "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 ] ] ] } }, 139 | { "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 ] ] ] } }, 140 | { "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 ] ] ] } }, 141 | { "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 ] ] ] } }, 142 | { "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 ] ] ] } }, 143 | { "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 ] ] ] } }, 144 | { "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 ] ] ] } }, 145 | { "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 ] ] ] } }, 146 | { "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 ] ] ] } }, 147 | { "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 ] ] ] } }, 148 | { "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 ] ] ] } }, 149 | { "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 ] ] ] } }, 150 | { "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 ] ] ] } }, 151 | { "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 ] ] ] } }, 152 | { "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 ] ] ] } }, 153 | { "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 ] ] ] } }, 154 | { "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 ] ] ] } }, 155 | { "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 ] ] ] } }, 156 | { "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 ] ] ] } }, 157 | { "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 ] ] ] } }, 158 | { "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 ] ] ] } }, 159 | { "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 ] ] ] } }, 160 | { "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 ] ] ] } }, 161 | { "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 ] ] ] } }, 162 | { "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 ] ] ] } }, 163 | { "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 ] ] ] } }, 164 | { "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 ] ] ] } }, 165 | { "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 ] ] ] } }, 166 | { "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 ] ] ] } }, 167 | { "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 ] ] ] } }, 168 | { "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 ] ] ] } }, 169 | { "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 ] ] ] } }, 170 | { "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 ] ] ] } }, 171 | { "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 ] ] ] } }, 172 | { "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 ] ] ] } }, 173 | { "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 ] ] ] } }, 174 | { "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 ] ] ] } }, 175 | { "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 ] ] ] } }, 176 | { "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 ] ] ] } }, 177 | { "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 ] ] ] } }, 178 | { "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 ] ] ] } }, 179 | { "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 ] ] ] } }, 180 | { "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 ] ] ] } }, 181 | { "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 ] ] ] } }, 182 | { "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 ] ] ] } }, 183 | { "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 ] ] ] } }, 184 | { "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 ] ] ] } }, 185 | { "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 ] ] ] } }, 186 | { "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 ] ] ] } }, 187 | { "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 ] ] ] } }, 188 | { "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 ] ] ] } }, 189 | { "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 ] ] ] } }, 190 | { "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 ] ] ] } }, 191 | { "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 ] ] ] } }, 192 | { "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 ] ] ] } }, 193 | { "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 ] ] ] } }, 194 | { "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 ] ] ] } }, 195 | { "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 ] ] ] } }, 196 | { "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 ] ] ] } }, 197 | { "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 ] ] ] } }, 198 | { "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 ] ] ] } }, 199 | { "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 ] ] ] } }, 200 | { "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 ] ] ] } }, 201 | { "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 ] ] ] } }, 202 | { "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 ] ] ] } }, 203 | { "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 ] ] ] } }, 204 | { "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 ] ] ] } }, 205 | { "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 ] ] ] } }, 206 | { "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 ] ] ] } }, 207 | { "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 ] ] ] } }, 208 | { "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 ] ] ] } }, 209 | { "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 ] ] ] } }, 210 | { "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 ] ] ] } }, 211 | { "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 ] ] ] } }, 212 | { "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 ] ] ] } }, 213 | { "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 ] ] ] } }, 214 | { "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 ] ] ] } }, 215 | { "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 ] ] ] } }, 216 | { "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 ] ] ] } }, 217 | { "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 ] ] ] } }, 218 | { "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 ] ] ] } }, 219 | { "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 ] ] ] } }, 220 | { "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 ] ] ] } }, 221 | { "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 ] ] ] } }, 222 | { "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 ] ] ] } }, 223 | { "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 ] ] ] } }, 224 | { "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 ] ] ] } }, 225 | { "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 ] ] ] } }, 226 | { "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 ] ] ] } }, 227 | { "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 ] ] ] } }, 228 | { "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 ] ] ] } }, 229 | { "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 ] ] ] } }, 230 | { "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 ] ] ] } }, 231 | { "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 ] ] ] } }, 232 | { "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 ] ] ] } }, 233 | { "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 ] ] ] } }, 234 | { "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 ] ] ] } }, 235 | { "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 ] ] ] } }, 236 | { "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 ] ] ] } }, 237 | { "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 ] ] ] } }, 238 | { "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 ] ] ] } }, 239 | { "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 ] ] ] } }, 240 | { "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 ] ] ] } }, 241 | { "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 ] ] ] } }, 242 | { "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 ] ] ] } }, 243 | { "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 ] ] ] } }, 244 | { "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 ] ] ] } }, 245 | { "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 ] ] ] } }, 246 | { "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 ] ] ] } }, 247 | { "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 ] ] ] } }, 248 | { "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 ] ] ] } }, 249 | { "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 ] ] ] } }, 250 | { "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 ] ] ] } }, 251 | { "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 ] ] ] } }, 252 | { "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 ] ] ] } }, 253 | { "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 ] ] ] } }, 254 | { "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 ] ] ] } }, 255 | { "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 ] ] ] } }, 256 | { "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 ] ] ] } }, 257 | { "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 ] ] ] } }, 258 | { "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 ] ] ] } }, 259 | { "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 ] ] ] } }, 260 | { "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 ] ] ] } }, 261 | { "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 ] ] ] } }, 262 | { "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 ] ] ] } }, 263 | { "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 ] ] ] } }, 264 | { "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 ] ] ] } }, 265 | { "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 ] ] ] } }, 266 | { "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 ] ] ] } }, 267 | { "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 ] ] ] } }, 268 | { "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 ] ] ] } }, 269 | { "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 ] ] ] } }, 270 | { "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 ] ] ] } }, 271 | { "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 ] ] ] } }, 272 | { "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 ] ] ] } }, 273 | { "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 ] ] ] } }, 274 | { "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 ] ] ] } }, 275 | { "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 ] ] ] } }, 276 | { "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 ] ] ] } }, 277 | { "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 ] ] ] } }, 278 | { "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 ] ] ] } }, 279 | { "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 ] ] ] } }, 280 | { "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 ] ] ] } }, 281 | { "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 ] ] ] } }, 282 | { "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 ] ] ] } }, 283 | { "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 ] ] ] } }, 284 | { "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 ] ] ] } }, 285 | { "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 ] ] ] } }, 286 | { "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 ] ] ] } }, 287 | { "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 ] ] ] } }, 288 | { "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 ] ] ] } }, 289 | { "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 ] ] ] } }, 290 | { "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 ] ] ] } }, 291 | { "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 ] ] ] } }, 292 | { "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 ] ] ] } }, 293 | { "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 ] ] ] } }, 294 | { "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 ] ] ] } }, 295 | { "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 ] ] ] } }, 296 | { "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 ] ] ] } }, 297 | { "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 ] ] ] } }, 298 | { "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 ] ] ] } }, 299 | { "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 ] ] ] } }, 300 | { "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 ] ] ] } }, 301 | { "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 ] ] ] } }, 302 | { "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 ] ] ] } }, 303 | { "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 ] ] ] } }, 304 | { "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 ] ] ] } }, 305 | { "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 ] ] ] } }, 306 | { "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 ] ] ] } }, 307 | { "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 ] ] ] } }, 308 | { "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 ] ] ] } }, 309 | { "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 ] ] ] } }, 310 | { "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 ] ] ] } } 311 | ] 312 | } 313 | --------------------------------------------------------------------------------