Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
xml_script [2026/07/22 02:57]
hermann
xml_script [2026/07/22 20:27] (current)
hermann
Line 48: Line 48:
 Each element in the DTD corresponds directly to a piece of the underlying functor graph described in [[basic_data_flow|Basic Data Flow]]: Each element in the DTD corresponds directly to a piece of the underlying functor graph described in [[basic_data_flow|Basic Data Flow]]:
  
-  * ''​script''​ is the model as a whole â€” ​the root element, holding the model'​s own properties plus every top-level functor and container.+  * ''​script''​ is the model as a whole — the root element, holding the model'​s own properties plus every top-level functor and container.
   * ''​functor''​ is a single functor call, identified by its ''​name''​ attribute (such as ''​LoadMap''​). It holds its own properties, its input ports, and its output ports.   * ''​functor''​ is a single functor call, identified by its ''​name''​ attribute (such as ''​LoadMap''​). It holds its own properties, its input ports, and its output ports.
-  * ''​containerfunctor''​ is a functor that also holds nested functors and containers ​— ​the same element type can nest inside itself, since containers can be placed inside other containers. +  * ''​containerfunctor''​ is a functor that also holds nested functors and containers ​— the same element type can nest inside itself, since containers can be placed inside other containers. 
-  * ''​property''​ attaches metadata to whatever element contains it, as a ''​key''/''​value''​ pair. Keys are always written fully expanded ​— ​there is no property alias as in the [[ego_script|EGO Script]] format. +  * ''​property''​ attaches metadata to whatever element contains it, as a ''​key''/''​value''​ pair. Keys are always written fully expanded ​— there is no property alias as in the [[ego_script|EGO Script]] format. 
-  * ''​inputport''​ and ''​outputport''​ are a functor'​s connection points. An ''​outputport''​ declares an ''​id'';​ an ''​inputport''​ elsewhere in the document references that ''​id''​ through its own ''​peerid''​ attribute to form a connection ​— ​the XML equivalent of two functors sharing a variable name in EGO Script.+  * ''​inputport''​ and ''​outputport''​ are a functor'​s connection points. An ''​outputport''​ declares an ''​id'';​ an ''​inputport''​ elsewhere in the document references that ''​id''​ through its own ''​peerid''​ attribute to form a connection ​— the XML equivalent of two functors sharing a variable name in EGO Script.
   * ''​internalinputport''​ and ''​internaloutputport''​ work the same way, but connect a container to the functors nested inside it, rather than connecting two ordinary functors to each other.   * ''​internalinputport''​ and ''​internaloutputport''​ work the same way, but connect a container to the functors nested inside it, rather than connecting two ordinary functors to each other.
 +
 +The DTD defines no equivalent of EGO Script'​s abbreviated calculator syntax. Every functor in the Calculate family — ''​CalculateMap'',​ ''​CalculateLookupTableValues'',​ and the others — is represented the same way as any other container: its operands are connected through explicit ''​NumberMap''/''​NumberTable''/''​NumberValue''​ hook functors, as shown in the ''​CalculateMap''​ example below. See [[ego_script#​calculator_functor_shorthand|Calculator functor shorthand]] for the two syntactic forms EGO Script provides for this same underlying structure.
  
 ==== Example ==== ==== Example ====
Line 66: Line 68:
   <​property key="​dff.version"​ value="​8.12.0.20260626"​ />    <​property key="​dff.version"​ value="​8.12.0.20260626"​ /> 
   <​property key="​metadata.author"​ value="​Dinamica EGO Team" />    <​property key="​metadata.author"​ value="​Dinamica EGO Team" /> 
-  <​property key="​metadata.description"​ value="​This is an example of map algebra expression written in Dinamica’s Calculate Map functor. This functor also performs contextual image operation, such as edge detection filters using nbConvol expression."​ /> +  <​property key="​metadata.description"​ value="​This is an example of map algebra expression written in Dinamica’s Calculate Map functor. This functor also performs contextual image operation, such as edge detection filters using nbConvol expression."​ /> 
   <​property key="​metadata.organization"​ value="​CSR / UFMG" />    <​property key="​metadata.organization"​ value="​CSR / UFMG" /> 
   <​property key="​metadata.showproperties"​ value="​yes"​ />    <​property key="​metadata.showproperties"​ value="​yes"​ /> 
Line 125: Line 127:
 @version = 8.12.0.20260626 @version = 8.12.0.20260626
 @author = Dinamica EGO Team @author = Dinamica EGO Team
-@description = This is an example of map algebra expression written in Dinamica’s Calculate Map functor. This functor also performs contextual image operation, such as edge detection filters using nbConvol expression.+@description = This is an example of map algebra expression written in Dinamica’s Calculate Map functor. This functor also performs contextual image operation, such as edge detection filters using nbConvol expression.
 @organization = CSR / UFMG @organization = CSR / UFMG
 @showproperties = yes @showproperties = yes