<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <dspl targetNamespace="http://www.google.com/publicdata/dataset/google/geo" 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">Geographical concepts</value> </name> <description> <value xml:lang="en">Canonical concepts for geographical data.</value> </description> <url> <value xml:lang="en">http://code.google.com/apis/publicdata/docs/canonical/geo.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="location" extends="entity:entity"> <info> <name><value xml:lang="en">Location</value></name> <description> <value xml:lang="en">Base concept for locations.</value> </description> </info> <property id="latitude"> <info> <name> <value xml:lang="en">Latitude</value> </name> </info> <type ref="float"/> </property> <property id="longitude"> <info> <name> <value xml:lang="en">Longitude</value> </name> </info> <type ref="float"/> </property> </concept> <concept id="country" extends="location"> <info> <name> <value xml:lang="en">Country or Territory</value> </name> <description> <value xml:lang="en">A country or territory, identified by its ISO-3166-1 2-letter code.</value> </description> <pluralName> <value xml:lang="en">Countries</value> </pluralName> <totalName> <value xml:lang="en">World</value> </totalName> </info> <table ref="countries_table"/> </concept> </concepts> <tables> <table id="countries_table"> <column id="country" type="string"/> <column id="latitude" type="float"/> <column id="longitude" type="float"/> <column id="name" type="string"/> <data> <file format="csv" encoding="utf-8">countries.csv</file> </data> </table> </tables> </dspl>
geo.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."],[[["\u003cp\u003eThis document defines geographical concepts for data, including a base "location" concept with latitude and longitude properties.\u003c/p\u003e\n"],["\u003cp\u003eIt introduces a "country" concept, identified by ISO-3166-1 2-letter codes, extending the "location" concept.\u003c/p\u003e\n"],["\u003cp\u003eCountries are further detailed in a separate "countries_table" containing country codes, latitude, longitude, and names, stored in a CSV file.\u003c/p\u003e\n"],["\u003cp\u003eThe data is provided by Google Inc.and aims to establish canonical concepts for geographical data.\u003c/p\u003e\n"]]],["This document defines geographical concepts within a dataset. It establishes a base \"location\" concept with latitude and longitude properties, and extends it to a \"country\" concept. Countries are identified by their ISO-3166-1 2-letter code and are detailed in the \"countries_table\". The table includes columns for country code, latitude, longitude, and name, with data provided in the `countries.csv` file. The dataset is provided by Google Inc. and contains geographical data.\n"],null,["# geo.xml\n\n```python\n\u003c?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\" ?\u003e\n\u003cdspl targetNamespace=\"http://www.google.com/publicdata/dataset/google/geo\"\n xmlns=\"http://schemas.google.com/dspl/2010\"\n xmlns:entity=\"http://www.google.com/publicdata/dataset/google/entity\"\u003e\n\n \u003cimport namespace=\"http://www.google.com/publicdata/dataset/google/entity\"/\u003e\n\n \u003cinfo\u003e\n \u003cname\u003e\n \u003cvalue xml:lang=\"en\"\u003eGeographical concepts\u003c/value\u003e\n \u003c/name\u003e\n \u003cdescription\u003e\n \u003cvalue xml:lang=\"en\"\u003eCanonical concepts for geographical data.\u003c/value\u003e\n \u003c/description\u003e\n \u003curl\u003e\n \u003cvalue xml:lang=\"en\"\u003ehttp://code.google.com/apis/publicdata/docs/canonical/geo.html\u003c/value\u003e\n \u003c/url\u003e\n \u003c/info\u003e\n\n \u003cprovider\u003e\n \u003cname\u003e\n \u003cvalue xml:lang=\"en\"\u003eGoogle Inc.\u003c/value\u003e\n \u003c/name\u003e\n \u003cdescription\u003e\n \u003cvalue xml:lang=\"en\"\u003eGoogle Inc.\u003c/value\u003e\n \u003c/description\u003e\n \u003curl\u003e\n \u003cvalue xml:lang=\"en\"\u003ehttp://www.google.com\u003c/value\u003e\n \u003c/url\u003e\n \u003c/provider\u003e\n\n \u003cconcepts\u003e\n \u003cconcept id=\"location\" extends=\"entity:entity\"\u003e\n \u003cinfo\u003e\n \u003cname\u003e\u003cvalue xml:lang=\"en\"\u003eLocation\u003c/value\u003e\u003c/name\u003e\n \u003cdescription\u003e\n \u003cvalue xml:lang=\"en\"\u003eBase concept for locations.\u003c/value\u003e\n \u003c/description\u003e\n \u003c/info\u003e\n \u003cproperty id=\"latitude\"\u003e\n \u003cinfo\u003e\n \u003cname\u003e\n \u003cvalue xml:lang=\"en\"\u003eLatitude\u003c/value\u003e\n \u003c/name\u003e\n \u003c/info\u003e\n \u003ctype ref=\"float\"/\u003e\n \u003c/property\u003e\n \u003cproperty id=\"longitude\"\u003e\n \u003cinfo\u003e\n \u003cname\u003e\n \u003cvalue xml:lang=\"en\"\u003eLongitude\u003c/value\u003e\n \u003c/name\u003e\n \u003c/info\u003e\n \u003ctype ref=\"float\"/\u003e\n \u003c/property\u003e\n \u003c/concept\u003e\n\n \u003cconcept id=\"country\" extends=\"location\"\u003e\n \u003cinfo\u003e\n \u003cname\u003e\n \u003cvalue xml:lang=\"en\"\u003eCountry or Territory\u003c/value\u003e\n \u003c/name\u003e\n \u003cdescription\u003e\n \u003cvalue xml:lang=\"en\"\u003eA country or territory, identified by its ISO-3166-1 2-letter code.\u003c/value\u003e\n \u003c/description\u003e\n \u003cpluralName\u003e\n \u003cvalue xml:lang=\"en\"\u003eCountries\u003c/value\u003e\n \u003c/pluralName\u003e\n \u003ctotalName\u003e\n \u003cvalue xml:lang=\"en\"\u003eWorld\u003c/value\u003e\n \u003c/totalName\u003e\n \u003c/info\u003e\n \u003ctable ref=\"countries_table\"/\u003e\n \u003c/concept\u003e\n \u003c/concepts\u003e\n\n \u003ctables\u003e\n \u003ctable id=\"countries_table\"\u003e\n \u003ccolumn id=\"country\" type=\"string\"/\u003e\n \u003ccolumn id=\"latitude\" type=\"float\"/\u003e\n \u003ccolumn id=\"longitude\" type=\"float\"/\u003e\n \u003ccolumn id=\"name\" type=\"string\"/\u003e\n \u003cdata\u003e\n \u003cfile format=\"csv\" encoding=\"utf-8\"\u003ecountries.csv\u003c/file\u003e\n \u003c/data\u003e\n \u003c/table\u003e\n \u003c/tables\u003e\n\u003c/dspl\u003e\n```"]]