<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <dspl targetNamespace="http://www.google.com/publicdata/dataset/google/unit" xmlns="http://schemas.google.com/dspl/2010" xmlns:entity="http://www.google.com/publicdata/dataset/google/entity"> <import namespace="http://www.google.com/publicdata/dataset/google/entity"/> <info> <name> <value xml:lang="en">Unit concepts</value> </name> <description> <value xml:lang="en">Concepts for to representing units.</value> </description> <url> <value xml:lang="en">http://code.google.com/apis/publicdata/docs/canonical/unit.html</value> </url> </info> <provider> <name> <value xml:lang="en">Google Inc.</value> </name> <description> <value xml:lang="en">Google Inc.</value> </description> <url> <value xml:lang="en">http://www.google.com</value> </url> </provider> <concepts> <concept id="unit" extends="entity:entity"> <info> <name> <value xml:lang="en">Unit</value> </name> <description> <value xml:lang="en"> Specifies the unit associated with a metric concept. Example: <![CDATA[<concept id="area_unit" extends="unit:unit"> <info> <name> <value>Area in square kilometers</value> </name> </info> <table ref="area_unit_table"/> </concept>]]> The table contains a single row that contains the property values: symbol,symbol_position,unit_text km²,END,square kilometers One can then use this unit in defining a metric concept: <![CDATA[<concept id="country_area" extends="quantity:magnitude"> <info> <name> <value>Country area in square kilometers</value> </name> </info> <attribute id="unit" concept="area_unit"/> <table ref="country_area_table"/> </concept>]]> </value> </description> </info> <property id="symbol"> <info> <name> <value xml:lang="en">The symbol associated with a unit.</value> </name> </info> <type ref="string"/> </property> <property concept="symbol_position"/> <property id="unit_text"> <info> <name> <value xml:lang="en">Unit text</value> </name> <description> <value xml:lang="en"> Descriptive text that can be displayed next to a value.</value> </description> </info> <type ref="string"/> </property> </concept> <concept id="symbol_position"> <info> <name> <value xml:lang="en">Unit symbol position</value> </name> <description> <value xml:lang="en">Unit symbol position</value> </description> </info> <type ref="string"/> <defaultValue>END</defaultValue> <table ref="unit_symbol_position_table"/> </concept> <concept id="currency" extends="unit"> <info> <name> <value xml:lang="en">Currency unit</value> </name> <description> <value xml:lang="en"> Specifies the currency associated with a metric concept. Each currency is identified by its 3-letter currency code (ISO 4217). </value> </description> </info> <table ref="currency_table"/> </concept> </concepts> <tables> <table id="unit_symbol_position_table"> <column id="symbol_position" type="string"/> <data> <file format="csv" encoding="utf-8">unit_symbol_positions.csv</file> </data> </table> <table id="currency_table"> <column id="currency" type="string"/> <column id="unit_text" type="string"/> <column id="symbol" type="string"/> <column id="symbol_position" type="string"> <value>START</value> </column> <data> <file format="csv" encoding="utf-8">currencies.csv</file> </data> </table> </tables> </dspl>
unit.xml
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-06-26 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-06-26 UTC."],[[["This document defines concepts for representing units within a data structure, specifying how units are associated with metrics."],["The `unit` concept details properties like `symbol`, `symbol_position`, and `unit_text` to describe a unit's representation."],["The `symbol_position` concept determines where the unit symbol appears relative to the value, with \"END\" being the default position."],["The `currency` concept is a specialized `unit` concept used for monetary values, identified by a three-letter ISO 4217 code."],["Tables `unit_symbol_position_table` and `currency_table` provide structured data for unit symbol positions and currency information respectively, in a csv format."]]],["This document defines concepts for representing units within a dataset. The core concept, \"unit,\" specifies a metric's unit and includes properties like \"symbol,\" \"symbol_position,\" and \"unit_text.\" A specific \"area_unit\" example is provided, demonstrating how to define a unit, including its symbol (km²) and textual representation (square kilometers). The \"currency\" concept, a subtype of \"unit,\" identifies currencies using ISO 4217 codes and associated symbols. Tables are used to structure and store unit data.\n"]]