Unit |
List of UOM is created from ESG database with the following code :
SELECT
rpad(upper(regexp_replace(unit_of_meas_name,'[ ''\\(\\)-]+','_','g')), 16) || '(' ||
rpad('"' || unit_of_meas_name || '"', 32, ' ') || ', ' ||
uom_code::text || ', ' ||
rpad(upper(unit_of_meas_type), 6) || ', ' ||
rpad((coalesce(factor_b,0)/coalesce(factor_c,1))::text, 21, ' ') || ', ' ||
'"m"' || '),'
FROM epsg_unitofmeasure
WHERE deprecated = 0 AND unit_of_meas_type IN ('length','angle') AND uom_code > 9000
ORDER BY uom_code
Some handwriting reformatting/correction are necessary though
Some abbreviations have been found in http://w3.energistics.org/uom/poscUnits22.xml
|