Jurisdiction Geography
Resources
Common
Getting Started
Tools
Versions
Contribute
Drafts
Overview
purpose | The jurisdiction geography contains the boundaries of the jurisdiction. |
method | GET |
Parameters and filters
The jurisdiction geometry resource does not support any URL parameter or filter besides format selection.
Example
Example of the XML and JSON representations of the jurisdiction resource
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<open511
xmlns:gml="http://www.opengis.net/gml"
xml:lang="en"
xml:base="http://my.city.gov/open511/"
version="v1"
>
<geographies>
<geography>
<gml:Polygon srsName="urn:ogc:def:crs:EPSG::4326">
<gml:exterior>
<gml:LinearRing>
<gml:posList>45.743558682 -73.515580305 45.744177048 -73.516801183 45.74519912 -73.516754263 45.745477517 -73.516741494 45.746719115 -73.519189578 45.748003618 -73.519343022 45.748595939 -73.520130776 45.749015964 -73.520120827 45.750027519 -73.521934616 45.754234632 -73.529479504 45.777799543 -73.527583233 45.743558682 -73.515580305</gml:posList>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</geography>
</geographies>
</open511>
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
{
"meta": {
"version": "v1"
},
"geographies": [
{
"type": "Polygon",
"coordinates": [
[
[
-73.515580304999958,
45.743558682000106
],
[
-73.516801182999984,
45.744177048000076
],
[
-73.516754262999996,
45.745199120000088
],
[
-73.516741493999973,
45.745477517000076
],
[
-73.51918957800001,
45.746719115000111
],
[
-73.519343021999987,
45.748003618000077
],
[
-73.520130775999974,
45.748595939000076
],
[
-73.520120826999971,
45.749015964000108
],
[
-73.52193461600001,
45.750027519000106
],
[
-73.529479503999994,
45.754234632000113
],
[
-73.527583232999973,
45.777799543000107
],
[
-73.515580304999958,
45.743558682000106
]
]
]
}
]
}
Jurisdiction geometry data structure
Although the jurisdiction geography could have been integrated directly in the jurisdiction resource, this data can easily take several kilobytes or even megabytes for complex countries/states, so we include it as a separate resource.
Field | Type | Description |
---|---|---|
geography | Geospatial | Mandatory Boundaries of the jurisdiction; a Polygon or MultiPolygon. |