using Oracle SDO as source I need to create lines that connect points from table PLANETS to their moons in table SATELLITES. Common key in tables is PLANET_NAME. Resulting lines a stored in Oracle SDO table for further use.
Example rows:
Table PLANETS PLANET_NAME PLANET_GEOM 'Jupiter' point_geometry 'Saturn' point_geometry Table SATELLITES SATELLITE_NAME PLANET_NAME SATELL_GEOM 'Io' 'Jupiter' point_geometry 'Europa' 'Jupiter' point_geometry 'Kallisto' 'Jupiter' point_geometry 'Titan' 'Saturn' point_geometry 'Rhea' 'Saturn' point_geometry 'Dione' 'Saturn' point_geometry etc. Table PLANET_SATELL_CONN PLANET SATELLITE CONN_GEOM 'Jupiter' 'Io' line_geometry 'Jupiter' 'Europa' line_geometry etc.
Any advice would be greatly appreciated !(Again, this would be easy to program in PL/SQL but I'd like to find a way to do it with FME ;-)
br, Esko