1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
| {
| "data": {
| "items": [
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.01,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59314747101287, 40.56982516463038, 512], [116.59320522718671, 40.569808915593455, 512], [116.59318240993285, 40.56976991788879, 512], [116.59312251464146, 40.56978779183958, 512], [116.59314747101287, 40.56982516463038, 512]]]}",
| "households": 1,
| "id": "1878781575968669697",
| "maxDepth": 0.11,
| "maxRaininess": 0,
| "maxVelocity": 0.01,
| "population": 3,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 24.96,
| "zoneId": 1
| },
| {
| "averageCumulativeDepth": 0.17,
| "averageDepth": 0.17,
| "averageRaininess": 0,
| "averageVelocity": 1.26,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.5919079168005, 40.5702188962632, 509], [116.59193709143015, 40.57015068539761, 509], [116.59189101122927, 40.57013816965565, 509], [116.59185950218162, 40.57020733802712, 509], [116.5919079168005, 40.5702188962632, 509]]]}",
| "households": 1,
| "id": "1878781575968669698",
| "maxDepth": 0.17,
| "maxRaininess": 0,
| "maxVelocity": 1.26,
| "population": 3,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 33.95,
| "zoneId": 2
| },
| {
| "averageCumulativeDepth": 0.12,
| "averageDepth": 0.12,
| "averageRaininess": 0,
| "averageVelocity": 0.51,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59178717549878, 40.57031927852427, 509], [116.59184136647671, 40.570203008409536, 509], [116.5917257037035, 40.57017272175695, 509], [116.59167133722912, 40.57028856442843, 509], [116.59178717549878, 40.57031927852427, 509]]]}",
| "households": 1,
| "id": "1878781575968669699",
| "maxDepth": 0.17,
| "maxRaininess": 0,
| "maxVelocity": 1.26,
| "population": 2,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 141.89,
| "zoneId": 3
| },
| {
| "averageCumulativeDepth": 0.17,
| "averageDepth": 0.15,
| "averageRaininess": 0,
| "averageVelocity": 0.8,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59143421318029, 40.570914726390974, 508], [116.59112118897875, 40.570784194474996, 508], [116.59104346770782, 40.57090497712809, 508], [116.59136290926193, 40.571034425559056, 508], [116.59143421318029, 40.570914726390974, 508]]]}",
| "households": 1,
| "id": "1878781575972864002",
| "maxDepth": 0.15,
| "maxRaininess": 0,
| "maxVelocity": 0.8,
| "population": 2,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 448.64,
| "zoneId": 4
| },
| {
| "averageCumulativeDepth": 0.13,
| "averageDepth": 0.19,
| "averageRaininess": 0,
| "averageVelocity": 0.0,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.58940572762052, 40.577865359520295, 480], [116.58920785924727, 40.57777103611378, 480], [116.58918468547381, 40.577797663309006, 480], [116.58922449682822, 40.57781481302236, 480], [116.58915497550787, 40.57790552590664, 480], [116.58931065572943, 40.577982248150555, 480], [116.58940572762052, 40.577865359520295, 480]]]}",
| "households": 1,
| "id": "1878781575972864003",
| "maxDepth": 0.19,
| "maxRaininess": 0,
| "maxVelocity": 0.0,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 253.85,
| "zoneId": 5
| },
| {
| "averageCumulativeDepth": 0.17,
| "averageDepth": 0.16,
| "averageRaininess": 0,
| "averageVelocity": 0.41,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.58941048121508, 40.57766858900968, 482], [116.5895293210789, 40.577541319701474, 482], [116.58947881413673, 40.577511984542866, 482], [116.58950198791017, 40.57749709130359, 482], [116.58938493064437, 40.577438420934804, 482], [116.58936948146206, 40.57745286287653, 482], [116.58934868448584, 40.577442031420546, 482], [116.5892102360445, 40.5775453814916, 482], [116.58921439543975, 40.5775625312696, 482], [116.58941048121508, 40.57766858900968, 482]]]}",
| "households": 1,
| "id": "1878781575972864004",
| "maxDepth": 0.2,
| "maxRaininess": 0,
| "maxVelocity": 0.83,
| "population": 2,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 382.63,
| "zoneId": 6
| },
| {
| "averageCumulativeDepth": 0.1,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.15,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59347472945407, 40.56859309579969, 524], [116.59364526465872, 40.56844730300445, 524], [116.59342897610652, 40.56830286400864, 524], [116.59350265682212, 40.568240123222736, 524], [116.59343967169428, 40.5681985969148, 524], [116.59319337607656, 40.568406792411295, 524], [116.59347472945407, 40.56859309579969, 524]]]}",
| "households": 1,
| "id": "1878781575972864005",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.15,
| "population": 3,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 751.19,
| "zoneId": 7
| },
| {
| "averageCumulativeDepth": 0.12,
| "averageDepth": 0.14,
| "averageRaininess": 0,
| "averageVelocity": 0.0,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59198112215665, 40.57004774054997, 512], [116.5917888533577, 40.5699937764488, 512], [116.59174131597591, 40.57009751124113, 512], [116.59193709143015, 40.57015068539761, 512], [116.59198112215665, 40.57004774054997, 512]]]}",
| "households": 1,
| "id": "1878781575972864006",
| "maxDepth": 0.14,
| "maxRaininess": 0,
| "maxVelocity": 0.0,
| "population": 4,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 211.61,
| "zoneId": 8
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.21,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.5969578979795, 40.5639766545402, 555], [116.5968737593558, 40.56395986240129, 555], [116.59686377680724, 40.56398369640367, 555], [116.59683454220065, 40.56397719622207, 555], [116.59682099445614, 40.564005905352765, 555], [116.59693080249046, 40.564035697833944, 555], [116.5969578979795, 40.5639766545402, 555]]]}",
| "households": 1,
| "id": "1878781575972864007",
| "maxDepth": 0.11,
| "maxRaininess": 0,
| "maxVelocity": 0.21,
| "population": 4,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 57.27,
| "zoneId": 9
| },
| {
| "averageCumulativeDepth": 0.14,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.21,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59693294160806, 40.56404598977886, 553], [116.59678819465366, 40.56401132216851, 553], [116.59676466436058, 40.56406603198294, 553], [116.59690941131502, 40.5641028662882, 553], [116.59693294160806, 40.56404598977886, 553]]]}",
| "households": 1,
| "id": "1878781575977058306",
| "maxDepth": 0.11,
| "maxRaininess": 0,
| "maxVelocity": 0.21,
| "population": 2,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 83.86,
| "zoneId": 10
| },
| {
| "averageCumulativeDepth": 0.15,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.79,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59068835042652, 40.57180789126557, 501], [116.59074967179626, 40.571847971018876, 501], [116.59084521904687, 40.571764020156756, 501], [116.59078461071627, 40.571726648448795, 501], [116.59068835042652, 40.57180789126557, 501]]]}",
| "households": 1,
| "id": "1878781575977058307",
| "maxDepth": 0.11,
| "maxRaininess": 0,
| "maxVelocity": 0.8,
| "population": 4,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 82.27,
| "zoneId": 11
| },
| {
| "averageCumulativeDepth": 0.17,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.34,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.58903589796428, 40.57687452460929, 488], [116.58891111610725, 40.577086281052175, 488], [116.58911718443112, 40.577151811682604, 488], [116.58924125324901, 40.57694601279281, 488], [116.58903589796428, 40.57687452460929, 488]]]}",
| "households": 1,
| "id": "1878781575977058308",
| "maxDepth": 0.14,
| "maxRaininess": 0,
| "maxVelocity": 0.44,
| "population": 2,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 483.97,
| "zoneId": 12
| },
| {
| "averageCumulativeDepth": 0.12,
| "averageDepth": 0.17,
| "averageRaininess": 0,
| "averageVelocity": 1.49,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.5912831677133, 40.571173863686425, 506], [116.59098250285767, 40.57097210859809, 506], [116.59084643121346, 40.57110074446295, 506], [116.59114353087321, 40.571295277529195, 506], [116.5912831677133, 40.571173863686425, 506]]]}",
| "households": 1,
| "id": "1878781575977058309",
| "maxDepth": 0.32,
| "maxRaininess": 0,
| "maxVelocity": 2.37,
| "population": 2,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 608.24,
| "zoneId": 13
| },
| {
| "averageCumulativeDepth": 0.17,
| "averageDepth": 0.15,
| "averageRaininess": 0,
| "averageVelocity": 0.34,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59109554333622, 40.57144034195807, 504], [116.59119679490026, 40.571355487881036, 504], [116.59107034928509, 40.57127243910572, 504], [116.59097575275341, 40.5713598208578, 504], [116.59109554333622, 40.57144034195807, 504]]]}",
| "households": 1,
| "id": "1878781575977058310",
| "maxDepth": 0.15,
| "maxRaininess": 0,
| "maxVelocity": 0.34,
| "population": 3,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 175.01,
| "zoneId": 14
| },
| {
| "averageCumulativeDepth": 0.19,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.45,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.58174801703841, 40.566393104792866, 584], [116.58164605243526, 40.566572394765814, 584], [116.58181005144729, 40.56663901901402, 584], [116.58191700732473, 40.56645810423432, 584], [116.58174801703841, 40.566393104792866, 584]]]}",
| "households": 1,
| "id": "1878781575977058311",
| "maxDepth": 0.11,
| "maxRaininess": 0,
| "maxVelocity": 0.45,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 346.64,
| "zoneId": 15
| },
| {
| "averageCumulativeDepth": 0.1,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.66,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.5907689713902, 40.57111717372753, 507], [116.59075613668496, 40.571109952073286, 507], [116.59069053708006, 40.571168808532825, 507], [116.59083504635457, 40.571265939632, 507], [116.59093582255916, 40.57118252966318, 507], [116.59080082047376, 40.57109262009986, 507], [116.5907689713902, 40.57111717372753, 507]]]}",
| "households": 1,
| "id": "1878781575977058312",
| "maxDepth": 0.11,
| "maxRaininess": 0,
| "maxVelocity": 0.8,
| "population": 1,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 202.13,
| "zoneId": 16
| },
| {
| "averageCumulativeDepth": 0.14,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.68,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59059372220428, 40.571274334785436, 507], [116.59072622865254, 40.57136009166884, 507], [116.59082724253682, 40.571275237490035, 507], [116.59069057669338, 40.571179099380885, 507], [116.59059372220428, 40.571274334785436, 507]]]}",
| "households": 1,
| "id": "1878781575981252609",
| "maxDepth": 0.11,
| "maxRaininess": 0,
| "maxVelocity": 0.8,
| "population": 3,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 198.57,
| "zoneId": 17
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.34,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.5978402507443, 40.55744631870803, 608], [116.59808054494938, 40.557535704870325, 608], [116.59816610965146, 40.55740243818472, 608], [116.59792367632883, 40.55731792746616, 608], [116.5978402507443, 40.55744631870803, 608]]]}",
| "households": 1,
| "id": "1878781575981252610",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.34,
| "population": 4,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 366.09,
| "zoneId": 18
| },
| {
| "averageCumulativeDepth": 0.1,
| "averageDepth": 0.34,
| "averageRaininess": 0,
| "averageVelocity": 0.12,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59193709132363, 40.57015068508043, 509], [116.59198112247934, 40.57004774012955, 512], [116.59178885325443, 40.56999377669324, 512], [116.59174131561467, 40.57009751154955, 512], [116.59170887058032, 40.570168313411116, 509], [116.59172570378968, 40.570172721549035, 509], [116.59167133745302, 40.57028856414312, 509], [116.59178717526197, 40.57031927896761, 509], [116.59184136688367, 40.570203008852175, 509], [116.59185950196644, 40.57020733782121, 509], [116.5919079168278, 40.57021889602599, 509], [116.59193709132363, 40.57015068508043, 509]]]}",
| "households": 4,
| "id": "1878781575981252611",
| "maxDepth": 0.48,
| "maxRaininess": 0,
| "maxVelocity": 0.21,
| "population": 12,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 2,
| "zoneArea": 498.51653650560263,
| "zoneId": 19
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.41,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.5971564877604, 40.558477406419854, 596], [116.59703586529838, 40.558459800311645, 596], [116.59702546681025, 40.558507652800046, 596], [116.59705012608208, 40.55851284434156, 596], [116.59705547387591, 40.55849794687355, 596], [116.59714787187023, 40.55850990999206, 596], [116.5971564877604, 40.558477406419854, 596]]]}",
| "households": 1,
| "id": "1878781575981252612",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.41,
| "population": 2,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 42.76,
| "zoneId": 20
| },
| {
| "averageCumulativeDepth": 0.16,
| "averageDepth": 0.13,
| "averageRaininess": 0,
| "averageVelocity": 0.32,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59824028454267, 40.56253654562079, 559], [116.59825433735669, 40.562539073523716, 559], [116.59847561806605, 40.56258088230892, 559], [116.59853904796093, 40.56240599736309, 559], [116.59828449297208, 40.56236374517536, 559], [116.59824028454267, 40.56253654562079, 559]]]}",
| "households": 1,
| "id": "1878781575981252613",
| "maxDepth": 0.14,
| "maxRaininess": 0,
| "maxVelocity": 0.34,
| "population": 4,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 422.25,
| "zoneId": 21
| },
| {
| "averageCumulativeDepth": 0.18,
| "averageDepth": 0.37,
| "averageRaininess": 0,
| "averageVelocity": 0.16,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59198602921707, 40.56995452487784, 508], [116.59195453665315, 40.56994594901432, 508], [116.59192779768381, 40.57000011234441, 508], [116.59199137701097, 40.57001816677803, 508], [116.59204842014557, 40.569892237002016, 508], [116.59201989857829, 40.56988501521558, 508], [116.59198602921707, 40.56995452487784, 508]]]}",
| "households": 1,
| "id": "1878781575981252614",
| "maxDepth": 0.69,
| "maxRaininess": 0,
| "maxVelocity": 0.4,
| "population": 4,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 2,
| "zoneArea": 58.38,
| "zoneId": 22
| },
| {
| "averageCumulativeDepth": 0.19,
| "averageDepth": 0.19,
| "averageRaininess": 0,
| "averageVelocity": 0.33,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.5899923053437, 40.57118069416126, 504], [116.59018339984489, 40.57102001232218, 504], [116.59005029919729, 40.570927936038224, 504], [116.58985112358546, 40.57108572943559, 504], [116.5899923053437, 40.57118069416126, 504]]]}",
| "households": 1,
| "id": "1878781575985446913",
| "maxDepth": 0.19,
| "maxRaininess": 0,
| "maxVelocity": 0.33,
| "population": 3,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 376.96,
| "zoneId": 23
| },
| {
| "averageCumulativeDepth": 0.1,
| "averageDepth": 0.25,
| "averageRaininess": 0,
| "averageVelocity": 0.0,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59095841401715, 40.5732890170328, 497], [116.59118373439905, 40.57334371926303, 497], [116.59125076008232, 40.573167697075526, 497], [116.59102472666117, 40.57311678595647, 497], [116.59095841401715, 40.5732890170328, 497]]]}",
| "households": 1,
| "id": "1878781575985446914",
| "maxDepth": 0.25,
| "maxRaininess": 0,
| "maxVelocity": 0.0,
| "population": 3,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 402.61,
| "zoneId": 24
| },
| {
| "averageCumulativeDepth": 0.13,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.04,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59067483239194, 40.574061098916786, 498], [116.59058498945483, 40.57420029002636, 498], [116.59078392738702, 40.57427394746137, 498], [116.59088161375512, 40.5741282573093, 498], [116.59067483239194, 40.574061098916786, 498]]]}",
| "households": 1,
| "id": "1878781575985446915",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.04,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 333.78,
| "zoneId": 25
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.27,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.5972890714548, 40.55723233316814, 608], [116.5972534194956, 40.55732713697275, 608], [116.5972270370458, 40.557323344823146, 608], [116.59721705449721, 40.5573525985431, 608], [116.59742240978227, 40.55740785553487, 608], [116.59747374860355, 40.55727350512263, 608], [116.5972890714548, 40.55723233316814, 608]]]}",
| "households": 1,
| "id": "1878781575985446916",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.27,
| "population": 4,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 253.34,
| "zoneId": 26
| },
| {
| "averageCumulativeDepth": 0.12,
| "averageDepth": 0.12,
| "averageRaininess": 0,
| "averageVelocity": 0.31,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59693885829805, 40.5580904983342, 600], [116.59699661447198, 40.55795777448354, 600], [116.5967677288939, 40.557898184097645, 600], [116.59673136389547, 40.55797781851053, 600], [116.59676701585465, 40.55798648619599, 600], [116.59674491163992, 40.558043909583965, 600], [116.59693885829805, 40.5580904983342, 600]]]}",
| "households": 1,
| "id": "1878781575985446917",
| "maxDepth": 0.12,
| "maxRaininess": 0,
| "maxVelocity": 0.31,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 302.8,
| "zoneId": 27
| },
| {
| "averageCumulativeDepth": 0.15,
| "averageDepth": 0.17,
| "averageRaininess": 0,
| "averageVelocity": 0.0,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59666398169261, 40.558091220640144, 599], [116.59667004252566, 40.55805438302673, 599], [116.59653064336517, 40.55804138151129, 599], [116.59637591386215, 40.558016461932944, 599], [116.5963741312642, 40.55802404615339, 599], [116.59633740974624, 40.558183043720625, 599], [116.59655239106021, 40.55820931755824, 599], [116.59658412130395, 40.558083907292065, 599], [116.59666398169261, 40.558091220640144, 599]]]}",
| "households": 1,
| "id": "1878781575985446918",
| "maxDepth": 0.17,
| "maxRaininess": 0,
| "maxVelocity": 0.0,
| "population": 3,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 369.37,
| "zoneId": 28
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.01,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59008205089332, 40.5780523809915, 490], [116.59001787736689, 40.57810879429089, 490], [116.59012007964981, 40.57817558757586, 490], [116.59018484737553, 40.578119625638955, 490], [116.59008205089332, 40.5780523809915, 490]]]}",
| "households": 1,
| "id": "1878781575985446919",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.01,
| "population": 2,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 94.78,
| "zoneId": 29
| },
| {
| "averageCumulativeDepth": 0.17,
| "averageDepth": 0.15,
| "averageRaininess": 0,
| "averageVelocity": 0.19,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59599654730619, 40.55805214839146, 598], [116.59599001111367, 40.55813701933591, 598], [116.5963328641214, 40.558184420614445, 598], [116.59636673348265, 40.55804266811972, 598], [116.59613380734918, 40.558015130179854, 598], [116.59599654730619, 40.55805214839146, 598]]]}",
| "households": 1,
| "id": "1878781575989641218",
| "maxDepth": 0.15,
| "maxRaininess": 0,
| "maxVelocity": 0.4,
| "population": 2,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 441.88,
| "zoneId": 30
| },
| {
| "averageCumulativeDepth": 0.12,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.57,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59844291938515, 40.56084548208399, 572], [116.59858968661722, 40.56080349976497, 572], [116.59856710704308, 40.56075113468501, 572], [116.59841499201713, 40.560794019882835, 572], [116.59844291938515, 40.56084548208399, 572]]]}",
| "households": 1,
| "id": "1878781575989641219",
| "maxDepth": 0.12,
| "maxRaininess": 0,
| "maxVelocity": 0.58,
| "population": 1,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 83.04,
| "zoneId": 31
| },
| {
| "averageCumulativeDepth": 0.12,
| "averageDepth": 0.12,
| "averageRaininess": 0,
| "averageVelocity": 0.33,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.5991162333739, 40.5633384578368, 55], [116.59930732787525, 40.56334784707744, 55], [116.5993310958481, 40.563183896301716, 55], [116.59912764200082, 40.563171618033614, 55], [116.5991162333739, 40.5633384578368, 55]]]}",
| "households": 1,
| "id": "1878781575989641220",
| "maxDepth": 0.12,
| "maxRaininess": 0,
| "maxVelocity": 0.87,
| "population": 4,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 308.64,
| "zoneId": 32
| },
| {
| "averageCumulativeDepth": 0.16,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.56,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59367265724737, 40.56840938779824, 525], [116.59370830920646, 40.56838284714111, 525], [116.5936751528845, 40.56836091046757, 525], [116.59364128352331, 40.5683844720796, 525], [116.59367265724737, 40.56840938779824, 525]]]}",
| "households": 1,
| "id": "1878781575989641221",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.56,
| "population": 4,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 15.26,
| "zoneId": 33
| },
| {
| "averageCumulativeDepth": 0.1,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.0,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59439955399075, 40.56861203365358, 524], [116.59427453445393, 40.568725056672264, 524], [116.59441306608329, 40.56881164734142, 524], [116.59444302513756, 40.568828715584104, 524], [116.59457258483258, 40.56870519641124, 524], [116.59439955399075, 40.56861203365358, 524]]]}",
| "households": 1,
| "id": "1878781575989641222",
| "maxDepth": 0.12,
| "maxRaininess": 0,
| "maxVelocity": 0.0,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 308.8,
| "zoneId": 34
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.48,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59248537554456, 40.569296895003106, 516], [116.59251033191597, 40.56926620213219, 516], [116.59241228902822, 40.569237766077485, 516], [116.59226673009687, 40.56941018416852, 516], [116.59227809877599, 40.569418596301624, 516], [116.59242203389711, 40.569488002944205, 516], [116.59255679830274, 40.56932821977146, 516], [116.59248537554456, 40.569296895003106, 516]]]}",
| "households": 1,
| "id": "1878781575989641223",
| "maxDepth": 0.11,
| "maxRaininess": 0,
| "maxVelocity": 0.49,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 355.42,
| "zoneId": 35
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 1.02,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59115081575685, 40.5734128943515, 494], [116.59102009190654, 40.5735586763286, 494], [116.59119181550984, 40.57365074899256, 494], [116.59131956836355, 40.57349594047026, 494], [116.59115081575685, 40.5734128943515, 494]]]}",
| "households": 1,
| "id": "1878781575993835521",
| "maxDepth": 0.12,
| "maxRaininess": 0,
| "maxVelocity": 1.05,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 346.99,
| "zoneId": 36
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.02,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59090390613291, 40.57414536094946, 498], [116.59081643999312, 40.57428689881013, 498], [116.59116012487945, 40.5744071335433, 498], [116.59125329533273, 40.57426595700268, 498], [116.59090390613291, 40.57414536094946, 498]]]}",
| "households": 1,
| "id": "1878781575993835522",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.02,
| "population": 4,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 562.87,
| "zoneId": 37
| },
| {
| "averageCumulativeDepth": 0.16,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.23,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.58307285176286, 40.56674982456128, 570], [116.58314534407981, 40.56676517157552, 570], [116.58315722806614, 40.5667272554163, 570], [116.58308592414788, 40.56671190839335, 570], [116.58307285176286, 40.56674982456128, 570]]]}",
| "households": 1,
| "id": "1878781575993835523",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.23,
| "population": 3,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 27.44,
| "zoneId": 38
| },
| {
| "averageCumulativeDepth": 0.1,
| "averageDepth": 0.13,
| "averageRaininess": 0,
| "averageVelocity": 0.72,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59301146195516, 40.569120452318664, 518], [116.5929886447013, 40.569079016830436, 518], [116.59293088852748, 40.569095266044556, 518], [116.5929515666638, 40.56913670152272, 518], [116.59301146195516, 40.569120452318664, 518]]]}",
| "households": 1,
| "id": "1878781575993835524",
| "maxDepth": 0.15,
| "maxRaininess": 0,
| "maxVelocity": 0.84,
| "population": 4,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 26.24,
| "zoneId": 39
| },
| {
| "averageCumulativeDepth": 0.17,
| "averageDepth": 0.16,
| "averageRaininess": 0,
| "averageVelocity": 1.34,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59098648795444, 40.57153656996205, 504], [116.59108334244348, 40.571452618709245, 504], [116.59095677798847, 40.57136641059277, 504], [116.59086289449597, 40.57145397276255, 504], [116.59098648795444, 40.57153656996205, 504]]]}",
| "households": 1,
| "id": "1878781575993835525",
| "maxDepth": 0.17,
| "maxRaininess": 0,
| "maxVelocity": 1.54,
| "population": 2,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 176.56,
| "zoneId": 40
| },
| {
| "averageCumulativeDepth": 0.16,
| "averageDepth": 0.17,
| "averageRaininess": 0,
| "averageVelocity": 0.35,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59100999051813, 40.573553711622495, 497], [116.59113714917245, 40.573412443013616, 497], [116.59096186037326, 40.57330863521951, 497], [116.5908222235332, 40.57344448799578, 497], [116.59100999051813, 40.573553711622495, 497]]]}",
| "households": 1,
| "id": "1878781575993835526",
| "maxDepth": 0.18,
| "maxRaininess": 0,
| "maxVelocity": 0.74,
| "population": 4,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 370.12,
| "zoneId": 41
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.05,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59073325208837, 40.574428436371406, 497], [116.59074893895041, 40.574434935537944, 497], [116.59093432913812, 40.57450064929754, 497], [116.59094811456227, 40.574503898877374, 497], [116.59102654887243, 40.57438005366731, 497], [116.59081073567965, 40.57430242462864, 497], [116.59073325208837, 40.574428436371406, 497]]]}",
| "households": 1,
| "id": "1878781575993835527",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.05,
| "population": 2,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 311.49,
| "zoneId": 42
| },
| {
| "averageCumulativeDepth": 0.12,
| "averageDepth": 0.13,
| "averageRaininess": 0,
| "averageVelocity": 0.76,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59719566332166, 40.55724316789544, 605], [116.59712150724653, 40.55722474885795, 605], [116.59709940303178, 40.55726808776164, 605], [116.59717213302862, 40.55728867373106, 605], [116.59719566332166, 40.55724316789544, 605]]]}",
| "households": 1,
| "id": "1878781575998029825",
| "maxDepth": 0.3,
| "maxRaininess": 0,
| "maxVelocity": 0.76,
| "population": 1,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 34.87,
| "zoneId": 43
| },
| {
| "averageCumulativeDepth": 0.15,
| "averageDepth": 0.12,
| "averageRaininess": 0,
| "averageVelocity": 0.1,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59393632115281, 40.569027045508236, 520], [116.59346286313506, 40.569118041127325, 520], [116.59349899045365, 40.5692473124686, 520], [116.59397625134707, 40.56917798261829, 520], [116.59393632115281, 40.569027045508236, 520]]]}",
| "households": 1,
| "id": "1878781575998029826",
| "maxDepth": 0.13,
| "maxRaininess": 0,
| "maxVelocity": 0.22,
| "population": 2,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 654.95,
| "zoneId": 44
| },
| {
| "averageCumulativeDepth": 0.14,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.13,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.58898598522147, 40.57728449747323, 486], [116.58921059256413, 40.57736410882129, 486], [116.58929045295265, 40.57722275799522, 486], [116.58906869776676, 40.57714639593043, 486], [116.58898598522147, 40.57728449747323, 486]]]}",
| "households": 1,
| "id": "1878781575998029827",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.13,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 352.82,
| "zoneId": 45
| },
| {
| "averageCumulativeDepth": 0.17,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.05,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59768748903109, 40.56077047440787, 579], [116.59765659066645, 40.56068109256468, 579], [116.59745278029968, 40.56072307496042, 579], [116.59748664966085, 40.56081335959329, 579], [116.59768748903109, 40.56077047440787, 579]]]}",
| "households": 1,
| "id": "1878781575998029828",
| "maxDepth": 0.11,
| "maxRaininess": 0,
| "maxVelocity": 0.05,
| "population": 3,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 183.86,
| "zoneId": 46
| },
| {
| "averageCumulativeDepth": 0.12,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.46,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59779919850325, 40.56106254454824, 577], [116.5977379959733, 40.56095149484592, 577], [116.59758409834933, 40.561001602661214, 577], [116.59765480806847, 40.56111310370123, 577], [116.59779919850325, 40.56106254454824, 577]]]}",
| "households": 1,
| "id": "1878781575998029829",
| "maxDepth": 0.11,
| "maxRaininess": 0,
| "maxVelocity": 0.46,
| "population": 1,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 187.3,
| "zoneId": 47
| },
| {
| "averageCumulativeDepth": 0.15,
| "averageDepth": 0.12,
| "averageRaininess": 0,
| "averageVelocity": 0.24,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59746610180295, 40.563647164469465, 553], [116.59741286154384, 40.56380244717911, 553], [116.59785494583797, 40.563894172145304, 553], [116.59789582675121, 40.563749723322736, 553], [116.59769807721746, 40.56371505555893, 553], [116.59770663368766, 40.563693388197414, 553], [116.59746610180295, 40.563647164469465, 553]]]}",
| "households": 1,
| "id": "1878781575998029830",
| "maxDepth": 0.12,
| "maxRaininess": 0,
| "maxVelocity": 0.24,
| "population": 3,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 658.41,
| "zoneId": 48
| },
| {
| "averageCumulativeDepth": 0.16,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.22,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59775987394676, 40.564019842367365, 553], [116.59780075485997, 40.56389850560519, 553], [116.59739574860339, 40.5638147253315, 553], [116.59734821265783, 40.56393750673129, 553], [116.59775987394676, 40.564019842367365, 553]]]}",
| "households": 1,
| "id": "1878781576002224130",
| "maxDepth": 0.12,
| "maxRaininess": 0,
| "maxVelocity": 0.24,
| "population": 4,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 503.26,
| "zoneId": 49
| },
| {
| "averageCumulativeDepth": 0.14,
| "averageDepth": 0.12,
| "averageRaininess": 0,
| "averageVelocity": 0.85,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59685735945455, 40.56423720299458, 552], [116.59680887279, 40.564339038705235, 552], [116.59702064542772, 40.56440566517677, 552], [116.59709480150282, 40.5642702454496, 552], [116.59689372445295, 40.56421336908247, 552], [116.59687875063008, 40.564243161471275, 552], [116.59685735945455, 40.56423720299458, 552]]]}",
| "households": 1,
| "id": "1878781576002224131",
| "maxDepth": 0.19,
| "maxRaininess": 0,
| "maxVelocity": 0.91,
| "population": 2,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 308.16,
| "zoneId": 50
| },
| {
| "averageCumulativeDepth": 0.13,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.09,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59098256227753, 40.57480427371037, 493], [116.59118934364066, 40.57487305613788, 493], [116.59125066501048, 40.57478748428818, 493], [116.59104031845132, 40.57471545220324, 493], [116.59098256227753, 40.57480427371037, 493]]]}",
| "households": 1,
| "id": "1878781576002224132",
| "maxDepth": 0.11,
| "maxRaininess": 0,
| "maxVelocity": 0.1,
| "population": 2,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 210.42,
| "zoneId": 51
| },
| {
| "averageCumulativeDepth": 0.1,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.13,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59094606404491, 40.57468814842067, 496], [116.59089377450485, 40.574668741258854, 496], [116.59084683275861, 40.57473237867547, 496], [116.59089971649804, 40.57475133449002, 496], [116.59094606404491, 40.57468814842067, 496]]]}",
| "households": 1,
| "id": "1878781576002224133",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.13,
| "population": 2,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 39.77,
| "zoneId": 52
| },
| {
| "averageCumulativeDepth": 0.13,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.12,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59111004774141, 40.5748902968665, 493], [116.59110434342794, 40.57489571280128, 493], [116.5910918652422, 40.57489083846002, 493], [116.5911057695063, 40.57486050921739, 493], [116.5909399878962, 40.574802287864955, 493], [116.59084559141161, 40.57495708433826, 493], [116.59084559141161, 40.57496520823212, 493], [116.5908666260675, 40.574970624160876, 493], [116.59106726539044, 40.57504248446681, 493], [116.59114926489646, 40.57492008450233, 493], [116.59114676925934, 40.57490194112573, 493], [116.59111004774141, 40.5748902968665, 493]]]}",
| "households": 1,
| "id": "1878781576002224134",
| "maxDepth": 0.12,
| "maxRaininess": 0,
| "maxVelocity": 0.13,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 401.16,
| "zoneId": 53
| },
| {
| "averageCumulativeDepth": 0.19,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 1.22,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.58932610491175, 40.577814813022364, 480], [116.58934333669204, 40.577800822467076, 480], [116.58931422092543, 40.577785026675336, 480], [116.58941048121508, 40.57766858900968, 480], [116.58921439543975, 40.5775625312696, 480], [116.58909377297802, 40.577685738756124, 480], [116.58932610491175, 40.577814813022364, 480]]]}",
| "households": 1,
| "id": "1878781576002224135",
| "maxDepth": 0.12,
| "maxRaininess": 0,
| "maxVelocity": 1.26,
| "population": 2,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 367.85,
| "zoneId": 54
| },
| {
| "averageCumulativeDepth": 0.13,
| "averageDepth": 0.13,
| "averageRaininess": 0,
| "averageVelocity": 1.54,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59824724261736, 40.557264720721065, 612], [116.59817534449968, 40.55739157714888, 612], [116.5983779664679, 40.55746335701394, 612], [116.59846377923547, 40.55730627237114, 612], [116.59834172030925, 40.55726878374206, 612], [116.59833043052221, 40.557290001736554, 612], [116.59824724261736, 40.557264720721065, 612]]]}",
| "households": 1,
| "id": "1878781576002224136",
| "maxDepth": 0.16,
| "maxRaininess": 0,
| "maxVelocity": 2.06,
| "population": 2,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 326.55,
| "zoneId": 55
| },
| {
| "averageCumulativeDepth": 0.12,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.89,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59710458713054, 40.55758811648261, 605], [116.59711480735886, 40.55756121037855, 605], [116.59707749164158, 40.55755362610566, 605], [116.59706632069441, 40.55757962932346, 605], [116.59710458713054, 40.55758811648261, 605]]]}",
| "households": 1,
| "id": "1878781576006418434",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.89,
| "population": 1,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 10.21,
| "zoneId": 56
| },
| {
| "averageCumulativeDepth": 0.19,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.0,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59697569865591, 40.55794242544984, 601], [116.59705128080944, 40.55778351759982, 601], [116.59686636598099, 40.55774017902978, 601], [116.59679268526527, 40.557897281212604, 601], [116.59697569865591, 40.55794242544984, 601]]]}",
| "households": 1,
| "id": "1878781576006418435",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.0,
| "population": 4,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 304.44,
| "zoneId": 57
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.16,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59762297042343, 40.564157068202434, 551], [116.59766575277447, 40.56401550891536, 551], [116.59731778965262, 40.56395267382976, 551], [116.59726930298808, 40.56409351100853, 551], [116.59762297042343, 40.564157068202434, 551]]]}",
| "households": 1,
| "id": "1878781576006418436",
| "maxDepth": 0.11,
| "maxRaininess": 0,
| "maxVelocity": 0.18,
| "population": 4,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 492.96,
| "zoneId": 58
| },
| {
| "averageCumulativeDepth": 0.17,
| "averageDepth": 0.2,
| "averageRaininess": 0,
| "averageVelocity": 0.0,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59687888333461, 40.56537845225677, 545], [116.59678761431904, 40.565526869805886, 545], [116.59694876117466, 40.565585370063296, 545], [116.59703860411187, 40.56543316095369, 545], [116.59687888333461, 40.56537845225677, 545]]]}",
| "households": 1,
| "id": "1878781576006418437",
| "maxDepth": 0.2,
| "maxRaininess": 0,
| "maxVelocity": 0.0,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 274.99,
| "zoneId": 59
| },
| {
| "averageCumulativeDepth": 0.12,
| "averageDepth": 0.13,
| "averageRaininess": 0,
| "averageVelocity": 1.72,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59741884458637, 40.557217164546955, 608], [116.59745449654558, 40.557140237915114, 608], [116.59732115821811, 40.557115859738694, 608], [116.5972890714548, 40.557191702925046, 608], [116.59741884458637, 40.557217164546955, 608]]]}",
| "households": 1,
| "id": "1878781576006418438",
| "maxDepth": 0.23,
| "maxRaininess": 0,
| "maxVelocity": 1.73,
| "population": 2,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 102.45,
| "zoneId": 60
| },
| {
| "averageCumulativeDepth": 0.16,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.44,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59798587280766, 40.561309620772505, 573], [116.59789653598344, 40.56118928355248, 573], [116.59786516225928, 40.56115028082511, 573], [116.59771185883493, 40.561214743653935, 573], [116.59782879726095, 40.561374004494255, 573], [116.59798587280766, 40.561309620772505, 573]]]}",
| "households": 1,
| "id": "1878781576006418439",
| "maxDepth": 0.11,
| "maxRaininess": 0,
| "maxVelocity": 0.45,
| "population": 4,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 305.87,
| "zoneId": 61
| },
| {
| "averageCumulativeDepth": 0.14,
| "averageDepth": 0.13,
| "averageRaininess": 0,
| "averageVelocity": 0.16,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59809576487518, 40.56403890397564, 547], [116.59806248971331, 40.564107516908656, 547], [116.59827164787363, 40.56416123356372, 547], [116.59830670563348, 40.564105259905396, 547], [116.59824550310361, 40.56409307208649, 547], [116.5982526334954, 40.56407817586039, 547], [116.59809576487518, 40.56403890397564, 547]]]}",
| "households": 1,
| "id": "1878781576010612738",
| "maxDepth": 0.13,
| "maxRaininess": 0,
| "maxVelocity": 0.18,
| "population": 3,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 147.64,
| "zoneId": 62
| },
| {
| "averageCumulativeDepth": 0.13,
| "averageDepth": 0.15,
| "averageRaininess": 0,
| "averageVelocity": 0.0,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59084803951302, 40.57145532681584, 505], [116.5908117933545, 40.571429599798954, 505], [116.59075356182119, 40.57147789436634, 505], [116.59078861958105, 40.571504072715385, 505], [116.59084803951302, 40.57145532681584, 505]]]}",
| "households": 1,
| "id": "1878781576010612739",
| "maxDepth": 0.15,
| "maxRaininess": 0,
| "maxVelocity": 0.0,
| "population": 1,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 30.62,
| "zoneId": 63
| },
| {
| "averageCumulativeDepth": 0.1,
| "averageDepth": 0.28,
| "averageRaininess": 0,
| "averageVelocity": 2.83,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59844826717901, 40.56076242026604, 572], [116.59841855721301, 40.560704638071066, 572], [116.59838112265587, 40.560713215118795, 572], [116.59840964422322, 40.56077280299892, 572], [116.59844826717901, 40.56076242026604, 572]]]}",
| "households": 1,
| "id": "1878781576010612740",
| "maxDepth": 0.31,
| "maxRaininess": 0,
| "maxVelocity": 2.85,
| "population": 1,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 23.58,
| "zoneId": 64
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.13,
| "averageRaininess": 0,
| "averageVelocity": 0.47,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59725309620171, 40.56395336221733, 554], [116.59710834924739, 40.563912736053446, 554], [116.59704845395586, 40.564022155798675, 554], [116.59719819218458, 40.56406874038839, 554], [116.59725309620171, 40.56395336221733, 554]]]}",
| "households": 1,
| "id": "1878781576010612741",
| "maxDepth": 0.13,
| "maxRaininess": 0,
| "maxVelocity": 0.48,
| "population": 4,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 179.18,
| "zoneId": 65
| },
| {
| "averageCumulativeDepth": 0.29,
| "averageDepth": 0.14,
| "averageRaininess": 0,
| "averageVelocity": 0.0,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59107034928509, 40.57127243910572, 504], [116.59095150942119, 40.57119227888569, 504], [116.59084930713823, 40.57128002182426, 504], [116.59097099915888, 40.571356210043845, 504], [116.59107034928509, 40.57127243910572, 504]]]}",
| "households": 1,
| "id": "1878781576010612742",
| "maxDepth": 0.14,
| "maxRaininess": 0,
| "maxVelocity": 0.0,
| "population": 1,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 171.06,
| "zoneId": 66
| },
| {
| "averageCumulativeDepth": 0.1,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.19,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59108345732197, 40.574679977726944, 493], [116.59126456927454, 40.57474496911963, 493], [116.59133480363411, 40.574630963343196, 493], [116.59116510030846, 40.574575178973255, 493], [116.59114370913295, 40.5746125490903, 493], [116.59112944834929, 40.5746079455263, 493], [116.59108345732197, 40.574679977726944, 493]]]}",
| "households": 1,
| "id": "1878781576010612743",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.19,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 225.58,
| "zoneId": 67
| },
| {
| "averageCumulativeDepth": 0.13,
| "averageDepth": 0.19,
| "averageRaininess": 0,
| "averageVelocity": 0.06,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59029501192931, 40.57629569217501, 489], [116.59030429827281, 40.576274579007205, 489], [116.59019148705319, 40.57624435110363, 489], [116.59011163641208, 40.57641502466325, 489], [116.59026303839863, 40.57645817061487, 489], [116.59033020872997, 40.57630541340879, 489], [116.59029501192931, 40.57629569217501, 489]]]}",
| "households": 1,
| "id": "1878781576010612744",
| "maxDepth": 0.19,
| "maxRaininess": 0,
| "maxVelocity": 0.91,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 265.34,
| "zoneId": 68
| },
| {
| "averageCumulativeDepth": 0.17,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.86,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59725649150593, 40.55845672149946, 600], [116.59726718709372, 40.55843234380241, 600], [116.5972440133202, 40.55842602365727, 600], [116.59723450613106, 40.558450852795445, 600], [116.59725649150593, 40.55845672149946, 600]]]}",
| "households": 1,
| "id": "1878781576014807041",
| "maxDepth": 0.11,
| "maxRaininess": 0,
| "maxVelocity": 0.86,
| "population": 2,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 5.8,
| "zoneId": 69
| },
| {
| "averageCumulativeDepth": 0.15,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.86,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59733433161686, 40.55868289193216, 597], [116.5973907805523, 40.5585000596056, 597], [116.5972113323576, 40.55847026466066, 597], [116.59716260801333, 40.55865354850595, 597], [116.59733433161686, 40.55868289193216, 597]]]}",
| "households": 1,
| "id": "1878781576014807042",
| "maxDepth": 0.11,
| "maxRaininess": 0,
| "maxVelocity": 0.86,
| "population": 4,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 316.93,
| "zoneId": 70
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.02,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.5965799872119, 40.56425995353913, 556], [116.59656002211479, 40.56431141307562, 556], [116.59671689073525, 40.56435203899759, 556], [116.59677322083081, 40.564206327243205, 556], [116.59672116897039, 40.56419657700293, 556], [116.5966919343638, 40.56428270407597, 556], [116.5965799872119, 40.56425995353913, 556]]]}",
| "households": 1,
| "id": "1878781576014807043",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.02,
| "population": 4,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 133.48,
| "zoneId": 71
| },
| {
| "averageCumulativeDepth": 0.15,
| "averageDepth": 0.29,
| "averageRaininess": 0,
| "averageVelocity": 0.17,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.5942449670958, 40.56873685547002, 521], [116.59413128712067, 40.56884338649361, 521], [116.59413834892148, 40.56884758156362, 521], [116.59407782842861, 40.56890538710232, 521], [116.5942896508846, 40.56902862002838, 521], [116.59446030492914, 40.56886684973729, 521], [116.5942449670958, 40.56873685547002, 521]]]}",
| "households": 1,
| "id": "1878781576014807044",
| "maxDepth": 0.3,
| "maxRaininess": 0,
| "maxVelocity": 0.58,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 536.04,
| "zoneId": 72
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.36,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.58079245609379, 40.56617262344213, 599], [116.5806562656098, 40.566104102903516, 599], [116.58062025713109, 40.56615041521199, 599], [116.58075288241909, 40.56621649821659, 599], [116.58079245609379, 40.56617262344213, 599]]]}",
| "households": 1,
| "id": "1878781576014807045",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.36,
| "population": 1,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 80.92,
| "zoneId": 73
| },
| {
| "averageCumulativeDepth": 0.13,
| "averageDepth": 0.29,
| "averageRaininess": 0,
| "averageVelocity": 0.26,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59435429977054, 40.5690112875159, 521], [116.5943291057194, 40.56899756594033, 521], [116.5942972566359, 40.56903042549816, 521], [116.59432387676542, 40.56904378597316, 521], [116.59435429977054, 40.5690112875159, 521]]]}",
| "households": 1,
| "id": "1878781576014807046",
| "maxDepth": 0.3,
| "maxRaininess": 0,
| "maxVelocity": 0.58,
| "population": 3,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 11.93,
| "zoneId": 74
| },
| {
| "averageCumulativeDepth": 0.23,
| "averageDepth": 0.35,
| "averageRaininess": 0,
| "averageVelocity": 0.55,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.5908666260675, 40.574970624160876, 493], [116.59084559141158, 40.57496520823212, 493], [116.59084559141158, 40.57495708433826, 493], [116.59083026106912, 40.57495166840843, 493], [116.59073637757666, 40.575099342604226, 493], [116.59096768748766, 40.57518282892929, 493], [116.59104552759851, 40.575059616833386, 493], [116.59085627511529, 40.57498943548317, 493], [116.5908666260675, 40.574970624160876, 493]]]}",
| "households": 1,
| "id": "1878781576019001346",
| "maxDepth": 1.26,
| "maxRaininess": 0,
| "maxVelocity": 2.65,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 2,
| "zoneArea": 340.4,
| "zoneId": 75
| },
| {
| "averageCumulativeDepth": 0.14,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.13,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.58916638413483, 40.57737060770269, 484], [116.58915426246875, 40.57738035602359, 484], [116.58905301090472, 40.577331072831235, 484], [116.58904588051287, 40.57733865486318, 484], [116.5890023851227, 40.57731861663402, 484], [116.58891895953826, 40.57740851783144, 484], [116.58895318541904, 40.57742747288782, 484], [116.5891149798184, 40.57751735322026, 484], [116.58922485334782, 40.57740201895379, 484], [116.58916638413483, 40.57737060770269, 484]]]}",
| "households": 1,
| "id": "1878781576019001347",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.13,
| "population": 4,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 292.22,
| "zoneId": 76
| },
| {
| "averageCumulativeDepth": 0.15,
| "averageDepth": 0.29,
| "averageRaininess": 0,
| "averageVelocity": 0.09,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.5988662864008, 40.56102000185042, 569], [116.5988490546205, 40.560969442627076, 569], [116.598815670852, 40.56097238737278, 569], [116.59883280960499, 40.56102670167681, 569], [116.5988662864008, 40.56102000185042, 569]]]}",
| "households": 1,
| "id": "1878781576019001348",
| "maxDepth": 0.33,
| "maxRaininess": 0,
| "maxVelocity": 0.13,
| "population": 3,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 17.27,
| "zoneId": 77
| },
| {
| "averageCumulativeDepth": 0.14,
| "averageDepth": 0.22,
| "averageRaininess": 0,
| "averageVelocity": 0.02,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59852135369542, 40.56114910826532, 569], [116.59885291691612, 40.561090423562156, 569], [116.5988113229637, 40.560958608502816, 569], [116.59847975974299, 40.56102541890781, 569], [116.59852135369542, 40.56114910826532, 569]]]}",
| "households": 1,
| "id": "1878781576019001349",
| "maxDepth": 0.33,
| "maxRaininess": 0,
| "maxVelocity": 0.13,
| "population": 2,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 422.91,
| "zoneId": 78
| },
| {
| "averageCumulativeDepth": 0.24,
| "averageDepth": 0.15,
| "averageRaininess": 0,
| "averageVelocity": 0.05,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59127797441116, 40.57426412158536, 496], [116.59119656910438, 40.57441035303897, 496], [116.59139681427503, 40.574477150016406, 496], [116.59142652424104, 40.5744261496275, 496], [116.59139978527166, 40.57441892833034, 496], [116.59146039360223, 40.574328662050256, 496], [116.59127797441116, 40.57426412158536, 496]]]}",
| "households": 1,
| "id": "1878781576019001350",
| "maxDepth": 0.15,
| "maxRaininess": 0,
| "maxVelocity": 0.06,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 301.97,
| "zoneId": 79
| },
| {
| "averageCumulativeDepth": 0.24,
| "averageDepth": 0.31,
| "averageRaininess": 0,
| "averageVelocity": 0.98,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.58936948146206, 40.57745286287653, 482], [116.58934868448584, 40.577442031420546, 482], [116.5892102360445, 40.5775453814916, 482], [116.58921439543975, 40.5775625312696, 482], [116.58909377297802, 40.577685738756124, 480], [116.58932610491175, 40.577814813022364, 480], [116.58934333669204, 40.577800822467076, 480], [116.58931422092543, 40.577785026675336, 480], [116.58941048121508, 40.57766858900968, 480], [116.5895293210789, 40.577541319701474, 482], [116.58947881413673, 40.577511984542866, 482], [116.58950198791017, 40.57749709130359, 482], [116.58938493064437, 40.577438420934804, 482], [116.58936948146206, 40.57745286287653, 482]]]}",
| "households": 2,
| "id": "1878781576019001351",
| "maxDepth": 1.86,
| "maxRaininess": 0,
| "maxVelocity": 7.0,
| "population": 4,
| "property": 96.0,
| "raininess": 0.0,
| "room": 8,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 2,
| "zoneArea": 750.48,
| "zoneId": 80
| },
| {
| "averageCumulativeDepth": 0.15,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.0,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59908434042234, 40.56135287807809, 565], [116.59911963586184, 40.56134312742224, 565], [116.5990932534121, 40.56129627008386, 565], [116.59905795797252, 40.56130710415346, 565], [116.59908434042234, 40.56135287807809, 565]]]}",
| "households": 1,
| "id": "1878781576023195650",
| "maxDepth": 0.12,
| "maxRaininess": 0,
| "maxVelocity": 0.0,
| "population": 1,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 17.93,
| "zoneId": 81
| },
| {
| "averageCumulativeDepth": 0.19,
| "averageDepth": 0.12,
| "averageRaininess": 0,
| "averageVelocity": 0.13,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59908165889597, 40.561678088352984, 566], [116.59889983390406, 40.56170020778376, 566], [116.59890934109315, 40.561767468864986, 566], [116.5991945567668, 40.56173948104073, 566], [116.59915177441573, 40.56158464496289, 566], [116.59906620971365, 40.56159367331546, 566], [116.59908165889597, 40.561678088352984, 566]]]}",
| "households": 1,
| "id": "1878781576023195651",
| "maxDepth": 0.15,
| "maxRaininess": 0,
| "maxVelocity": 0.13,
| "population": 4,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 260.17,
| "zoneId": 82
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.0,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59157742313901, 40.57053524430995, 509], [116.59134806220163, 40.57047160290149, 509], [116.59128329447582, 40.57061242636242, 509], [116.5914972062309, 40.570666137796714, 509], [116.59152275680162, 40.570596177516684, 509], [116.59155008997028, 40.57060114244217, 509], [116.59157742313901, 40.57053524430995, 509]]]}",
| "households": 1,
| "id": "1878781576023195652",
| "maxDepth": 0.11,
| "maxRaininess": 0,
| "maxVelocity": 0.0,
| "population": 4,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 321.59,
| "zoneId": 83
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.0,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59117686016369, 40.57080740952425, 508], [116.59137788308477, 40.57087302120069, 508], [116.59146986513943, 40.57068291019876, 508], [116.59126023161954, 40.57062495602521, 508], [116.59117686016369, 40.57080740952425, 508]]]}",
| "households": 1,
| "id": "1878781576023195653",
| "maxDepth": 0.11,
| "maxRaininess": 0,
| "maxVelocity": 0.0,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 410.61,
| "zoneId": 84
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.0,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59073989523685, 40.57137543762587, 504], [116.59085516990484, 40.57144810519807, 504], [116.59095380699186, 40.57136144572403, 504], [116.5908385323239, 40.571285618592185, 504], [116.59073989523685, 40.57137543762587, 504]]]}",
| "households": 1,
| "id": "1878781576023195654",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.0,
| "population": 4,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 164.51,
| "zoneId": 85
| },
| {
| "averageCumulativeDepth": 0.2,
| "averageDepth": 0.37,
| "averageRaininess": 0,
| "averageVelocity": 0.0,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59439487442536, 40.56882735094361, 521], [116.59443181347031, 40.56884965014382, 521], [116.59444990644101, 40.568832635992834, 521], [116.59441306608326, 40.56881164734142, 521], [116.59439487442536, 40.56882735094361, 521]]]}",
| "households": 1,
| "id": "1878781576023195655",
| "maxDepth": 0.37,
| "maxRaininess": 0,
| "maxVelocity": 0.0,
| "population": 4,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 2,
| "zoneArea": 9.37,
| "zoneId": 86
| },
| {
| "averageCumulativeDepth": 0.16,
| "averageDepth": 0.37,
| "averageRaininess": 0,
| "averageVelocity": 0.0,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59445466003558, 40.56883579557419, 517], [116.59443802766174, 40.568853401498835, 517], [116.59446030492914, 40.56886684973729, 517], [116.59447397151351, 40.56887235643333, 517], [116.59448674679885, 40.568858815376686, 517], [116.59445466003558, 40.56883579557419, 517]]]}",
| "households": 1,
| "id": "1878781576023195656",
| "maxDepth": 0.38,
| "maxRaininess": 0,
| "maxVelocity": 0.0,
| "population": 1,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 2,
| "zoneArea": 8.17,
| "zoneId": 87
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.02,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59067299037403, 40.57311344604129, 498], [116.59080312002502, 40.57311209202155, 498], [116.59081025041682, 40.572953671525234, 498], [116.59064743980328, 40.572955928230115, 498], [116.59064684560401, 40.57293606922471, 498], [116.59060881684755, 40.57293742324803, 498], [116.59060941104688, 40.57295457420717, 498], [116.59053513613192, 40.57295457420718, 498], [116.59053513613192, 40.573117959440175, 498], [116.59060287485438, 40.57311660542052, 498], [116.59060465745235, 40.57310712728237, 498], [116.59067061357673, 40.57310487058262, 498], [116.59067299037403, 40.57311344604129, 498]]]}",
| "households": 1,
| "id": "1878781576027389953",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.02,
| "population": 4,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 408.49,
| "zoneId": 88
| },
| {
| "averageCumulativeDepth": 0.14,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 1.93,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59851255954547, 40.56084611407567, 572], [116.59853573331895, 40.56090678525088, 572], [116.59856639400388, 40.56099102058601, 572], [116.59871256703666, 40.56096258101526, 572], [116.59866301081338, 40.560815778467436, 572], [116.59851255954547, 40.56084611407567, 572]]]}",
| "households": 1,
| "id": "1878781576027389954",
| "maxDepth": 0.12,
| "maxRaininess": 0,
| "maxVelocity": 1.94,
| "population": 1,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 217.3,
| "zoneId": 89
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.13,
| "averageRaininess": 0,
| "averageVelocity": 0.0,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.5980825176908, 40.56061916095911, 570], [116.5979912486752, 40.56065491374377, 570], [116.59795203152002, 40.56059451319488, 570], [116.59789570142449, 40.56061428557788, 570], [116.59794739676536, 40.56068633284181, 570], [116.597973066176, 40.56067929063147, 570], [116.59802012676218, 40.56074754586982, 570], [116.59819553440141, 40.5606844368622, 570], [116.59810462190552, 40.560538987978575, 570], [116.59804187445727, 40.56056146892535, 570], [116.5980825176908, 40.56061916095911, 570]]]}",
| "households": 1,
| "id": "1878781576027389955",
| "maxDepth": 0.14,
| "maxRaininess": 0,
| "maxVelocity": 0.0,
| "population": 2,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 258.42,
| "zoneId": 90
| },
| {
| "averageCumulativeDepth": 0.14,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.05,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59139500394795, 40.57045851352629, 512], [116.59157504634172, 40.57050410064957, 512], [116.59163803146959, 40.570353347073954, 512], [116.59145264128192, 40.570307759848006, 512], [116.59139500394795, 40.57045851352629, 512]]]}",
| "households": 1,
| "id": "1878781576027389956",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.05,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 284.88,
| "zoneId": 91
| },
| {
| "averageCumulativeDepth": 0.16,
| "averageDepth": 0.22,
| "averageRaininess": 0,
| "averageVelocity": 0.05,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59912978904087, 40.56139911204804, 565], [116.59889745710674, 40.56138015245115, 565], [116.59886596454278, 40.561554399972934, 565], [116.59906620971364, 40.56157426235594, 565], [116.59908997768643, 40.5614469624354, 565], [116.5991268180443, 40.56144967094688, 565], [116.59912978904087, 40.56139911204804, 565]]]}",
| "households": 1,
| "id": "1878781576027389957",
| "maxDepth": 0.23,
| "maxRaininess": 0,
| "maxVelocity": 0.06,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 354.35,
| "zoneId": 92
| },
| {
| "averageCumulativeDepth": 0.1,
| "averageDepth": 0.14,
| "averageRaininess": 0,
| "averageVelocity": 0.0,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59030463235099, 40.57605638865978, 487], [116.5902753977445, 40.576087529736014, 487], [116.59025935436283, 40.576084280233054, 487], [116.59019601271541, 40.57623467789484, 487], [116.59034432486553, 40.57627331077706, 487], [116.59036987543621, 40.57623456957833, 487], [116.59038948401383, 40.57623944382173, 487], [116.59045686621658, 40.57610431883192, 487], [116.59030463235099, 40.57605638865978, 487]]]}",
| "households": 1,
| "id": "1878781576027389958",
| "maxDepth": 0.14,
| "maxRaininess": 0,
| "maxVelocity": 0.0,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 325.07,
| "zoneId": 93
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.76,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59858898645307, 40.55715194921799, 617], [116.59857829086532, 40.55716820132782, 617], [116.59840359626511, 40.55710806850172, 617], [116.59832230979816, 40.557243502718606, 617], [116.5984606393999, 40.55729550938508, 617], [116.59848702184972, 40.55727709036195, 617], [116.5985597518465, 40.55730688583796, 617], [116.59864032527433, 40.55716765959089, 617], [116.59858898645307, 40.55715194921799, 617]]]}",
| "households": 1,
| "id": "1878781576031584257",
| "maxDepth": 0.11,
| "maxRaininess": 0,
| "maxVelocity": 0.76,
| "population": 2,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 346.6,
| "zoneId": 94
| },
| {
| "averageCumulativeDepth": 0.1,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.16,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59403595154313, 40.56857646687099, 526], [116.59393612605743, 40.56852139964682, 526], [116.59383986576766, 40.568617090204015, 526], [116.59401218357038, 40.56872000253733, 526], [116.59414171902203, 40.568591362095944, 526], [116.59410250186691, 40.56857105042471, 526], [116.59409121207983, 40.568580077834916, 526], [116.59405199492471, 40.56856112027208, 526], [116.59403595154313, 40.56857646687099, 526]]]}",
| "households": 1,
| "id": "1878781576031584258",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.19,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 279.76,
| "zoneId": 95
| },
| {
| "averageCumulativeDepth": 0.13,
| "averageDepth": 0.13,
| "averageRaininess": 0,
| "averageVelocity": 0.15,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59337824915198, 40.568799555919306, 524], [116.59321662693704, 40.568904273445185, 524], [116.59341532718948, 40.56905376645685, 524], [116.59356459005853, 40.56892593911977, 524], [116.59337824915198, 40.568799555919306, 524]]]}",
| "households": 1,
| "id": "1878781576031584259",
| "maxDepth": 0.13,
| "maxRaininess": 0,
| "maxVelocity": 0.33,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 412.13,
| "zoneId": 96
| },
| {
| "averageCumulativeDepth": 0.1,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.11,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59070972179529, 40.574502996216324, 497], [116.59066596187648, 40.57458075412402, 497], [116.59076569537118, 40.57461456503004, 497], [116.59087490920615, 40.5746508519342, 497], [116.59090723364912, 40.57459560917677, 497], [116.59087395848722, 40.574585499386124, 497], [116.59093432913812, 40.57450064929754, 497], [116.59094811456227, 40.574503898877374, 497], [116.59102654887243, 40.57438005366731, 497], [116.59081073567965, 40.57430242462864, 497], [116.59073325208837, 40.574428436371406, 497], [116.59074893895041, 40.574434935537944, 497], [116.59070972179529, 40.574502996216324, 497]]]}",
| "households": 2,
| "id": "1878781576031584260",
| "maxDepth": 0.12,
| "maxRaininess": 0,
| "maxVelocity": 0.14,
| "population": 4,
| "property": 96.0,
| "raininess": 0.0,
| "room": 8,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 623.29,
| "zoneId": 97
| },
| {
| "averageCumulativeDepth": 0.16,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.21,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59736077843831, 40.56334015512274, 557], [116.59719345190975, 40.563295375650426, 557], [116.59716017674786, 40.56334954436312, 557], [116.59718489543955, 40.56335965585131, 557], [116.59713640877501, 40.56346871537675, 557], [116.59745109673501, 40.56354671810713, 557], [116.59752810496686, 40.56337554532965, 557], [116.59745109673501, 40.56335893360222, 557], [116.59746440679973, 40.56333582162673, 557], [116.59737028562743, 40.56331632089121, 557], [116.59736077843831, 40.56334015512274, 557]]]}",
| "households": 1,
| "id": "1878781576031584261",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.21,
| "population": 4,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 588.7,
| "zoneId": 98
| },
| {
| "averageCumulativeDepth": 0.1,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.21,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.5974415895459, 40.563552496083545, 555], [116.59713070446152, 40.56349110505865, 555], [116.59707841492134, 40.563592941904496, 555], [116.59738454641116, 40.56366733326127, 555], [116.5974415895459, 40.563552496083545, 555]]]}",
| "households": 1,
| "id": "1878781576031584262",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.21,
| "population": 2,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 349.23,
| "zoneId": 99
| },
| {
| "averageCumulativeDepth": 0.13,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.16,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59641110599784, 40.56586151160183, 543], [116.59618863777278, 40.565781886567564, 543], [116.5961052121884, 40.56591838656829, 543], [116.59632696737428, 40.566001261432916, 543], [116.59641110599784, 40.56586151160183, 543]]]}",
| "households": 1,
| "id": "1878781576035778562",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.16,
| "population": 3,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 352.53,
| "zoneId": 100
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.23,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59775797250893, 40.563434823809, 555], [116.59756307513199, 40.5633849886584, 555], [116.59749367265135, 40.563563383881146, 555], [116.59770188009311, 40.56360816317416, 555], [116.59775797250893, 40.563434823809, 555]]]}",
| "households": 1,
| "id": "1878781576035778563",
| "maxDepth": 0.11,
| "maxRaininess": 0,
| "maxVelocity": 0.24,
| "population": 2,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 361.27,
| "zoneId": 101
| },
| {
| "averageCumulativeDepth": 0.15,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.16,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59607383846436, 40.56601913639027, 539], [116.59603248219179, 40.56608901117771, 539], [116.59620717679155, 40.56615238592189, 539], [116.59630129796373, 40.56600017810201, 539], [116.59611448169781, 40.56594005320949, 539], [116.59606742111171, 40.5660164280637, 539], [116.59607383846436, 40.56601913639027, 539]]]}",
| "households": 1,
| "id": "1878781576035778564",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.16,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 307.98,
| "zoneId": 102
| },
| {
| "averageCumulativeDepth": 0.15,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.13,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59729083622662, 40.55843559416252, 600], [116.59727918991993, 40.558450401356616, 600], [116.59733956057089, 40.55847875170691, 600], [116.59733498636038, 40.55849079573631, 600], [116.59738787437786, 40.558499577074784, 600], [116.59739327618944, 40.55847604307524, 600], [116.59729083622662, 40.55843559416252, 600]]]}",
| "households": 1,
| "id": "1878781576035778565",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.13,
| "population": 2,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 26.34,
| "zoneId": 103
| },
| {
| "averageCumulativeDepth": 0.1,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.41,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59765183707187, 40.56080568540426, 579], [116.59750209884317, 40.56083954211406, 579], [116.59755201158603, 40.56098715716878, 579], [116.5977053150107, 40.560952849111715, 579], [116.59765183707187, 40.56080568540426, 579]]]}",
| "households": 1,
| "id": "1878781576035778566",
| "maxDepth": 0.11,
| "maxRaininess": 0,
| "maxVelocity": 0.41,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 226.6,
| "zoneId": 104
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.07,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59601959189118, 40.56502079831512, 550], [116.59627557295828, 40.56511667443514, 550], [116.59636898109139, 40.56496717262879, 550], [116.59612583472962, 40.56488754653039, 550], [116.59609303492712, 40.564947130694584, 550], [116.59606807855567, 40.56493846391035, 550], [116.59601959189118, 40.56502079831512, 550]]]}",
| "households": 1,
| "id": "1878781576035778567",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.07,
| "population": 4,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 416.61,
| "zoneId": 105
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.07,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59631550315261, 40.56512588286885, 549], [116.59653868441723, 40.56522013382302, 549], [116.59663137951112, 40.565084715743744, 549], [116.59642673726533, 40.565004006438144, 549], [116.59637611148325, 40.56508092403356, 549], [116.5963554333469, 40.5650733406126, 549], [116.59631550315261, 40.56512588286885, 549]]]}",
| "households": 1,
| "id": "1878781576035778568",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.07,
| "population": 2,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 338.0,
| "zoneId": 106
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.09,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59621466752796, 40.565128726649554, 548], [116.59611484204224, 40.565281297565676, 548], [116.59642026049276, 40.56539956235606, 548], [116.59652246277581, 40.5652614362827, 548], [116.59621466752796, 40.565128726649554, 548]]]}",
| "households": 1,
| "id": "1878781576039972865",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.09,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 538.31,
| "zoneId": 107
| },
| {
| "averageCumulativeDepth": 0.12,
| "averageDepth": 0.19,
| "averageRaininess": 0,
| "averageVelocity": 0.61,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59379311930252, 40.568704949141924, 526], [116.59361248260984, 40.56859210631223, 526], [116.59352038121285, 40.568671547417225, 526], [116.59377760353696, 40.568832866755244, 526], [116.59380797356299, 40.568802444757324, 526], [116.59388878488582, 40.56884577588421, 525], [116.59399871172626, 40.56874737799259, 525], [116.59384124966786, 40.568648979477864, 525], [116.59378097127266, 40.56869736000556, 525], [116.59379311930252, 40.568704949141924, 525]]]}",
| "households": 2,
| "id": "1878781576039972866",
| "maxDepth": 0.19,
| "maxRaininess": 0,
| "maxVelocity": 0.61,
| "population": 5,
| "property": 96.0,
| "raininess": 0.0,
| "room": 8,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 518.5476920293967,
| "zoneId": 108
| },
| {
| "averageCumulativeDepth": 0.12,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.24,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.5915107983125, 40.57017702136025, 512], [116.59148484688504, 40.57023911716243, 512], [116.59167133722912, 40.57028856442843, 512], [116.59170025889074, 40.57022693892801, 512], [116.5915107983125, 40.57017702136025, 512]]]}",
| "households": 1,
| "id": "1878781576039972867",
| "maxDepth": 0.11,
| "maxRaininess": 0,
| "maxVelocity": 0.25,
| "population": 4,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 122.17,
| "zoneId": 109
| },
| {
| "averageCumulativeDepth": 0.17,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.21,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59115554162219, 40.57026758890037, 513], [116.5911359330446, 40.57030595441269, 513], [116.59112107806168, 40.57030144082412, 513], [116.59104799154537, 40.5704526458745, 513], [116.59129755525954, 40.57052080087506, 513], [116.5913694533772, 40.570382234012946, 513], [116.59140154014041, 40.57038674759601, 513], [116.59147938025129, 40.57021658530289, 513], [116.59122446874323, 40.57014436775327, 513], [116.59115554162219, 40.57026758890037, 513]]]}",
| "households": 1,
| "id": "1878781576039972868",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.21,
| "population": 3,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 863.77,
| "zoneId": 110
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.12,
| "averageRaininess": 0,
| "averageVelocity": 0.36,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59798286700453, 40.56390754612474, 549], [116.59787056333326, 40.5640249105399, 549], [116.59788898351218, 40.56403800117341, 549], [116.59800544657871, 40.5639201853793, 549], [116.59798286700453, 40.56390754612474, 549]]]}",
| "households": 1,
| "id": "1878781576039972869",
| "maxDepth": 0.13,
| "maxRaininess": 0,
| "maxVelocity": 0.55,
| "population": 1,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 36.51,
| "zoneId": 111
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.16,
| "averageRaininess": 0,
| "averageVelocity": 0.1,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59800722917666, 40.56407817586039, 548], [116.59794899764341, 40.56406011982425, 548], [116.59793533105905, 40.5640813356662, 548], [116.59799415679166, 40.564100745898685, 548], [116.59800722917666, 40.56407817586039, 548]]]}",
| "households": 1,
| "id": "1878781576039972870",
| "maxDepth": 0.24,
| "maxRaininess": 0,
| "maxVelocity": 0.16,
| "population": 3,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 14.41,
| "zoneId": 112
| },
| {
| "averageCumulativeDepth": 0.15,
| "averageDepth": 0.16,
| "averageRaininess": 0,
| "averageVelocity": 0.12,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59792285287335, 40.56430838989375, 548], [116.59800901177464, 40.564131441138514, 548], [116.5978301577796, 40.56407998146372, 548], [116.5977374626858, 40.56424970796042, 548], [116.59792285287335, 40.56430838989375, 548]]]}",
| "households": 1,
| "id": "1878781576044167169",
| "maxDepth": 0.17,
| "maxRaininess": 0,
| "maxVelocity": 0.4,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 343.2,
| "zoneId": 113
| },
| {
| "averageCumulativeDepth": 0.12,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 1.19,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.58897647803244, 40.57723602657209, 488], [116.58879584143935, 40.57718186909906, 488], [116.58873047951428, 40.577315457453224, 488], [116.58890517411409, 40.57737232268519, 488], [116.58897647803244, 40.57723602657209, 488]]]}",
| "households": 1,
| "id": "1878781576044167170",
| "maxDepth": 0.12,
| "maxRaininess": 0,
| "maxVelocity": 1.2,
| "population": 4,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 261.09,
| "zoneId": 114
| },
| {
| "averageCumulativeDepth": 0.17,
| "averageDepth": 0.13,
| "averageRaininess": 0,
| "averageVelocity": 0.0,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59717330162103, 40.55762194585076, 601], [116.5971008093039, 40.55762104296199, 601], [116.59710021510463, 40.557707268784426, 601], [116.59716914222575, 40.55770817167202, 601], [116.59717330162103, 40.55762194585076, 601]]]}",
| "households": 1,
| "id": "1878781576044167171",
| "maxDepth": 0.13,
| "maxRaininess": 0,
| "maxVelocity": 0.0,
| "population": 2,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 57.36,
| "zoneId": 115
| },
| {
| "averageCumulativeDepth": 0.18,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.11,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59740682393398, 40.55854791206522, 597], [116.59736774939644, 40.55868891145064, 597], [116.59752328700074, 40.558715846841594, 597], [116.59753933038242, 40.558716749715586, 597], [116.59758805472664, 40.558556489389275, 597], [116.59744188169384, 40.55853662611086, 597], [116.59743712809927, 40.55855107213211, 597], [116.59740682393398, 40.55854791206522, 597]]]}",
| "households": 1,
| "id": "1878781576044167172",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.11,
| "population": 2,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 267.71,
| "zoneId": 116
| },
| {
| "averageCumulativeDepth": 0.16,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.13,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59704168845167, 40.558777016527756, 596], [116.59704020295338, 40.55878536810418, 596], [116.59724757851616, 40.5588223858899, 596], [116.59728560727262, 40.55868921205301, 596], [116.59708001430779, 40.558653097068536, 596], [116.5970601086306, 40.55871471824909, 596], [116.5970488188435, 40.55873819296959, 596], [116.59704168845167, 40.558777016527756, 596]]]}",
| "households": 1,
| "id": "1878781576044167173",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.13,
| "population": 2,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 273.54,
| "zoneId": 117
| },
| {
| "averageCumulativeDepth": 0.1,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.13,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59728917246858, 40.55883006030631, 596], [116.59748466404491, 40.55885443785855, 596], [116.59752328700074, 40.558715846841594, 596], [116.59736166478567, 40.55868785774143, 596], [116.59734383880604, 40.55877001926021, 596], [116.59730759264752, 40.558765956330326, 596], [116.59728917246858, 40.55883006030631, 596]]]}",
| "households": 1,
| "id": "1878781576044167174",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.13,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 244.65,
| "zoneId": 118
| },
| {
| "averageCumulativeDepth": 0.12,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.24,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59340296784367, 40.56879088963397, 524], [116.59374902952729, 40.56899526923119, 524], [116.59388878520723, 40.56884577608887, 524], [116.59380797409979, 40.56880244468085, 524], [116.59372145867891, 40.56888910746885, 524], [116.59346381385397, 40.56873239217853, 524], [116.59340296784367, 40.56879088963397, 524]]]}",
| "households": 1,
| "id": "1878781576044167175",
| "maxDepth": 0.11,
| "maxRaininess": 0,
| "maxVelocity": 0.24,
| "population": 2,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 401.64,
| "zoneId": 119
| },
| {
| "averageCumulativeDepth": 0.12,
| "averageDepth": 0.17,
| "averageRaininess": 0,
| "averageVelocity": 1.01,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59118651670263, 40.573726084250524, 494], [116.59113268224432, 40.573688984440025, 494], [116.59110023896149, 40.57372716745636, 494], [116.59116049077242, 40.5737566848087, 494], [116.59118651670263, 40.573726084250524, 494]]]}",
| "households": 1,
| "id": "1878781576048361474",
| "maxDepth": 0.2,
| "maxRaininess": 0,
| "maxVelocity": 2.14,
| "population": 3,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 27.6,
| "zoneId": 120
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.15,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59426293568322, 40.568672157349425, 526], [116.59413480303921, 40.56859823030986, 526], [116.59414171902203, 40.568591362095944, 526], [116.59410250186691, 40.56857105042471, 526], [116.59409121207983, 40.568580077834916, 526], [116.59405199492471, 40.56856112027208, 526], [116.59403595154313, 40.56857646687099, 526], [116.59393612605743, 40.56852139964682, 526], [116.59383986576766, 40.568617090204015, 526], [116.59401218357038, 40.56872000253733, 526], [116.5940124924468, 40.56871969579584, 526], [116.59401218357041, 40.56872000253733, 526], [116.5941369654275, 40.56879086751697, 526], [116.59426293568322, 40.568672157349425, 526]]]}",
| "households": 2,
| "id": "1878781576048361475",
| "maxDepth": 0.13,
| "maxRaininess": 0,
| "maxVelocity": 0.19,
| "population": 2,
| "property": 96.0,
| "raininess": 0.0,
| "room": 8,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 507.36,
| "zoneId": 121
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.18,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59378097142373, 40.56869736033132, 525], [116.59379311911682, 40.56870494891022, 525], [116.59361248252368, 40.568592106405774, 526], [116.5935203816292, 40.56867154754874, 526], [116.5937776039677, 40.5688328665571, 526], [116.59380797409979, 40.56880244468085, 526], [116.59372145867891, 40.56888910746885, 524], [116.59346381385397, 40.56873239217853, 524], [116.59340296784367, 40.56879088963397, 524], [116.59374902952729, 40.56899526923119, 524], [116.59388878520723, 40.56884577608887, 524], [116.59399871208134, 40.56874737764268, 525], [116.59384124926167, 40.5686489790518, 525], [116.59378097142373, 40.56869736033132, 525]]]}",
| "households": 3,
| "id": "1878781576048361476",
| "maxDepth": 0.14,
| "maxRaininess": 0,
| "maxVelocity": 0.23,
| "population": 7,
| "property": 144.0,
| "raininess": 0.0,
| "room": 12,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 920.19,
| "zoneId": 122
| },
| {
| "averageCumulativeDepth": 0.1,
| "averageDepth": 0.11,
| "averageRaininess": 0,
| "averageVelocity": 0.21,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59413128712067, 40.56884338649361, 521], [116.59413834892148, 40.56884758156362, 521], [116.59399091321531, 40.568759997176265, 524], [116.59385491584607, 40.56889452388938, 524], [116.59399752368279, 40.56898208929367, 524], [116.59407782846421, 40.568905387123024, 522.5], [116.5942896508846, 40.56902862002838, 521], [116.59446030492914, 40.56886684973729, 521], [116.5942449670958, 40.56873685547002, 521], [116.59413128712067, 40.56884338649361, 521]]]}",
| "households": 2,
| "id": "1878781576048361477",
| "maxDepth": 0.38,
| "maxRaininess": 0,
| "maxVelocity": 0.23,
| "population": 2,
| "property": 96.0,
| "raininess": 0.0,
| "room": 8,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 833.47,
| "zoneId": 123
| },
| {
| "averageCumulativeDepth": 0.12,
| "averageDepth": 0.12,
| "averageRaininess": 0,
| "averageVelocity": 0.0,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.5887732222518, 40.576702062060775, 493], [116.58870381977128, 40.576751526242624, 493], [116.58873376741698, 40.57677571674161, 493], [116.58880554669476, 40.576729140996974, 493], [116.5887732222518, 40.576702062060775, 493]]]}",
| "households": 1,
| "id": "1878781576048361478",
| "maxDepth": 0.18,
| "maxRaininess": 0,
| "maxVelocity": 0.0,
| "population": 2,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 31.07,
| "zoneId": 124
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.12,
| "averageRaininess": 0,
| "averageVelocity": 0.0,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.5988691187509, 40.56110351476962, 569], [116.59853541641263, 40.561167074802675, 569], [116.59857534660696, 40.56131152919872, 569], [116.59891950685325, 40.561249413846596, 569], [116.5988691187509, 40.56110351476962, 569]]]}",
| "households": 1,
| "id": "1878781576048361479",
| "maxDepth": 0.12,
| "maxRaininess": 0,
| "maxVelocity": 0.0,
| "population": 2,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 489.45,
| "zoneId": 125
| },
| {
| "averageCumulativeDepth": 0.22,
| "averageDepth": 0.12,
| "averageRaininess": 0,
| "averageVelocity": 0.42,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59449649562939, 40.56808441102969, 529], [116.59436600945872, 40.56800478863991, 529], [116.5942333841705, 40.5681320760884, 529], [116.59436315730194, 40.56821548985951, 529], [116.59449649562939, 40.56808441102969, 529]]]}",
| "households": 1,
| "id": "1878781576052555778",
| "maxDepth": 0.14,
| "maxRaininess": 0,
| "maxVelocity": 0.42,
| "population": 2,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 260.03,
| "zoneId": 126
| },
| {
| "averageCumulativeDepth": 0.18,
| "averageDepth": 0.13,
| "averageRaininess": 0,
| "averageVelocity": 0.24,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59440209716394, 40.56825379636527, 527], [116.59426483712105, 40.56817480609955, 527], [116.59414540305772, 40.56830660694805, 527], [116.59426840231697, 40.56837566687804, 527], [116.59440209716394, 40.56825379636527, 527]]]}",
| "households": 1,
| "id": "1878781576052555779",
| "maxDepth": 0.15,
| "maxRaininess": 0,
| "maxVelocity": 0.42,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 243.31,
| "zoneId": 127
| },
| {
| "averageCumulativeDepth": 0.1,
| "averageDepth": 0.12,
| "averageRaininess": 0,
| "averageVelocity": 0.8,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59133265012194, 40.574554103490385, 496], [116.59116770039097, 40.57449922171752, 496], [116.59113917882361, 40.57454579901446, 496], [116.59130175175733, 40.574603208196365, 496], [116.59133265012194, 40.574554103490385, 496]]]}",
| "households": 1,
| "id": "1878781576052555780",
| "maxDepth": 0.14,
| "maxRaininess": 0,
| "maxVelocity": 0.81,
| "population": 1,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 89.35,
| "zoneId": 128
| },
| {
| "averageCumulativeDepth": 0.18,
| "averageDepth": 0.19,
| "averageRaininess": 0,
| "averageVelocity": 1.19,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59159417955983, 40.569941580457254, 513], [116.59153048139277, 40.57008384938667, 513], [116.59149245263632, 40.57007734979751, 513], [116.59146868466352, 40.57013151302126, 513], [116.59152287564147, 40.570148123067774, 513], [116.5915107983125, 40.57017702136025, 512], [116.59148484688504, 40.57023911716243, 512], [116.59167133722912, 40.57028856442843, 512], [116.59178717549878, 40.57031927852427, 509], [116.59184136647671, 40.570203008409536, 509], [116.59185950218162, 40.57020733802712, 509], [116.5919079168005, 40.5702188962632, 509], [116.59193709143015, 40.57015068539761, 509], [116.59198112215665, 40.57004774054997, 512], [116.5917888533577, 40.5699937764488, 512], [116.59170066007792, 40.56996902321844, 513], [116.59171777301826, 40.569932914319786, 513], [116.59163030687847, 40.56991197114964, 513], [116.59161509537586, 40.569946635703566, 513], [116.59159417955983, 40.569941580457254, 513]], [[116.59170025889074, 40.57022693892801, 512], [116.59172570128187, 40.57017272691686, 509.750071262], [116.59167133722912, 40.57028856442843, 509], [116.59170025889074, 40.57022693892801, 512]], [[116.59170887003413, 40.57016831380776, 513], [116.59171896598993, 40.570170957471504, 510.5], [116.59153523498733, 40.57012284690842, 512], [116.59170887003413, 40.57016831380776, 513]]]}",
| "households": 7,
| "id": "1878781576052555781",
| "maxDepth": 0.49,
| "maxRaininess": 0,
| "maxVelocity": 2.84,
| "population": 21,
| "property": 120.0,
| "raininess": 0.0,
| "room": 10,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 1147.75,
| "zoneId": 129
| },
| {
| "averageCumulativeDepth": 0.36,
| "averageDepth": 0.1,
| "averageRaininess": 0,
| "averageVelocity": 0.11,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59095853285703, 40.573302587282186, 499], [116.59082162933383, 40.573228206635285, 499], [116.59067997221612, 40.57336180288373, 499], [116.59081307286364, 40.57344268264508, 499], [116.59095853285703, 40.573302587282186, 499]]]}",
| "households": 1,
| "id": "1878781576052555782",
| "maxDepth": 0.1,
| "maxRaininess": 0,
| "maxVelocity": 0.11,
| "population": 4,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 278.51,
| "zoneId": 130
| },
| {
| "averageCumulativeDepth": 0.1,
| "averageDepth": 0.15,
| "averageRaininess": 0,
| "averageVelocity": 0.1,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59225660880655, 40.56940269502656, 516], [116.59206266214872, 40.56954243746335, 516], [116.59219742655432, 40.56965238964066, 516], [116.59239422536896, 40.56950452287758, 516], [116.59225660880655, 40.56940269502656, 516]]]}",
| "households": 1,
| "id": "1878781576052555783",
| "maxDepth": 0.22,
| "maxRaininess": 0,
| "maxVelocity": 0.21,
| "population": 1,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 378.71,
| "zoneId": 131
| },
| {
| "averageCumulativeDepth": 0.12,
| "averageDepth": 0.12,
| "averageRaininess": 0,
| "averageVelocity": 0.06,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59836789974065, 40.55747773931201, 612], [116.5981746661217, 40.55740893900482, 612], [116.5980926666155, 40.55753895527399, 612], [116.59829445670465, 40.55760342158044, 612], [116.59836789974065, 40.55747773931201, 612]]]}",
| "households": 1,
| "id": "1878781576052555784",
| "maxDepth": 0.12,
| "maxRaininess": 0,
| "maxVelocity": 0.07,
| "population": 3,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 286.21,
| "zoneId": 132
| },
| {
| "averageCumulativeDepth": 0.17,
| "averageDepth": 0.29,
| "averageRaininess": 0,
| "averageVelocity": 0.28,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59838259483428, 40.56299858442018, 558], [116.59814586582506, 40.562952360212385, 558], [116.59809832987946, 40.56309031048797, 558], [116.59833505888858, 40.56314159036088, 558], [116.59838259483428, 40.56299858442018, 558]]]}",
| "households": 1,
| "id": "1878781576056750081",
| "maxDepth": 0.3,
| "maxRaininess": 0,
| "maxVelocity": 1.61,
| "population": 4,
| "property": 48.0,
| "raininess": 0.0,
| "room": 4,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 334.54,
| "zoneId": 133
| },
| {
| "averageCumulativeDepth": 0.19,
| "averageDepth": 0.58,
| "averageRaininess": 0,
| "averageVelocity": 0.08,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59936246957217, 40.56330451210968, 555], [116.59933014512919, 40.56330234536057, 555], [116.5993253915346, 40.563358680814964, 555], [116.59935961741542, 40.563359403064084, 555], [116.59936246957217, 40.56330451210968, 555]]]}",
| "households": 1,
| "id": "1878781576056750082",
| "maxDepth": 0.93,
| "maxRaininess": 0,
| "maxVelocity": 0.09,
| "population": 2,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 3,
| "zoneArea": 17.46,
| "zoneId": 134
| },
| {
| "averageCumulativeDepth": 0.11,
| "averageDepth": 0.16,
| "averageRaininess": 0,
| "averageVelocity": 0.2,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\": \"Polygon\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"EPSG:4326\"}}, \"coordinates\": [[[116.59897667150572, 40.56131441714943, 565], [116.59898166277998, 40.56134312742224, 565], [116.5990433406693, 40.56134258571909, 565], [116.59902765380731, 40.56129112390022, 565], [116.59898522797587, 40.561297624342664, 565], [116.59899057576973, 40.56131089607742, 565], [116.59897667150572, 40.56131441714943, 565]]]}",
| "households": 1,
| "id": "1878781576056750083",
| "maxDepth": 0.16,
| "maxRaininess": 0,
| "maxVelocity": 0.2,
| "population": 1,
| "property": 12.0,
| "raininess": 0.0,
| "room": 1,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": 1,
| "zoneArea": 24.53,
| "zoneId": 135
| }
| ],
| "total": {
| "averageCumulativeDepth": 0.36,
| "averageDepth": 0.58,
| "averageRaininess": 17.73,
| "averageVelocity": 2.83,
| "createTime": "2025-01-13 20:30:08",
| "geom": "{\"type\":\"MultiPolygon\",\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4548\"}},\"coordinates\":[[[[465892.058057407,4491477.531274309,608],[465903.062248128,4491480.308456635,608],[465906.042803726,4491471.752283333,608],[465894.737192995,4491469.09678851,608],[465892.058057407,4491477.531274309,608]]],[[[465882.203059665,4491488.344744311,605],[465884.172880597,4491483.282402514,605],[465877.882806359,4491481.265759057,605],[465876.03267197,4491486.086921596,605],[465882.203059665,4491488.344744311,605]]],[[[465889.107215092,4491492.584455646,608],[465886.87080518,4491492.173566568,608],[465886.040173085,4491495.425933678,608],[465903.460948939,4491501.482508622,608],[465907.740979885,4491486.543596772,608],[465892.078677051,4491482.043091712,608],[465889.107215092,4491492.584455646,608]]],[[[465945.870548546,4491491.302533258,608],[465938.869812332,4491505.592084538,608],[465959.266982092,4491515.425185357,608],[465966.446453001,4491500.593429475,608],[465945.870548546,4491491.302533258,608]]],[[[465888.075696142,4491617.375702223,600],[465889.940714594,4491618.018886311,600],[465890.83419917,4491615.307704849,600],[465888.868300152,4491614.614849943,600],[465888.075696142,4491617.375702223,600]]],[[[465891.859937096,4491617.308274447,600],[465896.987383978,4491620.43309532,600],[465896.606085526,4491621.772304715,600],[465901.089861272,4491622.726967608,600],[465901.53542393,4491620.111525105,600],[465892.838800207,4491615.659489499,600],[465891.859937096,4491617.308274447,600]]],[[[465882.089224946,4491639.912048851,597],[465896.64811205,4491643.104036807,597],[465901.33624284,4491622.779426005,597],[465886.122859127,4491619.540280054,597],[465882.089224946,4491639.912048851,597]]],[[[465902.719306076,4491628.087033023,597],[465899.481457962,4491643.759545925,597],[465912.668249131,4491646.690426938,597],[465914.027487498,4491646.784481044,597],[465918.072880627,4491628.969395215,597],[465905.682774818,4491626.820209581,597],[465905.287500923,4491628.426219089,597],[465902.719306076,4491628.087033023,597]]],[[[466006.491772886,4491474.339207282,617],[466002.13562824,4491472.614443033,617],[466001.237975008,4491474.423297994,617],[465986.411592809,4491467.813218808,617],[465979.59549648,4491482.883997752,617],[465991.337776154,4491488.605721927,617],[465993.562942501,4491486.550185101,617],[465999.737952242,4491489.830781681,617],[466006.491772886,4491474.339207282,617]]],[[[465967.223106006,4491499.383790426,612],[465984.420667094,4491507.27640511,612],[465991.609153684,4491489.799694394,612],[465981.252285504,4491485.68385509,612],[465980.306826306,4491488.04438262,612],[465973.248349285,4491485.269152179,612],[465967.223106006,4491499.383790426,612]]],[[[465977.418652766,4491522.862226329,612],[465983.575337827,4491508.877384859,612],[465967.174441944,4491501.312013453,612],[465960.295280493,4491515.781446327,612],[465977.418652766,4491522.862226329,612]]],[[[465970.600516723,4491865.034306885,570],[465962.827316372,4491848.917926794,570],[465957.524507781,4491851.438583654,570],[465960.995879725,4491857.829342727,570],[465953.284261833,4491861.834804023,570],[465949.932289765,4491855.142727998,570],[465945.171614074,4491857.360139018,570],[465949.586289285,4491865.34071013,570],[465951.756706138,4491864.548782304,570],[465955.776924376,4491872.110059363,570],[465970.600516723,4491865.034306885,570]]],[[[465871.910736766,4491653.669483159,596],[465871.789165016,4491654.597466163,596],[465889.371431068,4491658.627837433,596],[465892.524651071,4491643.824718839,596],[465875.093786218,4491639.89390197,596],[465873.43918156,4491646.744385554,596],[465872.494923493,4491649.355527662,596],[465871.910736766,4491653.669483159,596]]],[[[465909.467413408,4491662.095321936,596],[465912.668249131,4491646.690426938,596],[465898.965592198,4491643.64489069,596],[465897.497527714,4491652.77548267,596],[465894.425631021,4491652.338340042,596],[465892.898084437,4491659.463948434,596],[465909.467413408,4491662.095321936,596]]],[[[465910.629291812,4491879.624661129,579],[465927.616934773,4491874.784755482,579],[465924.954781622,4491864.871221003,579],[465907.715041167,4491869.612030996,579],[465910.629291812,4491879.624661129,579]]],[[[465929.219110157,4491895.029817871,579],[465924.615369651,4491878.708577882,579],[465911.950987657,4491882.526144582,579],[465916.253041638,4491898.89887637,579],[465929.219110157,4491895.029817871,579]]],[[[465873.388925349,4491520.695113394,605],[465876.634232315,4491521.622757325,605],[465877.486179584,4491518.63098983,605],[465874.321851599,4491517.803239057,605],[465873.388925349,4491520.695113394,605]]],[[[465882.162708551,4491534.929384573,601],[465882.471218088,4491525.352758981,601],[465876.330985129,4491525.280567443,601],[465876.324439212,4491534.855812819,601],[465882.162708551,4491534.929384573,601]]],[[[465850.374622764,4491556.075033244,601],[465865.897902344,4491561.017200321,601],[465872.218648031,4491543.341874728,601],[465856.535210548,4491538.600942963,601],[465850.374622764,4491556.075033244,601]]],[[[465867.677165162,4491562.71354404,600],[465848.261397354,4491556.184967016,600],[465845.221928162,4491565.042129249,600],[465848.245878012,4491565.990820892,600],[465846.402942123,4491572.376014575,600],[465862.852916769,4491577.474344705,600],[465867.677165162,4491562.71354404,600]]],[[[465811.576061088,4491588.138965807,598],[465814.372515521,4491572.384804892,598],[465794.630822884,4491569.41722451,598],[465783.024427049,4491573.58123306,598],[465782.51405566,4491583.008333861,598],[465811.576061088,4491588.138965807,598]]],[[[465832.805140838,4491576.879926733,599],[465839.57262891,4491577.661080387,599],[465840.067226767,4491573.568068263,599],[465828.254207419,4491572.178354659,599],[465815.136717794,4491569.471156152,599],[465814.98959838,4491570.314043594,599],[465811.960351503,4491587.984303852,599],[465830.181512508,4491590.818515099,599],[465832.805140838,4491576.879926733,599]]],[[[465871.256458729,4491618.446204822,596],[465870.400065773,4491623.76405093,596],[465872.491204428,4491624.330998926,596],[465872.93656763,4491622.674626244,596],[465880.76823536,4491623.967298825,596],[465881.481451756,4491620.354577061,596],[465871.256458729,4491618.446204822,596]]],[[[465860.321344887,4492229.268165376,555],[465859.48805757,4492231.918702238,555],[465857.008948746,4492231.2082123,555],[465855.876212688,4492234.401494302,555],[465865.190712947,4492237.667278883,555],[465867.455367468,4492231.100264703,555],[465860.321344887,4492229.268165376,555]]],[[[465863.413273719,4492245.134349618,553],[465865.377097798,4492238.809328624,553],[465853.101233044,4492235.015721257,553],[465851.136317111,4492241.100142867,553],[465863.413273719,4492245.134349618,553]]],[[[465833.930470506,4492268.428050885,556],[465847.235867293,4492272.878573977,556],[465851.932242817,4492256.676043156,556],[465847.519159442,4492255.613494464,556],[465845.087141644,4492265.188887697,556],[465835.595091243,4492262.70593694,556],[465833.930470506,4492268.428050885,556]]],[[[465855.018948718,4492271.39929278,552],[465872.987189851,4492278.715840217,552],[465879.198475156,4492263.649309758,552],[465862.140937585,4492257.411312452,552],[465860.887983329,4492260.725437793,552],[465859.073397507,4492260.07206216,552],[465855.018948718,4492271.39929278,552]]],[[[465810.251056831,4492357.959396671,550],[465818.085368058,4492341.321583732,550],[465797.453677989,4492332.573791664,550],[465794.706315225,4492339.203104794,550],[465792.588440332,4492338.250382931,550],[465788.52420679,4492347.412111076,550],[465810.251056831,4492357.959396671,550]]],[[[465832.585545309,4492369.346071191,549],[465840.366669453,4492354.272498836,549],[465822.995258655,4492345.389422435,549],[465818.747082744,4492353.950449119,549],[465816.992073497,4492353.116363641,549],[465813.63727359,4492358.96646117,549],[465832.585545309,4492369.346071191,549]]],[[[465831.232804436,4492373.938832906,548],[465805.099348691,4492359.32138317,548],[465796.723189045,4492376.302514025,548],[465822.647974074,4492389.316815301,548],[465831.232804436,4492373.938832906,548]]],[[[465875.029912372,4492392.80811592,545],[465861.476053053,4492386.79481395,545],[465853.822296208,4492403.311350762,545],[465867.498826347,4492409.745123784,545],[465875.029912372,4492392.80811592,545]]],[[[465815.05352148,4492456.169258243,543],[465822.107707804,4492440.617960575,543],[465803.227428788,4492431.862249532,543],[465796.23200241,4492447.052407682,543],[465815.05352148,4492456.169258243,543]]],[[[465988.778556539,4491874.764330912,572],[465992.044340026,4491873.596463592,572],[465989.498912604,4491867.19145786,572],[465986.332860134,4491868.15835366,572],[465988.778556539,4491874.764330912,572]]],[[[465989.242207624,4491877.118313679,572],[465991.633462796,4491882.822198306,572],[466004.042154736,4491878.103598155,572],[466002.103363928,4491872.297385224,572],[465989.242207624,4491877.118313679,572]]],[[[466002.164339378,4491898.935995694,572],[466014.529536422,4491895.7215081,572],[466010.258302086,4491879.438809054,572],[465997.531709128,4491882.865501577,572],[465999.525027026,4491889.593841597,572],[466002.164339378,4491898.935995694,572]]],[[[466024.745455452,4491902.795469877,569],[466027.577259278,4491902.038573884,569],[466026.09231738,4491896.430825646,569],[466023.266491558,4491896.770700154,569],[466024.745455452,4491902.795469877,569]]],[[[465994.844580325,4491902.789218606,569],[465998.429807896,4491916.508357986,569],[466026.480583795,4491909.863768277,569],[466022.891296455,4491895.242290334,569],[465994.844580325,4491902.789218606,569]]],[[[466032.200528526,4491927.493307904,569],[466027.859353938,4491911.311245729,569],[465999.629884949,4491918.498040953,569],[466003.084696809,4491934.523696478,569],[466032.200528526,4491927.493307904,569]]],[[[466037.511935995,4491937.875852723,565],[466042.735213749,4491937.791926623,565],[466041.380674361,4491932.083350241,565],[466037.790878127,4491932.82154971,565],[466038.250494965,4491934.293259661,565],[466037.074710361,4491934.689619582,565],[466037.511935995,4491937.875852723,565]]],[[[466043.95523613,4491933.846212166,565],[466046.212717267,4491938.919050218,565],[466049.196990476,4491937.822679497,565],[466046.938963655,4491932.629531947,565],[466043.95523613,4491933.846212166,565]]],[[[466030.399204394,4491942.019789973,565],[466027.820165721,4491961.381399144,565],[466044.789078131,4491963.509846189,565],[466046.737679657,4491949.364556771,565],[466049.859083628,4491949.651129966,565],[466050.085156074,4491944.035628497,565],[466030.399204394,4491942.019789973,565]]],[[[466030.762288383,4491977.559696061,566],[466031.601456296,4491985.025096199,566],[466055.742317395,4491981.807245133,566],[466052.040843845,4491964.629820911,566],[466044.798886506,4491965.665353059,566],[466046.149939045,4491975.033340753,566],[466030.762288383,4491977.559696061,566]]],[[[465995.280954811,4492075.518610816,559],[466000.564298858,4492056.073878322,559],[465978.984774895,4492051.480206132,559],[465975.328280866,4492070.686055965,559],[465976.519684159,4492070.961342514,559],[465995.280954811,4492075.518610816,559]]],[[[465983.660951238,4492137.837195824,558],[465987.614315683,4492121.938620968,558],[465967.542622207,4492116.89702471,558],[465963.586736704,4492132.234199441,558],[465983.660951238,4492137.837195824,558]]],[[[465925.022871385,4491912.84495812,577],[465937.225830911,4491907.17474334,577],[465931.986217501,4491894.866795676,577],[465918.977836861,4491900.490576944,577],[465925.022871385,4491912.84495812,577]]],[[[465942.856845036,4491916.891994995,573],[465929.90609647,4491924.109592823,573],[465939.890450228,4491941.749640197,573],[465953.160681797,4491934.539386279,573],[465945.53368482,4491921.210960207,573],[465942.856845036,4491916.891994995,573]]],[[[465908.909736903,4492162.313928374,557],[465910.025217933,4492159.742288127,557],[465902.044358329,4492157.613232655,557],[465901.251305353,4492160.263605895,557],[465887.057970254,4492155.355800473,557],[465884.267453636,4492161.383898214,557],[465886.365971162,4492162.497166567,557],[465882.315093705,4492174.626555128,557],[465909.005010475,4492183.166629313,557],[465915.439858757,4492164.128798746,557],[465908.909736903,4492162.313928374,557]]],[[[465930.274519861,4492189.892847178,555],[465934.936995139,4492170.622530944,555],[465918.406211275,4492165.16391391,555],[465912.619136524,4492185.000822303,555],[465930.274519861,4492189.892847178,555]]],[[[466068.035251987,4492142.151023852,55],[466050.798845909,4492140.865947122,55],[466049.916962803,4492159.397219419,55],[466066.105175341,4492160.366239304,55],[466068.035251987,4492142.151023852,55]]],[[[466067.640426906,4492161.562324477,555],[466070.539322813,4492161.629346481,555],[466070.753150139,4492155.532832585,555],[466068.014552059,4492155.304672389,555],[466067.640426906,4492161.562324477,555]]],[[[465950.284789346,4492242.346472581,548],[465955.276421144,4492244.479167195,548],[465956.372051463,4492241.967805325,548],[465951.43142574,4492239.985258326,548],[465950.284789346,4492242.346472581,548]]],[[[465963.85001482,4492237.572616627,547],[465961.066785576,4492245.204657959,547],[465978.807033096,4492251.088887326,547],[465981.747640713,4492244.859704236,547],[465976.558389362,4492243.529929354,547],[465977.154700702,4492241.873010732,547],[465963.85001482,4492237.572616627,547]]],[[[465903.430198251,4492196.586201536,555],[465908.202796706,4492183.811928629,555],[465881.843374524,4492177.115046634,555],[465877.466786944,4492188.443861784,555],[465903.430198251,4492196.586201536,555]]],[[[465905.896705148,4492211.579092599,553],[465943.38231144,4492221.593796903,553],[465946.771211903,4492205.537543858,553],[465930.00666146,4492201.76428006,553],[465930.7203043,4492199.354899429,553],[465910.326720762,4492194.314981328,553],[465905.896705148,4492211.579092599,553]]],[[[465900.490279069,4492226.601923429,553],[465935.394611067,4492235.585715742,553],[465938.795203518,4492222.095958489,553],[465904.453679354,4492212.94915357,553],[465900.490279069,4492226.601923429,553]]],[[[465956.141040001,4492224.424296152,549],[465954.222426292,4492223.029483509,549],[465944.771182317,4492236.105725133,549],[465946.33777475,4492237.552266796,549],[465956.141040001,4492224.424296152,549]]],[[[465875.14743645,4492236.117915847,554],[465887.852035916,4492241.23295885,554],[465892.443146852,4492228.399427742,554],[465880.164253595,4492223.944102837,554],[465875.14743645,4492236.117915847,554]]],[[[465893.88679799,4492243.956105289,551],[465923.870193469,4492250.87702556,551],[465927.421530975,4492235.140898364,551],[465897.92152672,4492228.297942876,551],[465893.88679799,4492243.956105289,551]]],[[[465933.613200719,4492261.120017423,548],[465949.343108559,4492267.564741021,548],[465956.550002376,4492247.882008336,548],[465941.377253626,4492242.236745165,548],[465933.613200719,4492261.120017423,548]]],[[[465804.985975655,4492472.99751003,539],[465812.87915722,4492456.058919193,539],[465797.028021183,4492449.454801972,539],[465793.081578094,4492457.954191918,539],[465793.62641009,4492458.252449023,539],[465790.159734909,4492466.02781977,539],[465804.985975655,4492472.99751003,539]]],[[[465661.104825262,4492688.206517786,529],[465650.014240906,4492679.415638783,529],[465638.848310518,4492693.602121092,529],[465649.880444196,4492702.814279418,529],[465661.104825262,4492688.206517786,529]]],[[[465653.19754049,4492707.052881644,527],[465641.533671066,4492698.334850917,527],[465631.48715463,4492713.017395447,527],[465641.938303622,4492720.638248052,527],[465653.19754049,4492707.052881644,527]]],[[[465656.95730739,4492770.879412555,524],[465667.865480494,4492757.112601807,524],[465653.165329578,4492746.834694842,524],[465642.636267634,4492759.434200178,524],[465654.411606744,4492768.995731646,524],[465656.95730739,4492770.879412555,524]]],[[[465591.506707366,4492724.615333095,525],[465594.512191913,4492721.654174899,525],[465591.693214244,4492719.231144166,525],[465588.837157795,4492721.860796122,525],[465591.506707366,4492724.615333095,525]]],[[[465570.816727092,4492712.881495003,524],[465577.024014856,4492705.885588769,524],[465571.66901857,4492701.298870497,524],[465550.918921938,4492724.51443045,524],[465574.839935688,4492745.092698456,524],[465589.206470466,4492728.836364708,524],[465570.816727092,4492712.881495003,524]]],[[[465627.989490412,4492742.399526164,526],[465627.038070592,4492743.406388971,526],[465623.707394214,4492741.316529325,526],[465622.356665854,4492743.026968352,526],[465613.875086574,4492736.950931731,526],[465605.77258298,4492747.614563492,526],[465620.417406733,4492758.975307289,526],[465631.02037997,4492766.795892732,526],[465641.627011706,4492753.564464662,526],[465630.738714357,4492745.405141939,526],[465631.320857828,4492744.639756056,526],[465627.989490412,4492742.399526164,526]]],[[[465573.986964664,4492760.565271977,524],[465568.864412622,4492767.084960373,524],[465598.274075959,4492789.645306551,524],[465610.032227322,4492772.990122601,524],[465618.724696178,4492762.690997987,524.969436752],[465619.2906,4492762.0205,525],[465619.290598208,4492762.020498545,524.999998289],[465619.29062989,4492762.020461006,525],[465605.906065384,4492751.155152846,525],[465602.72011785,4492754.539565155,525],[465600.8264,4492756.5512,525],[465600.826426622,4492756.551221604,525],[465600.82641296,4492756.551236117,525],[465601.514799251,4492757.109866058,525],[465601.52886201,4492757.121278603,525.010750089],[465595.105649587,4492751.908810222,525.71991541],[465586.5046,4492744.929,526],[465578.746,4492753.7866,526],[465600.6106,4492771.6,526],[465600.610624198,4492771.599967908,526],[465600.610636374,4492771.599977829,526],[465603.166552088,4492768.21028032,524.999999072],[465595.884976699,4492777.867231989,524],[465573.986964664,4492760.565271977,524]]],[[[465631.166550455,4492773.093222067,521],[465618.636668527,4492763.424853572,524],[465607.189079324,4492778.416593842,524],[465619.310111894,4492788.084719402,524],[465626.071171881,4492779.535911743,522.5],[465644.071591701,4492793.137807244,521],[465658.44007783,4492775.107322333,521],[465640.138493011,4492760.755941217,521],[465630.566401257,4492772.630131262,521],[465631.166550455,4492773.093222067,521]]],[[[465654.411606742,4492768.995731646,521],[465652.879139985,4492770.746646535,521],[465656.018589837,4492773.208482799,521],[465657.542029893,4492771.312075795,521],[465654.411606742,4492768.995731646,521]]],[[[465659.600197498,4492775.713491628,517],[465660.675104342,4492774.204831425,517],[465657.946186055,4492771.661081654,517],[465656.546733833,4492773.62263329,517],[465658.44007783,4492775.107322333,517],[465659.600197498,4492775.713491628,517]]],[[[465649.537271162,4492791.187890836,521],[465647.39679292,4492789.673988407,521],[465644.716578751,4492793.335331409,521],[465646.97763378,4492794.808578194,521],[465649.537271162,4492791.187890836,521]]],[[[464499.604388398,4492481.341954336,599],[464488.034911723,4492473.787909642,599],[464485.010019474,4492478.945221009,599],[464496.276285683,4492486.230019365,599],[464499.604388398,4492481.341954336,599]]],[[[464580.642080102,4492505.440921802,584],[464572.101800897,4492525.391354267,584],[464586.025054626,4492532.723774759,584],[464594.987189056,4492512.590924049,584],[464580.642080102,4492505.440921802,584]]],[[[464693.022493524,4492544.521443433,570],[464699.169499396,4492546.196618619,570],[464700.15596169,4492541.98141899,570],[464694.109591044,4492540.305765766,570],[464693.022493524,4492544.521443433,570]]],[[[465281.279673993,4493033.80190391,504],[465297.378250832,4493015.883521018,504],[465286.059886703,4493005.711252901,504],[465269.275524273,4493023.312095828,504],[465281.279673993,4493033.80190391,504]]],[[[465385.083351386,4492918.237052622,513],[465379.310123784,4492931.9473603,513],[465377.66945057,4492936.21540531,513],[465376.409211069,4492935.72002746,513],[465370.298224014,4492952.539479559,513],[465391.466231661,4492960.009749924,513],[465397.483136769,4492944.594202964,513],[465400.202550859,4492945.082815646,513],[465406.706381956,4492926.156395077,513],[465385.083351386,4492918.237052622,513]]],[[[465390.305844803,4492970.190001722,509],[465408.447369718,4492976.070426315,509],[465410.574945928,4492968.291580333,509],[465412.892052429,4492968.832183881,509],[465415.172675851,4492961.503724958,509],[465395.717779748,4492954.526667994,509],[465390.305844803,4492970.190001722,509]]],[[[465381.393559813,4492991.883934619,508],[465398.449757642,4492999.09087495,508],[465406.140788318,4492977.943671838,508],[465388.359357306,4492971.590432465,508],[465381.393559813,4492991.883934619,508]]],[[[465403.24120304,4493003.699948132,508],[465376.667419189,4492989.327873806,508],[465370.148329049,4493002.770861792,508],[465397.2649327,4493017.020075476,508],[465403.24120304,4493003.699948132,508]]],[[[465390.584368113,4493032.535456774,506],[465365.02051162,4493010.249514862,506],[465353.564486525,4493024.587529322,506],[465378.822712383,4493046.072856346,506],[465390.584368113,4493032.535456774,506]]],[[[465372.614047424,4493043.565502825,504],[465362.509553762,4493034.710745743,504],[465353.900479532,4493044.494444842,504],[465364.244438022,4493052.90699392,504],[465372.614047424,4493043.565502825,504]]],[[[465374.833983034,4493062.200552352,504],[465383.364047159,4493052.738047509,504],[465372.614047424,4493043.565502825,504],[465364.648825683,4493053.306091642,504],[465374.833983034,4493062.200552352,504]]],[[[465344.68488885,4493055.133031721,504],[465354.483618295,4493063.157137902,504],[465362.791335599,4493053.495155346,504],[465352.990973068,4493045.120181658,504],[465344.68488885,4493055.133031721,504]]],[[[465340.398716871,4493032.20710098,507],[465352.685637111,4493042.936281465,507],[465361.176187789,4493033.634301001,507],[465349.698044902,4493023.70329024,507],[465347.013776841,4493026.442402078,507],[465345.923227507,4493025.645514625,507],[465340.398716871,4493032.20710098,507]]],[[[465332.255042791,4493043.963472745,507],[465343.519709927,4493053.434299936,507],[465352.029618549,4493043.971841409,507],[465340.407380918,4493033.349843639,507],[465332.255042791,4493043.963472745,507]]],[[[465353.883554881,4493063.96187454,505],[465350.801029016,4493061.119246328,505],[465345.895006148,4493066.505074364,505],[465348.877133264,4493069.398286694,505],[465353.883554881,4493063.96187454,505]]],[[[465340.543298712,4493103.175591744,501],[465345.756525016,4493107.602166343,501],[465353.803937477,4493098.242168978,501],[465348.652485046,4493094.116026152,501],[465340.543298712,4493103.175591744,501]]],[[[465566.775639853,4492768.056978042,524],[465553.142932114,4492779.748626347,524],[465570.045744368,4492796.271555465,524],[465582.620003369,4492782.018513575,524],[465566.775639853,4492768.056978042,524]]],[[[465535.880195334,4492803.834673155,518],[465533.926748612,4492799.242353431,518],[465529.044230726,4492801.069361757,518],[465530.816537357,4492805.66251608,518],[465535.880195334,4492803.834673155,518]]],[[[465614.150418353,4492793.100815039,520],[465574.104078416,4492803.390425134,520],[465577.22961552,4492817.731376896,520],[465617.609002013,4492809.846196199,520],[465614.150418353,4492793.100815039,520]]],[[[465493.518848538,4492820.215779079,516],[465485.201883774,4492817.096475338,516],[465472.964438946,4492836.29985842,516],[465473.931469639,4492837.229536812,516],[465486.155648858,4492844.880468736,516],[465497.485513151,4492827.084392291,516],[465491.421287955,4492823.633876086,516],[465493.518848538,4492820.215779079,516]]],[[[465472.103512132,4492835.472185763,516],[465455.75183438,4492851.066062194,516],[465467.220272258,4492863.222980293,516],[465483.809294619,4492846.72583697,516],[465472.103512132,4492835.472185763,516]]],[[[465547.75899027,4492882.036980647,512],[465552.6414594,4492880.210003713,512],[465550.68929241,4492875.88838545,512],[465545.626513392,4492877.896640502,512],[465547.75899027,4492882.036980647,512]]],[[[465444.566864282,4492901.941938255,508],[465449.960042598,4492903.921874431,508],[465454.725692384,4492889.915500549,508],[465452.306770322,4492889.124734507,508],[465449.474460053,4492896.856790466,508],[465446.803259204,4492895.916826528,508],[465444.566864282,4492901.941938255,508]]],[[[465407.741649488,4492910.689708981,513],[465405.756873828,4492916.713654273,513],[465410.354305454,4492918.536855184,513],[465409.346480498,4492921.750638564,512],[465407.180897343,4492928.656322453,512],[465422.998281186,4492934.07403177,512],[465426.978566168,4492935.437351254,509.446159554],[465432.8232,4492937.4393,509],[465432.823217547,4492937.439249896,509.000000348],[465432.823219824,4492937.439250675,509],[465433.035539882,4492936.832974956,509],[465437.3523,4492924.5067,509],[465438.414883608,4492924.833925175,509],[465438.890218327,4492924.980322781,509],[465442.99589781,4492926.244826352,509],[465445.431309185,4492918.65883518,509],[465447.743230081,4492911.457511421,510.886987351],[465449.1069,4492907.2099,512],[465438.482879542,4492903.355467257,512],[465432.79780862,4492901.292872814,512],[465425.316867552,4492898.578734121,513],[465426.747407294,4492894.562267512,513],[465419.329992762,4492892.270941542,513],[465418.059726754,4492896.126274392,513],[465416.285973078,4492895.573120084,513],[465410.965264707,4492911.396530524,513],[465407.741649488,4492910.689708981,513]],[[465425.415637701,4492927.21941191,512],[465427.145151312,4492922.315234012,509.585072669],[465427.032237714,4492922.63541057,509.332946227],[465422.998281186,4492934.07403177,509],[465425.415637701,4492927.21941191,512]],[[465411.387877399,4492915.725184802,512],[465426.114653952,4492920.70594426,513],[465426.970937183,4492920.995550418,510.5],[465411.387877399,4492915.725184802,512]]],[[[465399.6860337,4492953.054706276,512],[465414.955376525,4492958.046277397,512],[465420.211311203,4492941.280961913,512],[465404.489089091,4492936.291468694,512],[465399.6860337,4492953.054706276,512]]],[[[465365.64899318,4493072.92916533,504],[465373.807162713,4493063.568633107,504],[465363.045474294,4493054.045316358,504],[465355.140748187,4493063.805669953,504],[465365.64899318,4493072.92916533,504]]],[[[465364.175370357,4493267.542605956,497],[465383.282741373,4493273.528505958,497],[465388.867489146,4493253.95558945,497],[465369.701650104,4493248.390943494,497],[465364.175370357,4493267.542605956,497]]],[[[465368.679122178,4493296.915633184,497],[465379.373525611,4493281.178319222,497],[465364.477309167,4493269.719774224,497],[465352.723528923,4493284.860610084,497],[465368.679122178,4493296.915633184,497]]],[[[465380.530984833,4493281.223067372,494],[465369.537021425,4493297.462973267,494],[465384.125243442,4493307.619788831,494],[465394.863002013,4493290.378708656,494],[465380.530984833,4493281.223067372,494]]],[[[465383.71539001,4493315.987559077,494],[465379.137822495,4493311.888926073,494],[465376.410360661,4493316.141753404,494],[465381.527409676,4493319.395860163,494],[465383.71539001,4493315.987559077,494]]],[[[465360.001503565,4493362.657708326,498],[465352.668343932,4493378.40933936,498],[465381.831667397,4493391.625816013,498],[465389.648071234,4493375.912095519,498],[465360.001503565,4493362.657708326,498]]],[[[465401.9092592,4493399.307882245,496],[465404.398660753,4493393.632817433,496],[465402.130836256,4493392.841422261,496],[465407.216318571,4493382.793897693,496],[465391.736815411,4493375.698583133,496],[465384.919218472,4493391.969006566,496],[465401.9092592,4493399.307882245,496]]],[[[465343.743530732,4493402.448101726,497],[465340.078317371,4493411.10003448,497],[465348.540609797,4493414.815366948,497],[465357.806909734,4493418.801930581,497],[465360.515461835,4493412.654723858,497],[465357.692701994,4493411.545156484,497],[465362.760779345,4493402.099141455,497],[465363.929725578,4493402.454574141,497],[465370.507241196,4493388.671204639,497],[465352.193342743,4493380.135665134,497],[465345.697472317,4493394.159261824,497],[465347.029100161,4493394.874797863,497],[465343.743530732,4493402.448101726,497]]],[[[465396.515850719,4493407.878471996,496],[465382.5205806,4493401.848874494,496],[465380.129545359,4493407.03231247,496],[465393.924856747,4493413.34349825,496],[465396.515850719,4493407.878471996,496]]],[[[465396.737794493,4493416.412615636,493],[465382.33956863,4493410.284655958,493],[465380.547550238,4493414.442869933,493],[465379.337658147,4493413.937266774,493],[465375.480541008,4493421.954241306,493],[465390.849508009,4493429.100109538,493],[465396.737794493,4493416.412615636,493]]],[[[465363.851112073,4493422.915580297,496],[465359.413537516,4493420.781051889,496],[465355.471614179,4493427.866202534,496],[465359.959266132,4493429.950374557,496],[465363.851112073,4493422.915580297,496]]],[[[465328.245688046,4493248.713841551,498],[465333.980833254,4493248.536823232,498],[465334.126884971,4493247.483611363,498],[465339.710622128,4493247.207059856,498],[465339.916304802,4493248.158395974,498],[465350.934465265,4493247.956843804,498],[465351.456520692,4493230.362059843,498],[465337.671500177,4493230.676709892,498],[465337.610937742,4493228.471678502,498],[465334.391504862,4493228.637002203,498],[465334.450670686,4493230.541315585,498],[465328.161352753,4493230.57054746,498],[465328.245688046,4493248.713841551,498]]],[[[465364.192430627,4493269.049482652,499],[465352.561653243,4493260.843639552,499],[465340.635649951,4493275.734710298,499],[465351.947759356,4493284.663732122,499],[465364.192430627,4493269.049482652,499]]],[[[465340.561272431,4493353.390843698,498],[465333.02567857,4493368.882831586,498],[465349.908673186,4493376.983930932,498],[465358.105081896,4493360.76718197,498],[465340.561272431,4493353.390843698,498]]],[[[465310.245194568,4493575.105808106,487],[465307.785918771,4493578.575419019,487],[465306.425810906,4493578.220893069,487],[465301.140231191,4493594.946927412,487],[465313.718079923,4493599.178546663,487],[465315.861491779,4493594.86642372,487],[465317.524307662,4493595.399968789,487],[465323.159931948,4493580.368327248,487],[465310.245194568,4493575.105808106,487]]],[[[465384.545868702,4493443.353237458,493],[465389.694086768,4493433.826717946,493],[465371.846088073,4493425.910502624,493],[465367.001441632,4493435.796494614,493],[465384.545868702,4493443.353237458,493]]],[[[465355.486598441,4493453.721514598,493],[465357.270473361,4493454.314659781,493],[465374.296385497,4493462.215580641,493],[465381.176489072,4493448.591306555,493],[465380.955822659,4493446.577535404,493],[465377.840471801,4493445.298918107,493],[465377.360257897,4493445.902578865,493],[465376.301170344,4493445.366206775,493],[465377.462862754,4493441.992796188,493],[465363.395479827,4493435.592714107,493],[465355.482408108,4493452.819387514,493],[465355.486598441,4493453.721514598,493]]],[[[465372.464601638,4493464.126609075,493],[465356.403723019,4493456.407655503,493],[465357.270473361,4493454.314659781,493],[465355.486598439,4493453.721514598,493],[465355.482408106,4493452.819387514,493],[465354.181537931,4493452.223999006,493],[465346.30826778,4493468.659579595,493],[465365.937137554,4493477.839440351,493],[465372.464601638,4493464.126609075,493]]],[[[465309.554214178,4493601.68333527,489],[465310.329602441,4493599.335141584,489],[465300.762031584,4493596.022883006,489],[465294.089107873,4493615.006987476,489],[465306.930880325,4493619.738536872,489],[465312.539418151,4493602.748979846,489],[465309.554214178,4493601.68333527,489]]],[[[465177.609411576,4493655.604276222,493],[465183.662918239,4493650.403842937,493],[465180.911922136,4493647.409607848,493],[465175.061159436,4493652.929853553,493],[465177.609411576,4493655.604276222,493]]],[[[465210.268681932,4493697.216675858,488],[465220.667129755,4493674.314497673,488],[465203.242417977,4493666.457112722,488],[465192.786725906,4493690.021160523,488],[465210.268681932,4493697.216675858,488]]],[[[465224.976221472,4493705.026571909,486],[465206.160465923,4493696.634429176,486],[465199.228678724,4493712.002755639,486],[465218.287580514,4493720.754575158,486],[465224.976221472,4493705.026571909,486]]],[[[465177.610871686,4493715.541724592,488],[465192.431859353,4493721.787342485,488],[465198.39858104,4493706.624002976,488],[465183.07585849,4493700.681408262,488],[465177.610871686,4493715.541724592,488]]],[[[465196.525586866,4493727.892590825,484],[465210.27136975,4493737.809542649,484],[465219.51468293,4493724.958719837,484],[465214.547790219,4493721.493709237,484],[465213.526490248,4493722.581010375,484],[465204.927923672,4493717.148292283,484],[465204.328116706,4493717.993064829,484],[465200.634949561,4493715.785079099,484],[465193.617838453,4493725.801228156,484],[465196.525586866,4493727.892590825,484]]],[[[465230.020254846,4493729.353062379,482],[465218.351273393,4493740.884356201,482],[465218.712332793,4493742.787131357,482],[465208.563007398,4493756.516492548,480],[465228.30143666,4493770.757955415,480],[465229.753209572,4493769.197554921,480],[465227.279796282,4493767.454986259,480],[465235.369893239,4493754.487028522,480],[465245.366235131,4493740.307357706,482],[465241.074608382,4493737.069729986,482],[465243.029034852,4493735.406747757,482],[465233.087367967,4493728.93782417,482],[465231.786753601,4493730.547644964,482],[465230.020254846,4493729.353062379,482]]],[[[465235.069263121,4493776.339522281,480],[465218.266894818,4493765.943382773,480],[465216.318559244,4493768.909382891,480],[465219.698272117,4493770.798072371,480],[465213.858882534,4493780.898847868,480],[465227.080046033,4493789.357089682,480],[465235.069263121,4493776.339522281,480]]],[[[465295.713770926,4493810.50746406,490],[465301.168716004,4493804.267586222,490],[465292.430217311,4493796.840824741,490],[465287.025817926,4493803.130596821,490],[465295.713770926,4493810.50746406,490]]]]}",
| "households": 151,
| "id": "1878781576287436801",
| "maxDepth": 1.86,
| "maxRaininess": 65.2,
| "maxVelocity": 7.0,
| "population": 349,
| "property": 5088.0,
| "raininess": 0.0,
| "room": 424,
| "taskId": "1878767214615695362",
| "time": "2023-08-01 01:50:00",
| "timeId": 299,
| "updateTime": null,
| "warningLevel": null,
| "zoneArea": 0,
| "zoneId": 0
| }
| },
| "decryptFlag": false,
| "message": "success",
| "status": 200
| }
|
|