张洋洋
2025-01-10 1f6411206bd588e0c39ed3c34481ff8441f23e39
[add]h5读取改造
已添加7个文件
已修改1个文件
417721 ■■■■■ 文件已修改
libs/cdm-core-5.4.1.jar 补丁 | 查看 | 原始文档 | blame | 历史
libs/jblosc-1.0.1.dev.jar 补丁 | 查看 | 原始文档 | blame | 历史
libs/jzarr-0.4.2.jar 补丁 | 查看 | 原始文档 | blame | 历史
pom.xml 37 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/se/simu/utils/ZarrUtils.java 66 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/resources/GX_YSBZ_P.json 409061 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/resources/JT_CSZGD_L.json 5835 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/resources/降雨量.json 2722 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
libs/cdm-core-5.4.1.jar
Binary files differ
libs/jblosc-1.0.1.dev.jar
Binary files differ
libs/jzarr-0.4.2.jar
Binary files differ
pom.xml
@@ -214,13 +214,38 @@
            <artifactId>commons-fileupload</artifactId>
            <version>1.5</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/dev.zarr/jzarr -->
        <dependency>
            <groupId>dev.zarr</groupId>
            <artifactId>jzarr</artifactId>
            <version>0.4.2</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/libs/jzarr-0.4.2.jar</systemPath>
        </dependency>
        <!-- https://mvnrepository.com/artifact/edu.ucar/cdm-core -->
        <dependency>
            <groupId>edu.ucar</groupId>
            <artifactId>cdm-core</artifactId>
            <version>5.4.1</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/libs/cdm-core-5.4.1.jar</systemPath>
        </dependency>
        <!-- https://mvnrepository.com/artifact/org.blosc/jblosc -->
        <dependency>
            <groupId>org.blosc</groupId>
            <artifactId>jblosc</artifactId>
            <version>1.0.1.dev</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/libs/jblosc-1.0.1.dev.jar</systemPath>
        </dependency>
        <dependency>
            <groupId>net.java.dev.jna</groupId>
            <artifactId>jna</artifactId>
            <version>4.2.2</version>
        </dependency>
    </dependencies>
    <repositories>
        <repository>
            <id>jcenter</id>
            <url>https://jcenter.bintray.com/</url>
        </repository>
    </repositories>
    <build>
        <finalName>SimuServer</finalName>
        <plugins>
