You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| proj:epsg| integer\|null |**REQUIRED.**[EPSG code](http://www.epsg-registry.org/) of the datasource |
40
+
| proj:epsg| integer\|null |[EPSG code](http://www.epsg-registry.org/) of the datasource |
34
41
| proj:wkt2| string\|null |[WKT2](http://docs.opengeospatial.org/is/12-063r5/12-063r5.html) string representing the Coordinate Reference System (CRS) that the `proj:geometry` and `proj:bbox` fields represent |
35
42
| proj:projjson|[PROJJSON Object](https://proj.org/specifications/projjson.html)\|null | PROJJSON object representing the Coordinate Reference System (CRS) that the `proj:geometry` and `proj:bbox` fields represent |
36
43
| proj:geometry|[GeoJSON Geometry Object](https://tools.ietf.org/html/rfc7946#section-3.1)| Defines the footprint of this Item. |
@@ -39,6 +46,21 @@ The `proj` prefix is short for "projection", and is not a reference to the PROJ/
39
46
| proj:shape|\[integer]| Number of pixels in Y and X directions for the default grid |
40
47
| proj:transform|\[number]| The affine transformation coefficients for the default grid |
41
48
49
+
At least one of the fields MUST be specified, but it is RECOMMENDED to provide more information as detailed in the
50
+
[Best Practices section](#best-practices) so that, for example, GDAL can read your data without issues.
51
+
52
+
Also, [version 1.0.0](https://github.com/stac-extensions/projection/releases/tag/v1.0.0) of this extension
53
+
required `proj:epsg` (either as integer or null) in Item Properties.
54
+
This is not required anymore, but it is still recommended to additionally provide an EPSG code whenever available.
55
+
56
+
Generally, it is preferrable to provide the projection information on the Asset level
57
+
as they are specific to assets and may not apply to all assets.
58
+
For example, if you provide a smaller and unlocated thumbnail, having the projection information in the Item Properties
59
+
would imply that the projection information also applies to the thumbnail if not specified otherwise in the asset.
60
+
You may want to add the EPSG code to the Item Properties though as this would provide an easy way to
61
+
filter for specific EPSG codes in an API.
62
+
In this case you could override the EPSG code for the thumbnail on the asset level.
63
+
42
64
### Additional Field Information
43
65
44
66
#### proj:epsg
@@ -48,7 +70,7 @@ A Coordinate Reference System (CRS) is the data reference system (sometimes call
0 commit comments