Skip to Main Content

Database Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Idea: SDO_UTIL.TO_GEOJSON() - Support LRS geometries

User_1871May 13 2022

I have a query that produces a LRS geometry (19c Live SQL):

select  
 SDO_LRS.CONVERT_TO_LRS_GEOM(sdo_geometry('LINESTRING(1 2,3 4)')) as shape
from
 dual

I want to convert that LRS to GeoJSON:

select  
 SDO_UTIL.TO_GEOJSON(SDO_LRS.CONVERT_TO_LRS_GEOM(sdo_geometry('LINESTRING(1 2,3 4)'))) as shape
from
 dual

But I get an error:

ORA-13199: LRS is not supported

Could the SDO_UTIL.TO_GEOJSON() function be enhanced so that it supports LRS geometries?
And SDO_UTIL.FROM_GEOJSON() too?

Comments
Post Details
Added on May 13 2022
8 comments
562 views