src/main/java/com/se/simu/utils/ZarrUtils.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,66 @@
package com.se.simu.utils;
import com.bc.zarr.ArrayParams;
import com.bc.zarr.DataType;
import com.bc.zarr.ZarrArray;
import com.bc.zarr.ZarrGroup;
import org.apache.commons.csv.CSVFormat;
import org.apache.commons.csv.CSVParser;
import org.apache.commons.csv.CSVRecord;
import java.io.FileReader;
import java.io.IOException;
import java.nio.file.Path;
import java.nio.file.Paths;
public class ZarrUtils {
    public static void main(String[] args) throws Exception{
        // è¾“å…¥ CSV æ–‡ä»¶çš„路径
        String csvFilePath = "D:\\城市内涝\\sem\\雨量站点数据\\雨量站包含坐标.csv";
        // è¾“出 Zarr æ–‡ä»¶çš„路径
        String zarrFilePath = "D:\\城市内涝\\sem\\雨量站点数据\\雨量站包含坐标.zarr";
        try (CSVParser csvParser = new CSVParser(new FileReader(csvFilePath), CSVFormat.DEFAULT.withFirstRecordAsHeader())) {
            // èŽ·å– CSV åˆ—æ•°
            int numColumns = csvParser.getHeaderMap().size();
            // è®¡ç®— CSV è¡Œæ•°
            int numRows = 0;
            for (CSVRecord record : csvParser) {
                numRows++;
            }
            // é‡æ–°åˆå§‹åŒ– CSV è§£æžå™¨ï¼Œå› ä¸ºä¹‹å‰çš„遍历已经耗尽了迭代器
            csvParser.close();
            CSVParser  csvRecords = new CSVParser(new FileReader(csvFilePath), CSVFormat.DEFAULT.withFirstRecordAsHeader());
            // åˆ›å»º Zarr ç»„
            Path zarrPath = Paths.get(zarrFilePath);
            ZarrGroup zarrGroup = ZarrGroup.create(zarrPath);
            // å®šä¹‰ Zarr æ•°ç»„的维度
            int[] shape = {numRows, numColumns};
            // å®šä¹‰åˆ†å—大小
            int[] chunks = {1440};
            // åˆ›å»º Zarr æ•°ç»„
            ArrayParams params=new ArrayParams();
            params.shape(chunks);
            params.chunks(chunks);
            params.dataType(DataType.f4);
            ZarrArray zarrArray = zarrGroup.createArray("rainfall",params);
            int rowIndex = 0;
            for (CSVRecord record : csvRecords) {
                int[] x={rowIndex};
//                for (int colIndex = 0; colIndex < numColumns; colIndex++) {
//                    //double value = Double.parseDouble(record.get(colIndex));
//                    String value = record.get(colIndex);
//                    int[] y={colIndex};
//                    //zarrArray.write(value);
//                    zarrArray.write(value,x,y);
//                }
                double value = Double.parseDouble(record.get(1));
                zarrArray.write(value);
                rowIndex++;
            }
            // å…³é—­ Zarr ç»„
            //zarrGroup.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
src/main/resources/GX_YSBZ_P.json
¶Ô±ÈÐÂÎļþ
ÎļþÌ«´ó
src/main/resources/JT_CSZGD_L.json
¶Ô±ÈÐÂÎļþ
ÎļþÌ«´ó
src/main/resources/½µÓêÁ¿.json
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,2722 @@
{
    "type": "CityJSON",
    "version": "1.0",
    "Dynamizers": [
        {
            "url": "rainfall/田村闸(雨).zarr",
            "gmlId": "UUID_005f52a3-47c2-492c-a941-187c3a342901"
        },
        {
            "url": "rainfall/后银子村委会.zarr",
            "gmlId": "UUID_5e2f9626-968c-4a6f-889b-2c2a94227a96"
        },
        {
            "url": "rainfall/益丰源供水厂(马头村).zarr",
            "gmlId": "UUID_870399f4-3c30-4bc3-a893-e59ecd850813"
        },
        {
            "url": "rainfall/军庄村委会(漷县镇).zarr",
            "gmlId": "UUID_e44999e0-f894-4482-9433-0de0644dc184"
        },
        {
            "url": "rainfall/副中心办公区南.zarr",
            "gmlId": "UUID_51416e03-f151-4c81-9a0d-fa0613f66ec3"
        },
        {
            "url": "rainfall/梨园(梨园水务所).zarr",
            "gmlId": "UUID_6083c7b8-c9d8-481e-9ac3-f6af5be0ee9c"
        },
        {
            "url": "rainfall/神驹村.zarr",
            "gmlId": "UUID_2549ff1a-a957-44a7-b888-9f15fdbc6511"
        },
        {
            "url": "rainfall/罗庄村.zarr",
            "gmlId": "UUID_6b596d3e-7ad2-4270-b319-0374cef331e1"
        },
        {
            "url": "rainfall/枣林村委会.zarr",
            "gmlId": "UUID_3bd4e2a3-ced0-457f-9eff-f870a82a7861"
        },
        {
            "url": "rainfall/通州区水务局.zarr",
            "gmlId": "UUID_0b677517-fe0d-48f8-8cc1-cbad0205be4f"
        },
        {
            "url": "rainfall/次渠.zarr",
            "gmlId": "UUID_3985aed0-5aa9-4cc3-b704-b4e3667f32f9"
        },
        {
            "url": "rainfall/通州.zarr",
            "gmlId": "UUID_455068b0-a95d-4fd3-a3ef-6f7888f16895"
        },
        {
            "url": "rainfall/环球大道.zarr",
            "gmlId": "UUID_014ff2e7-08a5-4421-8cac-31880b30474a"
        },
        {
            "url": "rainfall/宋庄(宋庄水务一所).zarr",
            "gmlId": "UUID_8bda9343-6338-4084-a022-07f5459df12e"
        },
        {
            "url": "rainfall/马驹桥(马驹桥水务一所).zarr",
            "gmlId": "UUID_28ea6acc-05d7-40b5-82e5-f3162b95a4fe"
        },
        {
            "url": "rainfall/永乐店(永乐店水务中心).zarr",
            "gmlId": "UUID_3725347b-42b1-402d-8cfc-ce00d38990fe"
        },
        {
            "url": "rainfall/副中心办公区西.zarr",
            "gmlId": "UUID_0dcc1d2d-8469-45f9-9718-ce68ca981815"
        },
        {
            "url": "rainfall/次渠(台湖水务二所).zarr",
            "gmlId": "UUID_e5cb087f-cf0f-461f-bf81-e13b75494cfc"
        },
        {
            "url": "rainfall/南屯村委会.zarr",
            "gmlId": "UUID_6f00ee4a-55f5-4201-8ab5-ca64c656bf5e"
        },
        {
            "url": "rainfall/杨秀店村.zarr",
            "gmlId": "UUID_ccd75c2d-ee69-489e-963b-8687ff567fbc"
        },
        {
            "url": "rainfall/刘庄村.zarr",
            "gmlId": "UUID_6cc58ae7-7368-4b2c-8803-e7bcab3a29a7"
        },
        {
            "url": "rainfall/黄东仪村.zarr",
            "gmlId": "UUID_78bc1917-7964-41a4-89d5-130e776c4c0d"
        },
        {
            "url": "rainfall/小邓各庄村.zarr",
            "gmlId": "UUID_9d5ff6e0-0554-4b18-9941-3aad4275980f"
        },
        {
            "url": "rainfall/小庞村闸(雨).zarr",
            "gmlId": "UUID_a81933f4-0cd8-45e2-b34d-1703682fb28d"
        },
        {
            "url": "rainfall/梨园主题公园.zarr",
            "gmlId": "UUID_29fcc7ac-0fd3-4dbf-a29d-0c1b25e02992"
        },
        {
            "url": "rainfall/台湖公园.zarr",
            "gmlId": "UUID_fa52ede9-1f08-44ea-ad40-f78f4b92971d"
        },
        {
            "url": "rainfall/北苑街道.zarr",
            "gmlId": "UUID_a66664aa-e665-4ece-b1a8-82d6ad37dfd4"
        },
        {
            "url": "rainfall/新河闸(雨).zarr",
            "gmlId": "UUID_d18e7d90-b87d-4af6-86cf-6aa72a749e3d"
        },
        {
            "url": "rainfall/通顺马场.zarr",
            "gmlId": "UUID_d57740f0-c7e5-42f2-be2c-e56169a281aa"
        },
        {
            "url": "rainfall/皇木厂村.zarr",
            "gmlId": "UUID_12775fe7-52f9-4e53-a45d-18192c33dfa2"
        },
        {
            "url": "rainfall/张家湾防疫站.zarr",
            "gmlId": "UUID_17f42e8c-4047-478c-9b70-93bd9e26c8c2"
        },
        {
            "url": "rainfall/101农场.zarr",
            "gmlId": "UUID_9a62eda5-3351-43bb-8fc4-6f456a94566b"
        },
        {
            "url": "rainfall/梨园大屏公园.zarr",
            "gmlId": "UUID_e0523f54-9477-46d8-8639-1db51962ff8e"
        },
        {
            "url": "rainfall/前营闸(雨).zarr",
            "gmlId": "UUID_a5cb9c7a-d8ae-4461-9d2d-2dd7c3321900"
        },
        {
            "url": "rainfall/漷县村.zarr",
            "gmlId": "UUID_699ecf94-e94f-4933-a01d-446481ea6881"
        },
        {
            "url": "rainfall/坨堤村.zarr",
            "gmlId": "UUID_35106417-7180-4da2-94b9-f6b90ad73a37"
        },
        {
            "url": "rainfall/副中心办公区北.zarr",
            "gmlId": "UUID_26eb3e09-8c2a-4899-8924-38fb46210455"
        },
        {
            "url": "rainfall/于辛庄橡胶坝(雨).zarr",
            "gmlId": "UUID_4326d04a-44fb-4155-b951-fff1add0afc1"
        },
        {
            "url": "rainfall/吴营村.zarr",
            "gmlId": "UUID_a317286f-1415-438b-8413-4f99e230dc6d"
        },
        {
            "url": "rainfall/副中心办公区东.zarr",
            "gmlId": "UUID_b38d6797-e071-43ec-b7cc-bdd979737772"
        },
        {
            "url": "rainfall/潞城(潞城水务一所).zarr",
            "gmlId": "UUID_a57bbe78-5e40-424f-a517-950e9fa382bf"
        },
        {
            "url": "rainfall/漷县(漷县水务一所).zarr",
            "gmlId": "UUID_a937dad2-9237-48ec-a068-e4a830c6aabe"
        },
        {
            "url": "rainfall/马驹桥镇政府.zarr",
            "gmlId": "UUID_4b919860-75b1-4fa6-a9f9-8f976d191cba"
        },
        {
            "url": "rainfall/永乐店镇政府.zarr",
            "gmlId": "UUID_5076346f-f0e0-4112-95c8-afaed88cb105"
        },
        {
            "url": "rainfall/神驹村村委会.zarr",
            "gmlId": "UUID_8f3dc248-3649-4cc8-87ae-f29813cf12ee"
        },
        {
            "url": "rainfall/觅子店(漷县水务二所).zarr",
            "gmlId": "UUID_126493b8-55c9-42a5-bb22-e560ef2f7b35"
        },
        {
            "url": "rainfall/副中心办公区.zarr",
            "gmlId": "UUID_fc8da901-81b4-46d4-b883-b9c3f06d09ab"
        },
        {
            "url": "rainfall/北仪阁村.zarr",
            "gmlId": "UUID_e166b37b-ebed-4320-b643-e475fc832e22"
        },
        {
            "url": "rainfall/南马庄.zarr",
            "gmlId": "UUID_e3d0b63f-c1ec-434e-97d4-81c541ddb988"
        },
        {
            "url": "rainfall/双埠头.zarr",
            "gmlId": "UUID_7660d01c-dc18-493f-b378-86384d6b6c33"
        },
        {
            "url": "rainfall/仇庄村.zarr",
            "gmlId": "UUID_6e1118af-9a56-4394-895f-abe997993fef"
        },
        {
            "url": "rainfall/凉水河所.zarr",
            "gmlId": "UUID_8fed813c-1553-4f2f-a9c4-4d5c1740ca63"
        },
        {
            "url": "rainfall/吴各庄.zarr",
            "gmlId": "UUID_11e20356-ad48-4a43-954f-ddbdd88a8db9"
        },
        {
            "url": "rainfall/西集(西集水务一所).zarr",
            "gmlId": "UUID_d5ac71c3-f73c-422d-a52f-fd10ee524e3a"
        },
        {
            "url": "rainfall/兴隆庄.zarr",
            "gmlId": "UUID_5bad9d30-8238-4b74-ae41-5f633da029f1"
        },
        {
            "url": "rainfall/于家务乡政府.zarr",
            "gmlId": "UUID_2469d42a-0d19-41b2-8b11-6432142131ed"
        },
        {
            "url": "rainfall/上马头村.zarr",
            "gmlId": "UUID_14e14578-3d47-493e-a83b-75eeedf578ef"
        },
        {
            "url": "rainfall/于府闸(雨).zarr",
            "gmlId": "UUID_eb488208-221a-4998-b51c-75275abfd8f4"
        },
        {
            "url": "rainfall/五彩原野农场.zarr",
            "gmlId": "UUID_b417029f-8869-4970-b326-7db3c66259ad"
        },
        {
            "url": "rainfall/甘棠(潞城水务二所).zarr",
            "gmlId": "UUID_748df01f-6d40-4e18-be74-06b82d850835"
        },
        {
            "url": "rainfall/漷县闸(雨).zarr",
            "gmlId": "UUID_fc6aa3ac-7623-4c64-9b6d-3b0a618adceb"
        },
        {
            "url": "rainfall/大庞村.zarr",
            "gmlId": "UUID_67478d93-16bd-44c7-9de1-bd01c7933af0"
        },
        {
            "url": "rainfall/三间房村.zarr",
            "gmlId": "UUID_0a12a381-ed33-465b-a3ec-e4867d2dc311"
        },
        {
            "url": "rainfall/大豆各庄小学.zarr",
            "gmlId": "UUID_fd9be19a-040e-41c0-9264-4f08949f78da"
        },
        {
            "url": "rainfall/胡家垈村.zarr",
            "gmlId": "UUID_dfdb52e8-efe1-4f07-a015-ec70e0640d7d"
        },
        {
            "url": "rainfall/协各庄村.zarr",
            "gmlId": "UUID_da6e6971-4576-4970-9f8d-6693ad9d1fc1"
        },
        {
            "url": "rainfall/曹庄村.zarr",
            "gmlId": "UUID_dc459dca-6715-4728-ae66-14ddf92ca720"
        },
        {
            "url": "rainfall/于家务.zarr",
            "gmlId": "UUID_ac13ca7f-01be-4925-8e61-09e7d05729b8"
        },
        {
            "url": "rainfall/小屯闸(雨).zarr",
            "gmlId": "UUID_9c2b3d12-b228-4910-82a8-13c3427fe817"
        },
        {
            "url": "rainfall/大杜社.zarr",
            "gmlId": "UUID_5498540f-6a95-446b-ae03-3d42490fff1d"
        },
        {
            "url": "rainfall/老槐庄.zarr",
            "gmlId": "UUID_7bf2beb2-0e84-49ee-b64f-c9e7e53f4149"
        },
        {
            "url": "rainfall/富豪村.zarr",
            "gmlId": "UUID_32b513c4-abc6-4c08-877b-9356ef54ed50"
        },
        {
            "url": "rainfall/白庙橡胶坝(雨).zarr",
            "gmlId": "UUID_14a00f1c-4f21-4be2-8104-68e07990ef54"
        },
        {
            "url": "rainfall/大杜社(马驹桥水务二所).zarr",
            "gmlId": "UUID_3b5bbdf1-2f1a-49b5-bf78-941d5a4548ea"
        },
        {
            "url": "rainfall/尹各庄.zarr",
            "gmlId": "UUID_f3d4592b-4343-4d89-809e-664f2530d05a"
        },
        {
            "url": "rainfall/玉带闸(雨).zarr",
            "gmlId": "UUID_f9dd2976-bcd1-49ad-9c06-734b11b2ee79"
        },
        {
            "url": "rainfall/北刘各庄.zarr",
            "gmlId": "UUID_2dad53c2-fdd8-4cf1-8302-dfba8121d0e9"
        },
        {
            "url": "rainfall/台湖(台湖水务一所).zarr",
            "gmlId": "UUID_23c38a98-d5c5-4921-acf0-d130505c5505"
        },
        {
            "url": "rainfall/郎府(西集水务二所).zarr",
            "gmlId": "UUID_0b797543-d66c-4d98-8acc-614335a7d060"
        },
        {
            "url": "rainfall/台湖镇政府.zarr",
            "gmlId": "UUID_4aa68d4a-bcb5-421e-83a4-3825aaa06d22"
        },
        {
            "url": "rainfall/北运河所.zarr",
            "gmlId": "UUID_87e59cf8-04a7-47db-8edb-8999a5be4fe7"
        },
        {
            "url": "rainfall/垡头村.zarr",
            "gmlId": "UUID_08f497d6-ff8f-4132-ae28-97830c3b6db8"
        },
        {
            "url": "rainfall/东马各庄村.zarr",
            "gmlId": "UUID_9c72372e-b4ef-4e00-b292-7476cd9cad23"
        },
        {
            "url": "rainfall/熬硝营.zarr",
            "gmlId": "UUID_7230c631-e490-4577-85e9-5b96dd8041f0"
        },
        {
            "url": "rainfall/徐辛庄(宋庄水务二所).zarr",
            "gmlId": "UUID_704b44e3-d1e6-41a9-9263-31e4ff5e1c41"
        },
        {
            "url": "rainfall/三垡村.zarr",
            "gmlId": "UUID_74252ab7-14e6-4554-bbed-9ab6f5d7e77d"
        },
        {
            "url": "rainfall/兴各庄橡胶坝(雨).zarr",
            "gmlId": "UUID_3191358a-6b15-41f2-92c8-c2af9ea44533"
        },
        {
            "url": "rainfall/西定环卫所.zarr",
            "gmlId": "UUID_96cb5505-9008-4358-bf6b-47dbf3da9aa5"
        },
        {
            "url": "rainfall/永顺公园.zarr",
            "gmlId": "UUID_408b79d8-c299-425f-a90e-9ceea6584c97"
        },
        {
            "url": "rainfall/西集镇天然气站.zarr",
            "gmlId": "UUID_e9bfdfd4-e552-471d-b803-c7e05cabf1ef"
        },
        {
            "url": "rainfall/南小营村委会.zarr",
            "gmlId": "UUID_7f5affc4-a59e-4cfa-ac60-2a7046458ddb"
        },
        {
            "url": "rainfall/北京德芳潭陵园.zarr",
            "gmlId": "UUID_98f81fa9-8742-4a51-84eb-8a953e519af9"
        },
        {
            "url": "rainfall/北姚园村.zarr",
            "gmlId": "UUID_0ea6ea53-f659-4861-b1b8-1707d44b71ed"
        },
        {
            "url": "rainfall/范庄(永顺水务所).zarr",
            "gmlId": "UUID_7fe8e4ca-5943-4017-92ce-9605a1248bca"
        },
        {
            "url": "rainfall/西海子公园.zarr",
            "gmlId": "UUID_97a4ae5b-b563-4bc4-892e-fdea3eaf831d"
        },
        {
            "url": "rainfall/蓝湖庄园.zarr",
            "gmlId": "UUID_a6a2a5b1-49ef-4dc2-aa07-660a988de934"
        },
        {
            "url": "rainfall/永顺镇政府.zarr",
            "gmlId": "UUID_d6f3453c-6bcb-4251-8898-8239198c6376"
        },
        {
            "url": "rainfall/于家务(于家务水务所).zarr",
            "gmlId": "UUID_43485b5d-5349-411a-8850-b49abf107485"
        },
        {
            "url": "rainfall/柴厂屯村.zarr",
            "gmlId": "UUID_f626b0bf-da20-4792-a6b9-70d89de50f16"
        },
        {
            "url": "rainfall/大松垡闸(雨).zarr",
            "gmlId": "UUID_a931b6b7-f3dd-4f2c-85e0-e20a1b71d2ba"
        },
        {
            "url": "rainfall/东石公园.zarr",
            "gmlId": "UUID_efa178fa-2a4d-4a23-8298-123ffeaa309a"
        },
        {
            "url": "rainfall/中农富通.zarr",
            "gmlId": "UUID_eb22470f-7e8f-42d8-9de8-958bc6ec684d"
        },
        {
            "url": "rainfall/永二村.zarr",
            "gmlId": "UUID_b5b7541a-095b-4b7b-bbe9-20cccf252c2c"
        },
        {
            "url": "rainfall/东果园.zarr",
            "gmlId": "UUID_4e415637-0631-4be3-8255-77c2b7272dce"
        },
        {
            "url": "rainfall/苍上村.zarr",
            "gmlId": "UUID_cdfb10ab-a0de-4cb3-a00d-f84110053733"
        },
        {
            "url": "rainfall/北窑上闸(雨).zarr",
            "gmlId": "UUID_ab5998c3-09c4-4dd4-a73e-35873c6b07c4"
        },
        {
            "url": "rainfall/梨园公园.zarr",
            "gmlId": "UUID_b15bd990-53a7-45be-a9ab-60c64047b773"
        },
        {
            "url": "rainfall/西太平庄.zarr",
            "gmlId": "UUID_bbbe3482-e3b7-4ed8-834e-0a401136c374"
        },
        {
            "url": "rainfall/北堤寺.zarr",
            "gmlId": "UUID_315010b3-baba-48e8-a764-4743699cfbf9"
        },
        {
            "url": "rainfall/西上园.zarr",
            "gmlId": "UUID_949246dc-768a-4f59-98f4-10c5ddab85f7"
        },
        {
            "url": "rainfall/德仁务后街村委会.zarr",
            "gmlId": "UUID_3abcfabc-0169-4604-bbc2-da98adeced25"
        },
        {
            "url": "rainfall/师姑庄橡胶坝.zarr",
            "gmlId": "UUID_96eb24fc-d2ad-4e12-a20a-e1416e08a0a3"
        },
        {
            "url": "rainfall/马坊村.zarr",
            "gmlId": "UUID_901f0ff6-3e29-4cb8-a2c0-e86c3db96521"
        }
    ],
    "CityObjects": {
        "UUID_005f52a3-47c2-492c-a941-187c3a342901": {
            "type": "+Rainfall",
            "attributes": {
                "name": "田村闸(雨)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        1
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_5e2f9626-968c-4a6f-889b-2c2a94227a96": {
            "type": "+Rainfall",
            "attributes": {
                "name": "后银子村委会"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        35
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_870399f4-3c30-4bc3-a893-e59ecd850813": {
            "type": "+Rainfall",
            "attributes": {
                "name": "益丰源供水厂(马头村)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        41
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_e44999e0-f894-4482-9433-0de0644dc184": {
            "type": "+Rainfall",
            "attributes": {
                "name": "军庄村委会(漷县镇)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        112
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_51416e03-f151-4c81-9a0d-fa0613f66ec3": {
            "type": "+Rainfall",
            "attributes": {
                "name": "副中心办公区南"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        13
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_6083c7b8-c9d8-481e-9ac3-f6af5be0ee9c": {
            "type": "+Rainfall",
            "attributes": {
                "name": "梨园(梨园水务所)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        36
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_2549ff1a-a957-44a7-b888-9f15fdbc6511": {
            "type": "+Rainfall",
            "attributes": {
                "name": "神驹村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        110
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_6b596d3e-7ad2-4270-b319-0374cef331e1": {
            "type": "+Rainfall",
            "attributes": {
                "name": "罗庄村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        79
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_3bd4e2a3-ced0-457f-9eff-f870a82a7861": {
            "type": "+Rainfall",
            "attributes": {
                "name": "枣林村委会"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        39
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_0b677517-fe0d-48f8-8cc1-cbad0205be4f": {
            "type": "+Rainfall",
            "attributes": {
                "name": "通州区水务局"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        47
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_3985aed0-5aa9-4cc3-b704-b4e3667f32f9": {
            "type": "+Rainfall",
            "attributes": {
                "name": "次渠"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        111
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_455068b0-a95d-4fd3-a3ef-6f7888f16895": {
            "type": "+Rainfall",
            "attributes": {
                "name": "通州"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        3
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_014ff2e7-08a5-4421-8cac-31880b30474a": {
            "type": "+Rainfall",
            "attributes": {
                "name": "环球大道"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        16
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_8bda9343-6338-4084-a022-07f5459df12e": {
            "type": "+Rainfall",
            "attributes": {
                "name": "宋庄(宋庄水务一所)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        52
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_28ea6acc-05d7-40b5-82e5-f3162b95a4fe": {
            "type": "+Rainfall",
            "attributes": {
                "name": "马驹桥(马驹桥水务一所)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        53
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_3725347b-42b1-402d-8cfc-ce00d38990fe": {
            "type": "+Rainfall",
            "attributes": {
                "name": "永乐店(永乐店水务中心)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        58
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_0dcc1d2d-8469-45f9-9718-ce68ca981815": {
            "type": "+Rainfall",
            "attributes": {
                "name": "副中心办公区西"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        104
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_e5cb087f-cf0f-461f-bf81-e13b75494cfc": {
            "type": "+Rainfall",
            "attributes": {
                "name": "次渠(台湖水务二所)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        6
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_6f00ee4a-55f5-4201-8ab5-ca64c656bf5e": {
            "type": "+Rainfall",
            "attributes": {
                "name": "南屯村委会"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        51
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_ccd75c2d-ee69-489e-963b-8687ff567fbc": {
            "type": "+Rainfall",
            "attributes": {
                "name": "杨秀店村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        101
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_6cc58ae7-7368-4b2c-8803-e7bcab3a29a7": {
            "type": "+Rainfall",
            "attributes": {
                "name": "刘庄村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        88
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_78bc1917-7964-41a4-89d5-130e776c4c0d": {
            "type": "+Rainfall",
            "attributes": {
                "name": "黄东仪村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        96
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_9d5ff6e0-0554-4b18-9941-3aad4275980f": {
            "type": "+Rainfall",
            "attributes": {
                "name": "小邓各庄村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        63
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_a81933f4-0cd8-45e2-b34d-1703682fb28d": {
            "type": "+Rainfall",
            "attributes": {
                "name": "小庞村闸(雨)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        12
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_29fcc7ac-0fd3-4dbf-a29d-0c1b25e02992": {
            "type": "+Rainfall",
            "attributes": {
                "name": "梨园主题公园"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        90
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_fa52ede9-1f08-44ea-ad40-f78f4b92971d": {
            "type": "+Rainfall",
            "attributes": {
                "name": "台湖公园"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        61
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_a66664aa-e665-4ece-b1a8-82d6ad37dfd4": {
            "type": "+Rainfall",
            "attributes": {
                "name": "北苑街道"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        99
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_d18e7d90-b87d-4af6-86cf-6aa72a749e3d": {
            "type": "+Rainfall",
            "attributes": {
                "name": "新河闸(雨)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        8
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_d57740f0-c7e5-42f2-be2c-e56169a281aa": {
            "type": "+Rainfall",
            "attributes": {
                "name": "通顺马场"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        75
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_12775fe7-52f9-4e53-a45d-18192c33dfa2": {
            "type": "+Rainfall",
            "attributes": {
                "name": "皇木厂村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        86
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_17f42e8c-4047-478c-9b70-93bd9e26c8c2": {
            "type": "+Rainfall",
            "attributes": {
                "name": "张家湾防疫站"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        15
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_9a62eda5-3351-43bb-8fc4-6f456a94566b": {
            "type": "+Rainfall",
            "attributes": {
                "name": "101农场"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        66
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_e0523f54-9477-46d8-8639-1db51962ff8e": {
            "type": "+Rainfall",
            "attributes": {
                "name": "梨园大屏公园"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        23
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_a5cb9c7a-d8ae-4461-9d2d-2dd7c3321900": {
            "type": "+Rainfall",
            "attributes": {
                "name": "前营闸(雨)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        55
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_699ecf94-e94f-4933-a01d-446481ea6881": {
            "type": "+Rainfall",
            "attributes": {
                "name": "漷县村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        83
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_35106417-7180-4da2-94b9-f6b90ad73a37": {
            "type": "+Rainfall",
            "attributes": {
                "name": "坨堤村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        108
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_26eb3e09-8c2a-4899-8924-38fb46210455": {
            "type": "+Rainfall",
            "attributes": {
                "name": "副中心办公区北"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        42
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_4326d04a-44fb-4155-b951-fff1add0afc1": {
            "type": "+Rainfall",
            "attributes": {
                "name": "于辛庄橡胶坝(雨)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        5
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_a317286f-1415-438b-8413-4f99e230dc6d": {
            "type": "+Rainfall",
            "attributes": {
                "name": "吴营村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        21
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_b38d6797-e071-43ec-b7cc-bdd979737772": {
            "type": "+Rainfall",
            "attributes": {
                "name": "副中心办公区东"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        98
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_a57bbe78-5e40-424f-a517-950e9fa382bf": {
            "type": "+Rainfall",
            "attributes": {
                "name": "潞城(潞城水务一所)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        28
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_a937dad2-9237-48ec-a068-e4a830c6aabe": {
            "type": "+Rainfall",
            "attributes": {
                "name": "漷县(漷县水务一所)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        56
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_4b919860-75b1-4fa6-a9f9-8f976d191cba": {
            "type": "+Rainfall",
            "attributes": {
                "name": "马驹桥镇政府"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        64
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_5076346f-f0e0-4112-95c8-afaed88cb105": {
            "type": "+Rainfall",
            "attributes": {
                "name": "永乐店镇政府"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        24
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_8f3dc248-3649-4cc8-87ae-f29813cf12ee": {
            "type": "+Rainfall",
            "attributes": {
                "name": "神驹村村委会"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        37
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_126493b8-55c9-42a5-bb22-e560ef2f7b35": {
            "type": "+Rainfall",
            "attributes": {
                "name": "觅子店(漷县水务二所)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        45
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_fc8da901-81b4-46d4-b883-b9c3f06d09ab": {
            "type": "+Rainfall",
            "attributes": {
                "name": "副中心办公区"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        72
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_e166b37b-ebed-4320-b643-e475fc832e22": {
            "type": "+Rainfall",
            "attributes": {
                "name": "北仪阁村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        74
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_e3d0b63f-c1ec-434e-97d4-81c541ddb988": {
            "type": "+Rainfall",
            "attributes": {
                "name": "南马庄"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        92
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_7660d01c-dc18-493f-b378-86384d6b6c33": {
            "type": "+Rainfall",
            "attributes": {
                "name": "双埠头"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        70
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_6e1118af-9a56-4394-895f-abe997993fef": {
            "type": "+Rainfall",
            "attributes": {
                "name": "仇庄村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        87
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_8fed813c-1553-4f2f-a9c4-4d5c1740ca63": {
            "type": "+Rainfall",
            "attributes": {
                "name": "凉水河所"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        30
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_11e20356-ad48-4a43-954f-ddbdd88a8db9": {
            "type": "+Rainfall",
            "attributes": {
                "name": "吴各庄"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        7
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_d5ac71c3-f73c-422d-a52f-fd10ee524e3a": {
            "type": "+Rainfall",
            "attributes": {
                "name": "西集(西集水务一所)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        44
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_5bad9d30-8238-4b74-ae41-5f633da029f1": {
            "type": "+Rainfall",
            "attributes": {
                "name": "兴隆庄"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        26
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_2469d42a-0d19-41b2-8b11-6432142131ed": {
            "type": "+Rainfall",
            "attributes": {
                "name": "于家务乡政府"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        49
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_14e14578-3d47-493e-a83b-75eeedf578ef": {
            "type": "+Rainfall",
            "attributes": {
                "name": "上马头村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        91
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_eb488208-221a-4998-b51c-75275abfd8f4": {
            "type": "+Rainfall",
            "attributes": {
                "name": "于府闸(雨)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        54
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_b417029f-8869-4970-b326-7db3c66259ad": {
            "type": "+Rainfall",
            "attributes": {
                "name": "五彩原野农场"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        73
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_748df01f-6d40-4e18-be74-06b82d850835": {
            "type": "+Rainfall",
            "attributes": {
                "name": "甘棠(潞城水务二所)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        2
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_fc6aa3ac-7623-4c64-9b6d-3b0a618adceb": {
            "type": "+Rainfall",
            "attributes": {
                "name": "漷县闸(雨)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        27
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_67478d93-16bd-44c7-9de1-bd01c7933af0": {
            "type": "+Rainfall",
            "attributes": {
                "name": "大庞村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        0
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_0a12a381-ed33-465b-a3ec-e4867d2dc311": {
            "type": "+Rainfall",
            "attributes": {
                "name": "三间房村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        65
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_fd9be19a-040e-41c0-9264-4f08949f78da": {
            "type": "+Rainfall",
            "attributes": {
                "name": "大豆各庄小学"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        77
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_dfdb52e8-efe1-4f07-a015-ec70e0640d7d": {
            "type": "+Rainfall",
            "attributes": {
                "name": "胡家垈村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        62
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_da6e6971-4576-4970-9f8d-6693ad9d1fc1": {
            "type": "+Rainfall",
            "attributes": {
                "name": "协各庄村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        78
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_dc459dca-6715-4728-ae66-14ddf92ca720": {
            "type": "+Rainfall",
            "attributes": {
                "name": "曹庄村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        105
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_ac13ca7f-01be-4925-8e61-09e7d05729b8": {
            "type": "+Rainfall",
            "attributes": {
                "name": "于家务"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        71
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_9c2b3d12-b228-4910-82a8-13c3427fe817": {
            "type": "+Rainfall",
            "attributes": {
                "name": "小屯闸(雨)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        29
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_5498540f-6a95-446b-ae03-3d42490fff1d": {
            "type": "+Rainfall",
            "attributes": {
                "name": "大杜社"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        68
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_7bf2beb2-0e84-49ee-b64f-c9e7e53f4149": {
            "type": "+Rainfall",
            "attributes": {
                "name": "老槐庄"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        11
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_32b513c4-abc6-4c08-877b-9356ef54ed50": {
            "type": "+Rainfall",
            "attributes": {
                "name": "富豪村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        109
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_14a00f1c-4f21-4be2-8104-68e07990ef54": {
            "type": "+Rainfall",
            "attributes": {
                "name": "白庙橡胶坝(雨)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        22
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_3b5bbdf1-2f1a-49b5-bf78-941d5a4548ea": {
            "type": "+Rainfall",
            "attributes": {
                "name": "大杜社(马驹桥水务二所)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        18
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_f3d4592b-4343-4d89-809e-664f2530d05a": {
            "type": "+Rainfall",
            "attributes": {
                "name": "尹各庄"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        100
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_f9dd2976-bcd1-49ad-9c06-734b11b2ee79": {
            "type": "+Rainfall",
            "attributes": {
                "name": "玉带闸(雨)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        25
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_2dad53c2-fdd8-4cf1-8302-dfba8121d0e9": {
            "type": "+Rainfall",
            "attributes": {
                "name": "北刘各庄"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        43
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_23c38a98-d5c5-4921-acf0-d130505c5505": {
            "type": "+Rainfall",
            "attributes": {
                "name": "台湖(台湖水务一所)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        17
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_0b797543-d66c-4d98-8acc-614335a7d060": {
            "type": "+Rainfall",
            "attributes": {
                "name": "郎府(西集水务二所)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        40
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_4aa68d4a-bcb5-421e-83a4-3825aaa06d22": {
            "type": "+Rainfall",
            "attributes": {
                "name": "台湖镇政府"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        50
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_87e59cf8-04a7-47db-8edb-8999a5be4fe7": {
            "type": "+Rainfall",
            "attributes": {
                "name": "北运河所"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        34
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_08f497d6-ff8f-4132-ae28-97830c3b6db8": {
            "type": "+Rainfall",
            "attributes": {
                "name": "垡头村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        97
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_9c72372e-b4ef-4e00-b292-7476cd9cad23": {
            "type": "+Rainfall",
            "attributes": {
                "name": "东马各庄村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        94
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_7230c631-e490-4577-85e9-5b96dd8041f0": {
            "type": "+Rainfall",
            "attributes": {
                "name": "熬硝营"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        46
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_704b44e3-d1e6-41a9-9263-31e4ff5e1c41": {
            "type": "+Rainfall",
            "attributes": {
                "name": "徐辛庄(宋庄水务二所)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        60
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_74252ab7-14e6-4554-bbed-9ab6f5d7e77d": {
            "type": "+Rainfall",
            "attributes": {
                "name": "三垡村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        10
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_3191358a-6b15-41f2-92c8-c2af9ea44533": {
            "type": "+Rainfall",
            "attributes": {
                "name": "兴各庄橡胶坝(雨)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        57
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_96cb5505-9008-4358-bf6b-47dbf3da9aa5": {
            "type": "+Rainfall",
            "attributes": {
                "name": "西定环卫所"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        93
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_408b79d8-c299-425f-a90e-9ceea6584c97": {
            "type": "+Rainfall",
            "attributes": {
                "name": "永顺公园"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        107
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_e9bfdfd4-e552-471d-b803-c7e05cabf1ef": {
            "type": "+Rainfall",
            "attributes": {
                "name": "西集镇天然气站"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        85
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_7f5affc4-a59e-4cfa-ac60-2a7046458ddb": {
            "type": "+Rainfall",
            "attributes": {
                "name": "南小营村委会"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        38
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_98f81fa9-8742-4a51-84eb-8a953e519af9": {
            "type": "+Rainfall",
            "attributes": {
                "name": "北京德芳潭陵园"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        33
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_0ea6ea53-f659-4861-b1b8-1707d44b71ed": {
            "type": "+Rainfall",
            "attributes": {
                "name": "北姚园村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        102
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_7fe8e4ca-5943-4017-92ce-9605a1248bca": {
            "type": "+Rainfall",
            "attributes": {
                "name": "范庄(永顺水务所)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        59
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_97a4ae5b-b563-4bc4-892e-fdea3eaf831d": {
            "type": "+Rainfall",
            "attributes": {
                "name": "西海子公园"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        103
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_a6a2a5b1-49ef-4dc2-aa07-660a988de934": {
            "type": "+Rainfall",
            "attributes": {
                "name": "蓝湖庄园"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        76
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_d6f3453c-6bcb-4251-8898-8239198c6376": {
            "type": "+Rainfall",
            "attributes": {
                "name": "永顺镇政府"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        31
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_43485b5d-5349-411a-8850-b49abf107485": {
            "type": "+Rainfall",
            "attributes": {
                "name": "于家务(于家务水务所)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        48
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_f626b0bf-da20-4792-a6b9-70d89de50f16": {
            "type": "+Rainfall",
            "attributes": {
                "name": "柴厂屯村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        20
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_a931b6b7-f3dd-4f2c-85e0-e20a1b71d2ba": {
            "type": "+Rainfall",
            "attributes": {
                "name": "大松垡闸(雨)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        32
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_efa178fa-2a4d-4a23-8298-123ffeaa309a": {
            "type": "+Rainfall",
            "attributes": {
                "name": "东石公园"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        84
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_eb22470f-7e8f-42d8-9de8-958bc6ec684d": {
            "type": "+Rainfall",
            "attributes": {
                "name": "中农富通"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        82
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_b5b7541a-095b-4b7b-bbe9-20cccf252c2c": {
            "type": "+Rainfall",
            "attributes": {
                "name": "永二村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        69
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_4e415637-0631-4be3-8255-77c2b7272dce": {
            "type": "+Rainfall",
            "attributes": {
                "name": "东果园"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        67
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_cdfb10ab-a0de-4cb3-a00d-f84110053733": {
            "type": "+Rainfall",
            "attributes": {
                "name": "苍上村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        95
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_ab5998c3-09c4-4dd4-a73e-35873c6b07c4": {
            "type": "+Rainfall",
            "attributes": {
                "name": "北窑上闸(雨)"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        4
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_b15bd990-53a7-45be-a9ab-60c64047b773": {
            "type": "+Rainfall",
            "attributes": {
                "name": "梨园公园"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        80
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_bbbe3482-e3b7-4ed8-834e-0a401136c374": {
            "type": "+Rainfall",
            "attributes": {
                "name": "西太平庄"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        9
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_315010b3-baba-48e8-a764-4743699cfbf9": {
            "type": "+Rainfall",
            "attributes": {
                "name": "北堤寺"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        81
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_949246dc-768a-4f59-98f4-10c5ddab85f7": {
            "type": "+Rainfall",
            "attributes": {
                "name": "西上园"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        89
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_3abcfabc-0169-4604-bbc2-da98adeced25": {
            "type": "+Rainfall",
            "attributes": {
                "name": "德仁务后街村委会"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        14
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_96eb24fc-d2ad-4e12-a20a-e1416e08a0a3": {
            "type": "+Rainfall",
            "attributes": {
                "name": "师姑庄橡胶坝"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        19
                    ],
                    "lod": 0
                }
            ]
        },
        "UUID_901f0ff6-3e29-4cb8-a2c0-e86c3db96521": {
            "type": "+Rainfall",
            "attributes": {
                "name": "马坊村"
            },
            "geometry": [
                {
                    "type": "MultiPoint",
                    "boundaries": [
                        106
                    ],
                    "lod": 0
                }
            ]
        }
    },
    "vertices": [
        [
            116.7058333,
            39.98416667,
            0.0
        ],
        [
            116.78224,
            39.75207,
            0.0
        ],
        [
            116.78676,
            39.8584,
            0.0
        ],
        [
            116.75,
            39.85,
            0.0
        ],
        [
            116.66814,
            39.99968,
            0.0
        ],
        [
            116.88367,
            39.83701,
            0.0
        ],
        [
            116.59601,
            39.80151,
            0.0
        ],
        [
            116.6191667,
            40.01416667,
            0.0
        ],
        [
            116.64143,
            39.79177,
            0.0
        ],
        [
            116.5919444,
            39.79694444,
            0.0
        ],
        [
            116.7997222,
            39.615,
            0.0
        ],
        [
            116.8233333,
            39.70333333,
            0.0
        ],
        [
            116.71277,
            40.00134,
            0.0
        ],
        [
            116.7241667,
            39.88722222,
            0.0
        ],
        [
            116.77682,
            39.67225,
            0.0
        ],
        [
            116.7141667,
            39.84416667,
            0.0
        ],
        [
            116.6589,
            39.8494,
            0.0
        ],
        [
            116.61583,
            39.84058,
            0.0
        ],
        [
            116.62983,
            39.72732,
            0.0
        ],
        [
            116.75522,
            39.90604,
            0.0
        ],
        [
            116.774,
            39.6291,
            0.0
        ],
        [
            116.75528,
            39.80389,
            0.0
        ],
        [
            116.77384,
            39.94701,
            0.0
        ],
        [
            116.657776,
            39.87389,
            0.0
        ],
        [
            116.79042,
            39.70776,
            0.0
        ],
        [
            116.68586,
            39.88056,
            0.0
        ],
        [
            116.81369,
            39.61866,
            0.0
        ],
        [
            116.78113,
            39.7752,
            0.0
        ],
        [
            116.74939,
            39.87114,
            0.0
        ],
        [
            116.89955,
            39.73435,
            0.0
        ],
        [
            116.69402,
            39.8327,
            0.0
        ],
        [
            116.64981,
            39.91682,
            0.0
        ],
        [
            116.65189,
            39.72598,
            0.0
        ],
        [
            116.76649,
            39.73489,
            0.0
        ],
        [
            116.75148,
            39.8544,
            0.0
        ],
        [
            116.58134,
            39.74832,
            0.0
        ],
        [
            116.65952,
            39.87262,
            0.0
        ],
        [
            116.64939,
            39.69314,
            0.0
        ],
        [
            116.61052,
            39.753,
            0.0
        ],
        [
            116.72373,
            39.6593,
            0.0
        ],
        [
            116.82355,
            39.79871,
            0.0
        ],
        [
            116.81587,
            39.75738,
            0.0
        ],
        [
            116.7238889,
            39.91611111,
            0.0
        ],
        [
            116.7625,
            39.93166667,
            0.0
        ],
        [
            116.89988,
            39.77994,
            0.0
        ],
        [
            116.87114,
            39.72526,
            0.0
        ],
        [
            116.7552778,
            39.61638889,
            0.0
        ],
        [
            116.65082,
            39.90986,
            0.0
        ],
        [
            116.72238,
            39.74993,
            0.0
        ],
        [
            116.69791,
            39.71779,
            0.0
        ],
        [
            116.64626,
            39.83136,
            0.0
        ],
        [
            116.87599,
            39.706,
            0.0
        ],
        [
            116.72585,
            39.94193,
            0.0
        ],
        [
            116.54524,
            39.76651,
            0.0
        ],
        [
            116.69711,
            39.73671,
            0.0
        ],
        [
            116.63132,
            39.84594,
            0.0
        ],
        [
            116.78411,
            39.79273,
            0.0
        ],
        [
            116.83473,
            39.85789,
            0.0
        ],
        [
            116.76215,
            39.71537,
            0.0
        ],
        [
            116.65398,
            39.94146,
            0.0
        ],
        [
            116.68243,
            39.98465,
            0.0
        ],
        [
            116.63722,
            39.82083,
            0.0
        ],
        [
            116.60944,
            39.8375,
            0.0
        ],
        [
            116.751114,
            39.92361,
            0.0
        ],
        [
            116.555275,
            39.747223,
            0.0
        ],
        [
            116.6877778,
            39.80666667,
            0.0
        ],
        [
            116.86806,
            39.785556,
            0.0
        ],
        [
            116.68611,
            39.907223,
            0.0
        ],
        [
            116.632222,
            39.73861,
            0.0
        ],
        [
            116.785835,
            39.704445,
            0.0
        ],
        [
            116.67889,
            39.957222,
            0.0
        ],
        [
            116.6980556,
            39.68694444,
            0.0
        ],
        [
            116.7236111,
            39.89694444,
            0.0
        ],
        [
            116.83139,
            39.835,
            0.0
        ],
        [
            116.72361,
            39.758057,
            0.0
        ],
        [
            116.69056,
            40.014444,
            0.0
        ],
        [
            116.735,
            39.97333,
            0.0
        ],
        [
            116.7875,
            39.842777,
            0.0
        ],
        [
            116.8636111,
            39.83805556,
            0.0
        ],
        [
            116.87222,
            39.67889,
            0.0
        ],
        [
            116.6280556,
            39.86305556,
            0.0
        ],
        [
            116.757774,
            39.720554,
            0.0
        ],
        [
            116.80222,
            39.86139,
            0.0
        ],
        [
            116.76889,
            39.771667,
            0.0
        ],
        [
            116.5675,
            39.816387,
            0.0
        ],
        [
            116.80222,
            39.796944,
            0.0
        ],
        [
            116.704445,
            39.85389,
            0.0
        ],
        [
            116.712776,
            39.644722,
            0.0
        ],
        [
            116.668335,
            39.954445,
            0.0
        ],
        [
            116.67028,
            39.90111,
            0.0
        ],
        [
            116.6738889,
            39.87277778,
            0.0
        ],
        [
            116.7063889,
            39.86305556,
            0.0
        ],
        [
            116.75,
            39.98944444,
            0.0
        ],
        [
            116.73722,
            39.834167,
            0.0
        ],
        [
            116.67944,
            39.73,
            0.0
        ],
        [
            116.7327778,
            39.77138889,
            0.0
        ],
        [
            116.90861,
            39.826668,
            0.0
        ],
        [
            116.7033333,
            39.78638889,
            0.0
        ],
        [
            116.7288889,
            39.895,
            0.0
        ],
        [
            116.6330556,
            39.90138889,
            0.0
        ],
        [
            116.6530556,
            39.98055556,
            0.0
        ],
        [
            116.566666,
            39.718056,
            0.0
        ],
        [
            116.67833,
            39.826942,
            0.0
        ],
        [
            116.6563889,
            39.91055556,
            0.0
        ],
        [
            116.705,
            39.90166667,
            0.0
        ],
        [
            116.89,
            39.72944444,
            0.0
        ],
        [
            116.833885,
            39.823334,
            0.0
        ],
        [
            116.6191667,
            39.91916667,
            0.0
        ],
        [
            116.6736111,
            39.7725,
            0.0
        ],
        [
            116.6475,
            39.9625,
            0.0
        ],
        [
            116.650276,
            39.699722,
            0.0
        ],
        [
            116.571945,
            39.802223,
            0.0
        ],
        [
            116.85891,
            39.69538,
            0.0
        ]
    ]
}