-
Notifications
You must be signed in to change notification settings - Fork 6
/
definitions.json
2044 lines (2044 loc) · 55.5 KB
/
definitions.json
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
[
{
"name": "aggregate",
"description": "Calculates a series of aggregations for a set of {@link Point} features within a set of {@link Polygon} features. Sum, average, count, min, max, and deviation are supported.",
"params": [
{
"title": "param",
"description": "a FeatureCollection of {@link Polygon} features",
"lineNumber": 5,
"type": {
"type": "NameExpression",
"name": "FeatureCollection"
},
"name": "polygons"
},
{
"title": "param",
"description": "a FeatureCollection of {@link Point} features",
"lineNumber": 6,
"type": {
"type": "NameExpression",
"name": "FeatureCollection"
},
"name": "points"
},
{
"title": "param",
"description": "an array of aggregation objects",
"lineNumber": 7,
"type": {
"type": "NameExpression",
"name": "Array"
},
"name": "aggregations"
}
]
},
{
"name": "along",
"description": "Takes a {@link LineString} feature and returns a {@link Point} feature at a specified distance along a line.",
"params": [
{
"title": "param",
"description": "a LineString feature",
"lineNumber": 5,
"type": {
"type": "NameExpression",
"name": "LineString"
},
"name": "line"
},
{
"title": "param",
"description": "distance along the line",
"lineNumber": 6,
"type": {
"type": "NameExpression",
"name": "Number"
},
"name": "distance"
},
{
"title": "param",
"description": "can be degrees, radians, miles, or kilometers",
"lineNumber": 7,
"type": {
"type": "OptionalType",
"expression": {
"type": "NameExpression",
"name": "String"
}
},
"name": "units",
"default": "miles"
}
]
},
{
"name": "area",
"description": "Takes a {@link GeoJSON} feature or {@link FeatureCollection} of any type and returns the area of that feature\nin square meters.",
"params": [
{
"title": "param",
"description": "a {@link Feature} or {@link FeatureCollection} of any type",
"lineNumber": 6,
"type": {
"type": "NameExpression",
"name": "GeoJSON"
},
"name": "input"
}
]
},
{
"name": "average",
"description": "Calculates the average value of a field for a set of {@link Point} features within a set of {@link Polygon} features.",
"params": [
{
"title": "param",
"description": "a FeatureCollection of {@link Polygon} features",
"lineNumber": 5,
"type": {
"type": "NameExpression",
"name": "FeatureCollection"
},
"name": "polygons"
},
{
"title": "param",
"description": "a FeatureCollection of {@link Point} features",
"lineNumber": 6,
"type": {
"type": "NameExpression",
"name": "FeatureCollection"
},
"name": "points"
},
{
"title": "param",
"description": "the field in the `points` features from which to pull values to average",
"lineNumber": 7,
"type": {
"type": "NameExpression",
"name": "string"
},
"name": "field"
},
{
"title": "param",
"description": "the field in the `polygons` FeatureCollection to put results of the averages",
"lineNumber": 8,
"type": {
"type": "NameExpression",
"name": "string"
},
"name": "outputField"
}
]
},
{
"name": "bboxPolygon",
"description": "Takes a bbox and returns the equivalent {@link Polygon} feature.",
"params": [
{
"title": "param",
"description": "an Array of bounding box coordinates in the form: ```[xLow, yLow, xHigh, yHigh]```",
"lineNumber": 5,
"type": {
"type": "TypeApplication",
"expression": {
"type": "NameExpression",
"name": "Array"
},
"applications": [
{
"type": "NameExpression",
"name": "number"
}
]
},
"name": "bbox"
}
]
},
{
"name": "bearing",
"description": "Takes two {@link Point} features and finds the bearing between them.",
"params": [
{
"title": "param",
"description": "starting Point",
"lineNumber": 5,
"type": {
"type": "NameExpression",
"name": "Point"
},
"name": "start"
},
{
"title": "param",
"description": "ending Point",
"lineNumber": 6,
"type": {
"type": "NameExpression",
"name": "Point"
},
"name": "end"
}
]
},
{
"name": "bezier",
"description": "Takes a {@link LineString} feature and returns a curved version of the line\nby applying a [Bezier spline](http://en.wikipedia.org/wiki/B%C3%A9zier_spline)\nalgorithm.\n\nThe bezier spline implementation is by [Leszek Rybicki](http://leszek.rybicki.cc/).",
"params": [
{
"title": "param",
"description": "the input LineString",
"lineNumber": 9,
"type": {
"type": "NameExpression",
"name": "LineString"
},
"name": "line"
},
{
"title": "param",
"description": "time in milliseconds between points",
"lineNumber": 10,
"type": {
"type": "OptionalType",
"expression": {
"type": "NameExpression",
"name": "number"
}
},
"name": "resolution",
"default": "10000"
},
{
"title": "param",
"description": "a measure of how curvy the path should be between splines",
"lineNumber": 11,
"type": {
"type": "OptionalType",
"expression": {
"type": "NameExpression",
"name": "number"
}
},
"name": "sharpness",
"default": "0.85"
}
]
},
{
"name": "buffer",
"description": "Calculates a buffer for a {@link Point}, {@link LineString}, or {@link Polygon} {@link Feature}/{@link FeatureCollection} for a given radius. Units supported are miles, kilometers, and degrees.",
"params": [
{
"title": "param",
"description": "a Feature or FeatureCollection of any type",
"lineNumber": 5,
"type": {
"type": "NameExpression",
"name": "FeatureCollection"
},
"name": "feature"
},
{
"title": "param",
"description": "distance to draw the buffer",
"lineNumber": 6,
"type": {
"type": "NameExpression",
"name": "Number"
},
"name": "distance"
},
{
"title": "param",
"description": "'miles' or 'kilometers'",
"lineNumber": 7,
"type": {
"type": "NameExpression",
"name": "String"
},
"name": "unit"
}
]
},
{
"name": "center",
"description": "Takes a {@link FeatureCollection} of any type and returns the absolute center point of all features.",
"params": [
{
"title": "param",
"description": "a FeatureCollection of any type",
"lineNumber": 5,
"type": {
"type": "NameExpression",
"name": "FeatureCollection"
},
"name": "features"
}
]
},
{
"name": "centroid",
"description": "Takes a {@link Feature} or {@link FeatureCollection} of any type and calculates the centroid using the arithmetic mean of all vertices.\nThis lessens the effect of small islands and artifacts when calculating\nthe centroid of a set of polygons.",
"params": [
{
"title": "param",
"description": "a {@link Feature} or FeatureCollection of any type",
"lineNumber": 7,
"type": {
"type": "NameExpression",
"name": "GeoJSON"
},
"name": "features"
}
]
},
{
"name": "combine",
"description": "Combines a {@link FeatureCollection} of {@link Point}, {@link LineString}, or {@link Polygon} features into {@link MultiPoint}, {@link MultiLineString}, or {@link MultiPolygon} features.",
"params": [
{
"title": "param",
"description": "a FeatureCollection of any type",
"lineNumber": 5,
"type": {
"type": "NameExpression",
"name": "FeatureCollection"
},
"name": "fc"
}
]
},
{
"name": "concave",
"description": "Takes a {@link FeatureCollection} of {@link Point} features and\nreturns a concave hull.\n\nInternally, this implements\na [Monotone chain algorithm](http://en.wikibooks.org/wiki/Algorithm_Implementation/Geometry/Convex_hull/Monotone_chain#JavaScript).",
"params": [
{
"title": "param",
"description": "a FeatureCollection of {@link Point} features",
"lineNumber": 9,
"type": {
"type": "NameExpression",
"name": "FeatureCollection"
},
"name": "points"
},
{
"title": "param",
"description": "the size of an edge necessary for part of the\nhull to become concave (in miles)",
"lineNumber": 10,
"type": {
"type": "NameExpression",
"name": "number"
},
"name": "maxEdge"
},
{
"title": "param",
"description": "used for maxEdge distance (miles or kilometers)",
"lineNumber": 12,
"type": {
"type": "NameExpression",
"name": "String"
},
"name": "units"
}
]
},
{
"name": "convex",
"description": "Takes any {@link GeoJSON} object and returns a\n[convex hull](http://en.wikipedia.org/wiki/Convex_hull) polygon.\n\nInternally this uses\nthe [convex-hull](https://github.com/mikolalysenko/convex-hull) module that\nimplements a [monotone chain hull](http://en.wikibooks.org/wiki/Algorithm_Implementation/Geometry/Convex_hull/Monotone_chain).",
"params": [
{
"title": "param",
"description": "any GeoJSON object",
"lineNumber": 10,
"type": {
"type": "NameExpression",
"name": "GeoJSON"
},
"name": "input"
}
]
},
{
"name": "count",
"description": "Takes a {@link FeatureCollection} of {@link Point} features and a {@link FeatureCollection} of {@link Polygon} features and calculates the number of points that fall within the set of polygons.",
"params": [
{
"title": "param",
"description": "a FeatureCollection of {@link Polygon} features",
"lineNumber": 5,
"type": {
"type": "NameExpression",
"name": "FeatureCollection"
},
"name": "polygons"
},
{
"title": "param",
"description": "a FeatureCollection of {@link Point} features",
"lineNumber": 6,
"type": {
"type": "NameExpression",
"name": "FeatureCollection"
},
"name": "points"
},
{
"title": "param",
"description": "a field to append to the attributes of the Polygon features representing Point counts",
"lineNumber": 7,
"type": {
"type": "NameExpression",
"name": "String"
},
"name": "countField"
}
]
},
{
"name": "destination",
"description": "Takes a {@link Point} feature and calculates the location of a destination point given a distance in degrees, radians, miles, or kilometers; and bearing in degrees. This uses the [Haversine formula](http://en.wikipedia.org/wiki/Haversine_formula) to account for global curvature.",
"params": [
{
"title": "param",
"description": "a Point feature at the starting point",
"lineNumber": 5,
"type": {
"type": "NameExpression",
"name": "Point"
},
"name": "start"
},
{
"title": "param",
"description": "distance from the starting point",
"lineNumber": 6,
"type": {
"type": "NameExpression",
"name": "Number"
},
"name": "distance"
},
{
"title": "param",
"description": "ranging from -180 to 180",
"lineNumber": 7,
"type": {
"type": "NameExpression",
"name": "Number"
},
"name": "bearing"
},
{
"title": "param",
"description": "miles, kilometers, degrees, or radians",
"lineNumber": 8,
"type": {
"type": "NameExpression",
"name": "String"
},
"name": "units"
}
]
},
{
"name": "deviation",
"description": "Calculates the standard deviation value of a field for points within a set of polygons.",
"params": [
{
"title": "param",
"description": "a FeatureCollection of {@link Polygon} features",
"lineNumber": 5,
"type": {
"type": "NameExpression",
"name": "FeatureCollection"
},
"name": "polygons"
},
{
"title": "param",
"description": "a FeatureCollection of {@link Point} features",
"lineNumber": 6,
"type": {
"type": "NameExpression",
"name": "FeatureCollection"
},
"name": "points"
},
{
"title": "param",
"description": "the field in `points` from which to aggregate",
"lineNumber": 7,
"type": {
"type": "NameExpression",
"name": "String"
},
"name": "inField"
},
{
"title": "param",
"description": "the field to append to `polygons` representing deviation",
"lineNumber": 8,
"type": {
"type": "NameExpression",
"name": "String"
},
"name": "outField"
}
]
},
{
"name": "distance",
"description": "Takes two {@link Point} features and calculates\nthe distance between them in degress, radians,\nmiles, or kilometers. This uses the\n[Haversine formula](http://en.wikipedia.org/wiki/Haversine_formula)\nto account for global curvature.",
"params": [
{
"title": "param",
"description": "origin point",
"lineNumber": 9,
"type": {
"type": "NameExpression",
"name": "Feature"
},
"name": "from"
},
{
"title": "param",
"description": "destination point",
"lineNumber": 10,
"type": {
"type": "NameExpression",
"name": "Feature"
},
"name": "to"
},
{
"title": "param",
"description": "can be degrees, radians, miles, or kilometers",
"lineNumber": 11,
"type": {
"type": "OptionalType",
"expression": {
"type": "NameExpression",
"name": "String"
}
},
"name": "units",
"default": "kilometers"
}
]
},
{
"name": "envelope",
"description": "Takes a {@link Feature} or {@link FeatureCollection} and returns a rectangular {@link Polygon} feature that encompasses all vertices.",
"params": [
{
"title": "param",
"description": "a FeatureCollection of any type",
"lineNumber": 5,
"type": {
"type": "NameExpression",
"name": "FeatureCollection"
},
"name": "fc"
}
]
},
{
"name": "erase",
"description": "Finds the difference between two polygons by clipping the second\npolygon from the first.",
"params": [
{
"title": "param",
"description": "input Polygon feaure",
"lineNumber": 6,
"type": {
"type": "NameExpression",
"name": "Polygon"
},
"name": "poly1"
},
{
"title": "param",
"description": "Polygon feature to erase from `poly1`",
"lineNumber": 7,
"type": {
"type": "NameExpression",
"name": "Polygon"
},
"name": "poly2"
}
]
},
{
"name": "explode",
"description": "Takes any {@link GeoJSON} object and return all positions as\na {@link FeatureCollection} of {@link Point} features.",
"params": [
{
"title": "param",
"description": "input features",
"lineNumber": 6,
"type": {
"type": "NameExpression",
"name": "GeoJSON"
},
"name": "input"
}
]
},
{
"name": "extent",
"description": "Takes any {@link GeoJSON} object, calculates the extent of all input features, and returns a bounding box.",
"params": [
{
"title": "param",
"description": "any valid GeoJSON Object",
"lineNumber": 5,
"type": {
"type": "NameExpression",
"name": "GeoJSON"
},
"name": "input"
}
]
},
{
"name": "featurecollection",
"description": "Takes one or more {@link Feature|Features} and creates a {@link FeatureCollection}",
"params": [
{
"title": "param",
"description": "input Features",
"lineNumber": 5,
"type": {
"type": "NameExpression",
"name": "Feature"
},
"name": "features"
}
]
},
{
"name": "filter",
"description": "Takes a {@link FeatureCollection} and filters it by a given property and value",
"params": [
{
"title": "param",
"description": "input FeatureCollection of any type",
"lineNumber": 5,
"type": {
"type": "NameExpression",
"name": "FeatureCollection"
},
"name": "features"
},
{
"title": "param",
"description": "the property on which to filter",
"lineNumber": 6,
"type": {
"type": "NameExpression",
"name": "String"
},
"name": "key"
},
{
"title": "param",
"description": "the value of that property on which to filter",
"lineNumber": 7,
"type": {
"type": "NameExpression",
"name": "String"
},
"name": "value"
}
]
},
{
"name": "flip",
"description": "Takes a {@link GeoJSON} object of any type and flips all of its coordinates\nfrom `[x, y]` to `[y, x]`.",
"params": [
{
"title": "param",
"description": "input GeoJSON object",
"lineNumber": 6,
"type": {
"type": "NameExpression",
"name": "GeoJSON"
},
"name": "input"
}
]
},
{
"name": "hexGrid",
"description": "Takes a bounding box and a cell size in degrees and returns a {@link FeatureCollection} of flat-topped\nhexagons ({@link Polygon} features) aligned in an \"odd-q\" vertical grid as\ndescribed in [Hexagonal Grids](http://www.redblobgames.com/grids/hexagons/)",
"params": [
{
"title": "param",
"description": "bounding box in [minX, minY, maxX, maxY] order",
"lineNumber": 7,
"type": {
"type": "TypeApplication",
"expression": {
"type": "NameExpression",
"name": "Array"
},
"applications": [
{
"type": "NameExpression",
"name": "number"
}
]
},
"name": "bbox"
},
{
"title": "param",
"description": "width of cell in specified units",
"lineNumber": 8,
"type": {
"type": "NameExpression",
"name": "Number"
},
"name": "cellWidth"
},
{
"title": "param",
"description": "used in calculating cellWidth ('miles' or 'kilometers')",
"lineNumber": 9,
"type": {
"type": "NameExpression",
"name": "String"
},
"name": "units"
}
]
},
{
"name": "inside",
"description": "Takes a {@link Point} feature and a {@link Polygon} feature and determines if the Point resides inside the Polygon. The Polygon can\nbe convex or concave. The function accepts any valid Polygon or {@link MultiPolygon}\nand accounts for holes.",
"params": [
{
"title": "param",
"description": "a Point feature",
"lineNumber": 7,
"type": {
"type": "NameExpression",
"name": "Point"
},
"name": "point"
},
{
"title": "param",
"description": "a Polygon feature",
"lineNumber": 8,
"type": {
"type": "NameExpression",
"name": "Polygon"
},
"name": "polygon"
}
]
},
{
"name": "intersect",
"description": "Takes two {@link Polygon} features and finds their intersection.",
"params": [
{
"title": "param",
"description": "the first Polygon",
"lineNumber": 5,
"type": {
"type": "NameExpression",
"name": "Polygon"
},
"name": "poly1"
},
{
"title": "param",
"description": "the second Polygon",
"lineNumber": 6,
"type": {
"type": "NameExpression",
"name": "Polygon"
},
"name": "poly2"
}
]
},
{
"name": "isolines",
"description": "Takes a {@link FeatureCollection} of {@link Point} features with z-values and an array of\nvalue breaks and generates [isolines](http://en.wikipedia.org/wiki/Isoline).",
"params": [
{
"title": "param",
"description": "a FeatureCollection of {@link Point} features",
"lineNumber": 6,
"type": {
"type": "NameExpression",
"name": "FeatureCollection"
},
"name": "points"
},
{
"title": "param",
"description": "the property name in `points` from which z-values will be pulled",
"lineNumber": 7,
"type": {
"type": "NameExpression",
"name": "string"
},
"name": "z"
},
{
"title": "param",
"description": "resolution of the underlying grid",
"lineNumber": 8,
"type": {
"type": "NameExpression",
"name": "number"
},
"name": "resolution"
},
{
"title": "param",
"description": "where to draw contours",
"lineNumber": 9,
"type": {
"type": "TypeApplication",
"expression": {
"type": "NameExpression",
"name": "Array"
},
"applications": [
{
"type": "NameExpression",
"name": "number"
}
]
},
"name": "breaks"
}
]
},
{
"name": "jenks",
"description": "Takes a {@FeatureCollection} of any type and returns an array of the [Jenks Natural breaks](http://en.wikipedia.org/wiki/Jenks_natural_breaks_optimization)\nfor a given property",
"params": [
{
"title": "param",
"description": "a FeatureCollection of any type",
"lineNumber": 4,
"type": {
"type": "NameExpression",
"name": "FeatureCollection"
},
"name": "input"
},
{
"title": "param",
"description": "the property in `input` on which to calculate Jenks natural breaks",
"lineNumber": 5,
"type": {
"type": "NameExpression",
"name": "string"
},
"name": "field"
},
{
"title": "param",
"description": "number of classes in which to group the data",
"lineNumber": 6,
"type": {
"type": "NameExpression",
"name": "number"
},
"name": "numberOfBreaks"
}
]
},
{
"name": "kinks",
"description": "Takes a {@link Polygon} feature and returns a {@link FeatureCollection} of {@link Point} features at all self-intersections.",
"params": [
{
"title": "param",
"description": "a Polygon feature",
"lineNumber": 5,
"type": {
"type": "NameExpression",
"name": "Polygon"
},
"name": "polygon"
}
]
},
{
"name": "lineDistance",
"description": "Takes a {@link LineString} feature and measures its length in the specified units.",
"params": [
{
"title": "param",
"description": "to measure",
"lineNumber": 5,
"type": {
"type": "NameExpression",
"name": "LineString"
},
"name": "Line"
},
{
"title": "param",
"description": "can be degrees, radians, miles, or kilometers",
"lineNumber": 6,
"type": {
"type": "OptionalType",
"expression": {
"type": "NameExpression",
"name": "String"
}
},
"name": "units",
"default": "miles"
}
]
},
{
"name": "lineSlice",
"description": "Slices a LineString at start and stop Points",
"params": [
{
"title": "param",
"description": "to start the slice",
"lineNumber": 5,
"type": {
"type": "NameExpression",
"name": "Point"
},
"name": "Point"
},
{
"title": "param",
"description": "to stop the slice",
"lineNumber": 6,
"type": {
"type": "NameExpression",
"name": "Point"
},
"name": "Point"
},
{
"title": "param",
"description": "to slice",
"lineNumber": 7,
"type": {
"type": "NameExpression",
"name": "LineString"
},
"name": "Line"
}
]
},
{
"name": "linestring",
"description": "Creates a {@link LineString} {@link Feature} based on a\ncoordinate array. Properties can be added optionally.",
"params": [
{
"title": "param",
"description": "an array of Positions",
"lineNumber": 6,
"type": {
"type": "TypeApplication",
"expression": {
"type": "NameExpression",
"name": "Array"
},
"applications": [
{
"type": "TypeApplication",
"expression": {
"type": "NameExpression",
"name": "Array"
},
"applications": [
{
"type": "NameExpression",
"name": "Number"
}
]
}
]
},
"name": "coordinates"
},
{
"title": "param",
"description": "an Object of key-value pairs to add as properties",
"lineNumber": 7,
"type": {
"type": "NameExpression",
"name": "Object"
},
"name": "properties"
}
]
},
{
"name": "max",
"description": "Calculates the maximum value of a field for a set of {@link Point} features within a set of {@link Polygon} features.",
"params": [
{
"title": "param",