We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
GeozeroGeometry
Currently only geos::Geometry<'_> impl all funcs in GeozeroGeometry, other types like Ewkb will use the default impl in trait definition.
geos::Geometry<'_>
Ewkb
The default impls are as follows so we cannot get dims and srid for types like Ewkb:
dims
srid
fn dims(&self) -> CoordDimensions { CoordDimensions::xy() } /// SRID of geometry fn srid(&self) -> Option<i32> { None }
The text was updated successfully, but these errors were encountered:
And I need parse srid manually when do transform: https://github.com/datafuselabs/databend/pull/14615/files#diff-9be506d723a6d34b70933330d0e09aac81d43cb005f941978b94acad13cdb622R154
Sorry, something went wrong.
No branches or pull requests
Currently only
geos::Geometry<'_>
impl all funcs inGeozeroGeometry
, other types likeEwkb
will use the default impl in trait definition.The default impls are as follows so we cannot get
dims
andsrid
for types likeEwkb
:The text was updated successfully, but these errors were encountered: