Add a "time" property to the City Objects? #125
hugoledoux
started this conversation in
Ideas
Replies: 1 comment
-
Uhm, I have some issues with the "time" property in ogc json-fg (or ogc features api) already. If I understand correctly, the purpose of the "time" property is to facilitate filtering on time.
For instance, I think the difference is negligible between these two for implementing a filter on "time". As property: {
"CityObjects": {
"id-1": {
"time": [...],
"attributes": {...}
}
}
} As attribute: {
"CityObjects": {
"id-1": {
"attributes": {
"time": [...]
}
}
}
} But I would not make it a mandatory property in any case. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
we could reuse somehow how they are doing it for the ogc json-fg
Beta Was this translation helpful? Give feedback.
All reactions