Point: Difference between revisions
Jump to navigation
Jump to search
Created page with "A point is the most basic geometric object: it has a location but no size (no length, width, or area). In GeoJSON, a point looks like this: <code>{ "type": "Point", "coordinates": [102.0, 0.5] }</code> {{article end |seealso= * MultiPolygon * Polygon * GeoJSON }}" |
No edit summary |
||
| (4 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
A point is the most basic geometric object: it has a location but no size (no length, width, or area). | A point is the most basic geometric object: it has a location but no size (no length, width, or area). | ||
In GeoJSON, a point looks like this: | In [[GeoJSON]], a point looks like this: | ||
< | |||
<pre> | |||
{ | |||
}</ | "type": "Point", | ||
"coordinates": [102.0, 0.5] | |||
} | |||
</pre> | |||
{{article end | {{article end | ||
Latest revision as of 13:53, 15 July 2026
A point is the most basic geometric object: it has a location but no size (no length, width, or area).
In GeoJSON, a point looks like this:
{
"type": "Point",
"coordinates": [102.0, 0.5]
}