-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Transformation Type #2
Comments
@bert where might this go? If the type specifically applies to " pixel_coords:{
"type": "TransformationType",
"value":[12, 12]
} |
If the type is put on the GeoJSON body, we would have to careful because GeoJSON already uses {
"type": ["Feature", "TransformationType"],
"properties": {
"pixel_coords": [
2840,
3153
]
},
"geometry": {
"type": "Point",
"coordinates": [
-78.137998,
39.217154
]
}
} or extend GeoJSON with something like {
"type": "Feature",
"transformation":"Type",
"properties": {
"pixel_coords": [
2840,
3153
]
},
"geometry": {
"type": "Point",
"coordinates": [
-78.137998,
39.217154
]
}
} I am more in favor of keeping our stuff as scoped as possible, so I would prefer going with something like in the previous comment where this new field/type are defined alongside the " |
What about something like: {
"body": {
"type": "FeatureCollection",
"transformationType": "polynomial",
"features": [
]
}
} |
Yes, that would work out. Is it always true that all Features will use the same transformationType as noted by the FeatureCollection? Here are the rules for foreign members : https://tools.ietf.org/html/rfc7946#section-6.1 I believe what you and I are suggesting follows all the rules. |
Our prototype is missing this information. What are some ways we can supply this information?
The text was updated successfully, but these errors were encountered: