This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Map Indexer ====== ===== Description ===== Builds a lookup table by pairing, cell by cell, the values of two maps: the values of one map become the table's keys, and the values of the other, at the same coordinates, become the corresponding values. ===== Inputs ===== ^ Name ^ Type ^ Description ^ | Key Map | [[Map Type]] | Map whose values become the keys of the resulting table. | | Value Map | [[Map Type]] | Map whose values become the values of the resulting table. | ===== Optional Inputs ===== None. ===== Outputs ===== ^ Name ^ Type ^ Description ^ | Key Value Table | [[Lookup Table Type]] | Table pairing each non-null cell value of Key Map with the value found at the same coordinates in Value Map. | ===== Group ===== [[Functor List#Map Algebra | Map Algebra]] ===== Notes ===== A cell whose value in Key Map is null is skipped. The topmost line and leftmost column of a map both have coordinate 1. ===== Internal Name ===== MapIndexer