-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5cfba49
commit 38a3f8a
Showing
3 changed files
with
6 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -149,15 +149,9 @@ This library is used to build an Environmental Data Retrieval (EDR) API, serving | |
|
||
## TODOs | ||
Help is wanted in the following areas to fully implement the EDR spec: | ||
* See TODOs in code listing various small inconsistencies in the spec | ||
* In various places there could be more validation on content | ||
|
||
## License | ||
|
||
Apache License, Version 2.0 | ||
|
||
## Authors | ||
|
||
Members of the KNMI Data Platform team. Reachable at [email protected]. | ||
|
||
## Copyright | ||
|
||
Koninklijk Nederlands Meteorologisch Instituut (KNMI) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
from .base_model import EdrBaseModel | ||
|
||
|
||
# TODO According to req A.13 a collection has a CRS object, according to C.1 it is a string array | ||
# For now, this is unused | ||
class CRS(EdrBaseModel): | ||
name: str # # This MAY be an EPSG code | ||
name: str # This MAY be an EPSG code | ||
# TODO: Implement WKT (Well Known Text) validator | ||
wkt: str |