diff --git a/Makefile.hoot b/Makefile.hoot index 36cf6212b5..478713d903 100644 --- a/Makefile.hoot +++ b/Makefile.hoot @@ -12,7 +12,7 @@ SHELL=/bin/bash .PHONY: clean-ccache HOOT_VERSION_FILE # This list is for manually rebuilding the schema files. The files have been commited to the main GitHub repo -SCHEMA_FILES= translations/tds71_schema.js translations/tds70_schema.js translations/tds61_schema.js translations/tds40_schema.js translations/mgcp_schema.js translations/mgcp_thematic_schema.js translations/ggdm30_schema.js translations/tds71_thematic_schema.js translations/tds71_full_schema.js translations/tds61_full_schema.js translations/tds70_full_schema.js translations/tds40_full_schema.js translations/ggdm30_full_schema.js translations/etds71_rules.js translations/etds70_rules.js translations/etds61_rules.js translations/etds40_rules.js translations/emgcp_rules.js translations/eggdm30_rules.js translations/etds71_osm_rules.js translations/etds61_osm_rules.js translations/etds40_osm_rules.js translations/emgcp_osm_rules.js translations/eggdm30_osm_rules.js translations/etds70_osm_rules.js +SCHEMA_FILES= translations/tds71_schema.js translations/tds70_schema.js translations/tds61_schema.js translations/tds40_schema.js translations/mgcp_schema.js translations/mgcp_thematic_schema.js translations/ggdm30_schema.js translations/tds71_thematic_schema.js translations/tds71_thematic_enum_schema.js translations/tds71_full_schema.js translations/tds61_full_schema.js translations/tds70_full_schema.js translations/tds40_full_schema.js translations/ggdm30_full_schema.js translations/etds71_rules.js translations/etds70_rules.js translations/etds61_rules.js translations/etds40_rules.js translations/emgcp_rules.js translations/eggdm30_rules.js translations/etds71_osm_rules.js translations/etds61_osm_rules.js translations/etds40_osm_rules.js translations/emgcp_osm_rules.js translations/eggdm30_osm_rules.js translations/etds70_osm_rules.js -include Makefile.inc @@ -213,6 +213,11 @@ translations/tds71_thematic_schema.js: scripts/schema/ConvertTDSv71Schema_XML.py mkdir -p $(@D) $< --thematic $(word 2,$^) > $@ || (rm -f $@ ; exit -1) +# TDSv71 thematic schema with all of the text enumerations is built from and XML file made from a sample FGDB +translations/tds71_thematic_enum_schema.js: scripts/schema/ConvertTDSv71Schema_XML.py conf/translations/TDSv71.xml.gz + mkdir -p $(@D) + $< --nocodedvalues --thematic $(word 2,$^) > $@ || (rm -f $@ ; exit -1) + # TDSv71 schema is built from an XML file made from a sample FGDB translations/tds71_schema.js: scripts/schema/ConvertTDSv71Schema_XML.py conf/translations/TDSv71.xml.gz mkdir -p $(@D) diff --git a/conf/core/ConfigOptions.asciidoc b/conf/core/ConfigOptions.asciidoc index 04b4c01c11..c09c2f553d 100644 --- a/conf/core/ConfigOptions.asciidoc +++ b/conf/core/ConfigOptions.asciidoc @@ -3639,6 +3639,14 @@ new file/layer. When exporting, remove all non-spec attributes from the features. I.e. Do a "clean" export. NOTE: This is destructive. It will drop data that is usually kept - OSMTAGS etc +=== ogr.coded.values + +* Data Type: bool +* Default Value: `true` + +When exporting, interpret all values to their coded value counterpart. When this value is false, +the value will be the human-readable value. + === ogr.compare.output * Data Type: bool diff --git a/hoot-core/src/main/cpp/hoot/core/io/OgrWriter.cpp b/hoot-core/src/main/cpp/hoot/core/io/OgrWriter.cpp index 4bc5a36325..711f1110f7 100644 --- a/hoot-core/src/main/cpp/hoot/core/io/OgrWriter.cpp +++ b/hoot-core/src/main/cpp/hoot/core/io/OgrWriter.cpp @@ -652,6 +652,9 @@ void OgrWriter::_addFeature(OGRLayer* layer, const std::shared_ptr& f, const QVariant& v = it.value(); QByteArray ba = it.key().toUtf8(); + //LOG_DEBUG("Current field: " << ba.constData()); + //LOG_DEBUG("Current value: " << v.toString()); + // If the field DOESN'T exist in the output layer, skip it. if (poFeature->GetFieldIndex(ba.constData()) == -1) { @@ -696,7 +699,6 @@ void OgrWriter::_addFeature(OGRLayer* layer, const std::shared_ptr& f, vba.truncate(fieldWidth); } - poFeature->SetField(ba.constData(), vba.constData()); break; } diff --git a/hoot-core/src/main/cpp/hoot/core/io/schema/StringFieldDefinition.h b/hoot-core/src/main/cpp/hoot/core/io/schema/StringFieldDefinition.h index 227f01d6fa..1373fe3934 100644 --- a/hoot-core/src/main/cpp/hoot/core/io/schema/StringFieldDefinition.h +++ b/hoot-core/src/main/cpp/hoot/core/io/schema/StringFieldDefinition.h @@ -22,7 +22,7 @@ * This will properly maintain the copyright information. Maxar * copyrights will be updated automatically. * - * @copyright Copyright (C) 2015, 2018, 2019, 2020, 2021 Maxar (http://www.maxar.com/) + * @copyright Copyright (C) 2015-2024 Maxar (http://www.maxar.com/) */ #ifndef STRINGFIELDDEFINITION_H #define STRINGFIELDDEFINITION_H @@ -45,11 +45,15 @@ class StringFieldDefinition : public FieldDefinition bool hasDefaultValue() const override; QString toString() const override; + void addEnumeratedValue(QString v) {_enumeratedValues.insert(v); } + bool hasEnumeratedValue(QString v) { return _enumeratedValues.find(v) != _enumeratedValues.end(); } + void setDefaultValue(const QString& v) { _defaultValue = v; } private: QString _defaultValue; + std::set _enumeratedValues; }; } diff --git a/hoot-js/src/main/cpp/hoot/js/schema/JavaScriptSchemaTranslator.cpp b/hoot-js/src/main/cpp/hoot/js/schema/JavaScriptSchemaTranslator.cpp index 4cc3814d60..02f3acc35a 100644 --- a/hoot-js/src/main/cpp/hoot/js/schema/JavaScriptSchemaTranslator.cpp +++ b/hoot-js/src/main/cpp/hoot/js/schema/JavaScriptSchemaTranslator.cpp @@ -349,6 +349,41 @@ void JavaScriptSchemaTranslator::_parseEnumerations(std::shared_ptr fd, const QVariant& enumerations) const +{ + if (enumerations.canConvert(QVariant::List) == false) + throw HootException("Expected enumerations to be an array of maps."); + + QVariantList vl = enumerations.toList(); + + for (const auto& variant : qAsConst(vl)) + { + if (variant.canConvert(QVariant::Map) == false) + throw HootException("Expected enumerations to be an array of maps."); + + QVariantMap vm = variant.toMap(); + if (vm["name"].canConvert(QVariant::String) == false) + throw HootException("Expected each enumeration map to contain a valid value."); + + QString v = vm["name"].toString(); + + if (fd->hasEnumeratedValue(v)) + { + if (logWarnCount < Log::getWarnMessageLimit()) + { + LOG_WARN("Enumerated value repeated in enumerations table: " << v); + } + else if (logWarnCount == Log::getWarnMessageLimit()) + { + LOG_WARN(className() << ": " << Log::LOG_WARN_LIMIT_REACHED_MESSAGE); + } + logWarnCount++; + } + else + fd->addEnumeratedValue(v); + } +} + void JavaScriptSchemaTranslator::_parseEnumerations(std::shared_ptr fd, const QVariant& enumerations) const { @@ -430,7 +465,7 @@ std::shared_ptr JavaScriptSchemaTranslator::_parseFieldDefiniti throw HootException("Error parsing type in column."); QString type = map["type"].toString().toLower(); - if (type == "string") + if (type == "string" || (type == "enumeration" && !ConfigOptions().getOgrCodedValues())) { std::shared_ptr fd = std::make_shared(); @@ -444,6 +479,10 @@ std::shared_ptr JavaScriptSchemaTranslator::_parseFieldDefiniti if (map.contains(MetadataTags::Length())) fd->setWidth(_toInt32(map[MetadataTags::Length()])); + if (map.contains("enumerations")) + { + _parseEnumerations(fd, map["enumerations"]); + } result = fd; } else if (type == "double" || type == "real") @@ -582,7 +621,6 @@ std::shared_ptr JavaScriptSchemaTranslator::_parseLayer(const QVariant& l std::shared_ptr fd = _parseFieldDefinition(variant); if (names.find(fd->getName()) != names.end()) throw HootException("Found multiple fields with the same name. (" + fd->getName() + ")"); - dfd->addField(fd); names.insert(fd->getName()); } diff --git a/hoot-js/src/main/cpp/hoot/js/schema/JavaScriptSchemaTranslator.h b/hoot-js/src/main/cpp/hoot/js/schema/JavaScriptSchemaTranslator.h index e1c50c80ff..9f8b6bd0a3 100644 --- a/hoot-js/src/main/cpp/hoot/js/schema/JavaScriptSchemaTranslator.h +++ b/hoot-js/src/main/cpp/hoot/js/schema/JavaScriptSchemaTranslator.h @@ -22,7 +22,7 @@ * This will properly maintain the copyright information. Maxar * copyrights will be updated automatically. * - * @copyright Copyright (C) 2015, 2016, 2017, 2018, 2019, 2021, 2022 Maxar (http://www.maxar.com/) + * @copyright Copyright (C) 2015-2024 Maxar (http://www.maxar.com/) */ #ifndef JAVASCRIPT_SCHEMA_TRANSLATOR_H @@ -45,6 +45,7 @@ namespace hoot class FieldDefinition; class Layer; +class StringFieldDefinition; class DoubleFieldDefinition; class IntegerFieldDefinition; class LongIntegerFieldDefinition; @@ -115,6 +116,7 @@ class JavaScriptSchemaTranslator : public ScriptSchemaTranslator, std::vector _createAllFeatures(const QVariantList& vm) const; std::shared_ptr _createFeature(const QVariantMap& vm, QString& tableName) const; + void _parseEnumerations(std::shared_ptr fd, const QVariant& enumerations) const; void _parseEnumerations(std::shared_ptr fd, const QVariant& enumerations) const; void _parseEnumerations(std::shared_ptr fd, const QVariant& enumerations) const; void _parseEnumerations(std::shared_ptr fd, const QVariant& enumerations) const; diff --git a/scripts/schema/ConvertTDSv71Schema_XML.py b/scripts/schema/ConvertTDSv71Schema_XML.py index f873be4420..0bf98706cb 100755 --- a/scripts/schema/ConvertTDSv71Schema_XML.py +++ b/scripts/schema/ConvertTDSv71Schema_XML.py @@ -118,6 +118,26 @@ def printJavascript(schema,withDefs): print '];' # End of schema # End printJavascript +# Modified printing function to print the Thematic Enum header +def printThematicEnumHeader(spec): + print + print "var _global = (0, eval)('this');" + print 'if (!_global.%s)' % (spec) + print '{' + print ' _global.%s = {};' % (spec) + print '}' + print + print '%s.thematicSchema = {' % (spec) + print 'getDbSchema: function()' + print '{' + +def printThematicEnumFooter(spec): + print ' return thematicSchema;' + print '} // End of getDbSchema' + print '} // End of %s.thematicSchema' % (spec) + print + print 'exports.getDbSchema = %s.thematicSchema.getDbSchema;' % (spec) + print # Modified printing function to print the Thematic Schema def printThematic(schema,spec): @@ -164,6 +184,64 @@ def printThematic(schema,spec): # print 'exports.getthematicSchema = %s.schema.getThematicSchema;' % (spec) print# End printThematic +# Modified printing function to print the Thematic Enum Schema +def printThematicEnum(schema, spec): + print 'var thematicSchema = [' # And so it begins... + + num_feat = len(schema.keys()) # How many features in the schema? + for f in sorted(schema.keys()): + # Skip all of the 'Table' features and features without geometry + if schema[f]['geom'] == 'Table' or schema[f]['geom'] == 'None': + continue + pString = ' {name:"%s",fcode:"%s",desc:"%s",geom:"%s",' % (f,schema[f]['fcode'],schema[f]['desc'],schema[f]['geom']); # name = geom + FCODE + if 'fdname' in schema[f]: + pString += 'fdname:"%s",' % (schema[f]['fdname']) + if 'thematic' in schema[f]: + pString += 'thematic:"%s",' % (schema[f]['thematic']) + + print pString + print ' columns:[' + + num_attrib = len(schema[f]['columns'].keys()) # How many attributes does the feature have? + for k in sorted(schema[f]['columns'].keys()): + if 'func' in schema[f]['columns'][k]: + if num_attrib > 1: # Are we at the last attribute? yes = no trailing comma + print ' {name:"%s",desc:"%s",optional:"%s",type:"%s",defValue:"%s",enumerations: %s},' % (k,schema[f]['columns'][k]['desc'],schema[f]['columns'][k]['optional'],schema[f]['columns'][k]['type'], schema[f]['columns'][k]['defValue'],schema[f]['columns'][k]['func']) + num_attrib -= 1 + else: + print ' {name:"%s",desc:"%s",optional:"%s",type:"%s",defValue:"%s",enumerations: %s}' % (k,schema[f]['columns'][k]['desc'],schema[f]['columns'][k]['optional'],schema[f]['columns'][k]['type'], schema[f]['columns'][k]['defValue'],schema[f]['columns'][k]['func']) + + elif schema[f]['columns'][k]['type'] == 'enumeration': + print ' {name:"%s",desc:"%s",optional:"%s",type:"enumeration",defValue:"%s",' % (k,schema[f]['columns'][k]['desc'],schema[f]['columns'][k]['optional'],schema[f]['columns'][k]['defValue']) + print ' enumerations:[' + num_enum = len(schema[f]['columns'][k]['enum']) # How many attributes does the feature have? + for l in schema[f]['columns'][k]['enum']: + if num_enum == 1: + print ' {name:"%s",value:"%s"}' % (l['name'],l['value']) + else: + print ' {name:"%s",value:"%s"},' % (l['name'],l['value']) + num_enum -= 1 + print ' ]' + if num_attrib == 1: # Are we at the last attribute? yes = no trailing comma + print ' }' + else: + print ' },' + num_attrib -= 1 + elif num_attrib == 1: # Are we at the last attribute? yes = no trailing comma + print ' {name:"%s",desc:"%s",optional:"%s",type:"%s",length:"%s",defValue:"%s"}' % (k,schema[f]['columns'][k]['desc'],schema[f]['columns'][k]['optional'],schema[f]['columns'][k]['type'],schema[f]['columns'][k]['length'],schema[f]['columns'][k]['defValue']) + else: + print ' {name:"%s",desc:"%s",optional:"%s",type:"%s",length:"%s",defValue:"%s"},' % (k,schema[f]['columns'][k]['desc'],schema[f]['columns'][k]['optional'],schema[f]['columns'][k]['type'],schema[f]['columns'][k]['length'],schema[f]['columns'][k]['defValue']) + num_attrib -= 1 + print ' ]' + + if num_feat == 1: + print ' }' + else: + print ' },' + num_feat -= 1 + print '] // End of %s.thematicSchema' % (spec) + print + # Go through the schema and pull out all of the attributes that are to be replaced with # functions @@ -326,17 +404,51 @@ def fixDefaults(): continue thematicSchema[feature]['columns'][field]['defValue'] = defList[aName] + thematicEnumSchema[feature]['columns'][field]['defValue'] = defList[aName] # Remove the default FCSUBTYPE from the thematic layers. This gets populated from the individual F_CODES thematicSchema[feature]['columns']['FCSUBTYPE']['defValue'] = '' + thematicEnumSchema[feature]['columns']['FCSUBTYPE']['defValue'] = '' thematicSchema['MaximumElevationSrf']['columns']['MAX_TERRAIN']['defValue'] = '-999999' thematicSchema['MaximumElevationSrf']['columns']['MAX_ELEVATION']['defValue'] = '-999999' thematicSchema['MaximumElevationSrf']['columns']['MEF_VALUE']['defValue'] = '-999999' + thematicEnumSchema['MaximumElevationSrf']['columns']['MAX_TERRAIN']['defValue'] = '-999999' + thematicEnumSchema['MaximumElevationSrf']['columns']['MAX_ELEVATION']['defValue'] = '-999999' + thematicEnumSchema['MaximumElevationSrf']['columns']['MEF_VALUE']['defValue'] = '-999999' + + # End fixDefaults +# Fixup the enumerations for enum types in the thematic enum schema +def fixEnums(): + enumList = {} + + for feature in schema: + for field in schema[feature]['columns']: + aName = schema[feature]['columns'][field]['name'] + + if aName in enumList: + continue + + if schema[feature]['columns'][field]['type'] == 'enumeration': + enumList[aName] = schema[feature]['columns'][field]['enum'] + + for feature in thematicEnumSchema: + for field in thematicEnumSchema[feature]['columns']: + aName = thematicEnumSchema[feature]['columns'][field]['name'] + + if aName not in enumList: + continue + + thematicEnumSchema[feature]['columns'][field]['type'] = 'enumeration' + thematicEnumSchema[feature]['columns'][field]['enum'] = [] + thematicEnumSchema[feature]['columns'][field]['enum'] = enumList[aName] + +# End fixEnums + # Setup handy lists geoList = {'C':'Line','Crv':'Line','S':'Area','Srf':'Area','P':'Point','Pnt':'Point','_':'None'} typList = {'esriFieldTypeDouble':'Real','esriFieldTypeString':'String','esriFieldTypeInteger':'Integer'} @@ -432,7 +544,7 @@ def testFeatures(xmlDoc,funcList,domList,namList,fSchema,tSchema): # Read all of the features in an XML document -def readFeatures(xmlDoc,funcList,domList,namList,tfList,fSchema,tSchema): +def readFeatures(xmlDoc,funcList,domList,namList,tfList,fSchema,tSchema,tESchema): # Setup handy lists geoList = {'C':'Line','Crv':'Line','S':'Area','Srf':'Area','P':'Point','Pnt':'Point','_':'None'} typList = {'esriFieldTypeDouble':'Real','xs:double':'Real','esriFieldTypeString':'String','xs:string':'String', @@ -468,11 +580,20 @@ def readFeatures(xmlDoc,funcList,domList,namList,tfList,fSchema,tSchema): tSchema[featureName]['fcList'] = [] tSchema[featureName]['columns'] = {} + tESchema[featureName] = {} + tESchema[featureName]['name'] = featureName + tESchema[featureName]['geom'] = geoList[featureName[-3]] + tESchema[featureName]['fcode'] = '' + tESchema[featureName]['fdname'] = fdName + tESchema[featureName]['fcList'] = [] + tESchema[featureName]['columns'] = {} + # There has got to be a better way to do this for node in feature.childNodes: # print 'cn:',node.nodeName if node.nodeName == 'AliasName': tSchema[featureName]['desc'] = node.firstChild.data.encode('utf8') + tESchema[featureName]['desc'] = node.firstChild.data.encode('utf8') # print ' Alias:',tSchema[featureName]['desc'] break @@ -526,12 +647,39 @@ def readFeatures(xmlDoc,funcList,domList,namList,tfList,fSchema,tSchema): 'length':length, 'optional':'R' } + + if fieldValue.getElementsByTagName('DefaultValue'): + defaultValueNode = fieldValue.getElementsByTagName('DefaultValue')[0] + fType = defaultValueNode.getAttributeNS('http://www.w3.org/2001/XMLSchema-instance','type') + + tESchema[featureName]['columns'][fName] = {} + tESchema[featureName]['columns'][fName] = { 'name':fName, + 'desc':desc, + 'type':typList[fType], + 'defValue':defaultValue, + 'length':length, + 'optional':'R' + } # Defensive. Addint an OTH if 'OTH' not in tSchema[featureName]['columns']: # print '## Missing OTH: ', subName tSchema[featureName]['columns']['OTH'] = {'name':'OTH','desc':'Specified Domain Value(s)','type':'String', 'defValue':'noInformation','length':'255','optional':'R'} + tESchema[featureName]['columns']['OTH'] = {'name':'OTH','desc':'Specified Domain Value(s)','type':'String', + 'defValue':'noInformation','length':'255','optional':'R'} + + if fName in funcList: + tESchema[featureName]['columns'][fName]['func'] = 'full_' + fName + + if fName in tfList: + tESchema[featureName]['columns'][fName]['func'] = 'truefalse' + + if 'ZI020_GE' in fName: + tESchema[featureName]['columns'][fName]['func'] = 'full_ZI020_GE4' + + if 'ZSAX_RS0' in fName or 'ZI020_GE4' in fName: + tESchema[featureName]['columns'][fName]['type'] = 'textEnumeration' # Debug # print 'Name:',fName.encode('utf8'),' Type:',fType.encode('utf8') @@ -566,9 +714,6 @@ def readFeatures(xmlDoc,funcList,domList,namList,tfList,fSchema,tSchema): if fieldName == 'F_CODE': fSchema[subName]['fcode'] = defaultValueNode.firstChild.data.encode('utf8') - if fieldName == 'FCSUBTYPE': - fSchema[subName]['fcsubtype'] = defaultValueNode.firstChild.data.encode('utf8') - # print 'fieldName',fieldName fType = defaultValueNode.getAttributeNS('http://www.w3.org/2001/XMLSchema-instance','type') defValue = defaultValueNode.firstChild.data.encode('utf8') @@ -588,6 +733,13 @@ def readFeatures(xmlDoc,funcList,domList,namList,tfList,fSchema,tSchema): 'defValue':defValue, 'optional':'R' } + + if fieldName == 'FCSUBTYPE': + #fSchema[subName]['fcsubtype'] = defaultValueNode.firstChild.data.encode('utf8') + fSchema[subName]['fcsubtype'] = fSchema[subName]['fcode'] + '_' + fSchema[subName]['desc'].replace(' ','_') + '_' + fSchema[subName]['geom'] + fSchema[subName]['columns']['FCSUBTYPE'] = { 'name':'FCSUBTYPE','desc':'Feature Class Subtype','type':'String','optional':'R','definition':'A feature class subtype placeholder to avoid non-nullable field.','defValue':fSchema[subName]['fcsubtype']} + #tSchema[fSchema[subName]['thematic']]['columns']['FCSUBTYPE'] = { 'name':'FCSUBTYPE','desc':'Feature Class Subtype','type':'String','optional':'R','definition':'A feature class subtype placeholder to avoid non-nullable field.','defValue':fSchema[subName]['fcsubtype']} + #tESchema[fSchema[subName]['thematic']]['columns']['FCSUBTYPE'] = { 'name':'FCSUBTYPE','desc':'Feature Class Subtype','type':'String','optional':'R','definition':'A feature class subtype placeholder to avoid non-nullable field.','defValue':fSchema[subName]['fcsubtype']} # Start filling in the domains if field.getElementsByTagName('DomainName') and fieldName != 'F_CODE': @@ -658,6 +810,7 @@ def readFeatures(xmlDoc,funcList,domList,namList,tfList,fSchema,tSchema): parser.add_argument('--fromenglish', help='Dump out From English translation rules',action='store_true') parser.add_argument('--fullschema', help='Dump out a schema with text enumerations',action='store_true') parser.add_argument('--intattr', help='Dump out all attributes that are integers',action='store_true') + parser.add_argument('--nocodedvalues', help='Generate a Thematic Schema with no coded values',action='store_true') parser.add_argument('--numrules', help='Dump out number rules',action='store_true') parser.add_argument('--rules', help='Dump out one2one rules',action='store_true') parser.add_argument('--thematic', help='Generate a Thematic Schame',action='store_true') @@ -714,21 +867,27 @@ def readFeatures(xmlDoc,funcList,domList,namList,tfList,fSchema,tSchema): thematicSchema = {} + thematicEnumSchema = {} schema = {} # Populate the two schema - readFeatures(xmlDoc,funcList,domainList,namesList,tfList,schema,thematicSchema) + readFeatures(xmlDoc,funcList,domainList,namesList,tfList,schema,thematicSchema,thematicEnumSchema) # Add names and descriptions to elements schema = addNames(namesList,schema) thematicSchema = addNames(namesList,thematicSchema) + thematicEnumSchema = addNames(namesList,thematicEnumSchema) # Fix default values in the schema fixDefaults() + # Fix enumerations in the schema + fixEnums() + # Add extra attributes to each feature schema = addExtraAttrs(schema) thematicSchema = addExtraAttrs(thematicSchema) + thematicEnumSchema = addExtraAttrs(thematicEnumSchema) # Now dump the schema out if args.rules: @@ -770,7 +929,13 @@ def readFeatures(xmlDoc,funcList,domList,namList,tfList,fSchema,tSchema): printJSFooter('tds71') else: printCopyright() - if args.thematic: + if args.nocodedvalues and args.thematic: + printThematicEnumHeader('tds71') + convertTextEnumerations(thematicEnumSchema) + printFuncList(thematicEnumSchema) + printThematicEnum(thematicEnumSchema,'tds71') + printThematicEnumFooter('tds71') + elif args.thematic: # convertTextEnumerations(thematicSchema) # printFuncList(thematicSchema) printThematic(thematicSchema,'tds71') diff --git a/scripts/sonar/sonar-config.sh b/scripts/sonar/sonar-config.sh index 471ca8363a..fd6abb35ea 100755 --- a/scripts/sonar/sonar-config.sh +++ b/scripts/sonar/sonar-config.sh @@ -2,7 +2,7 @@ export SONAR_JDK_RPM=jdk-17_linux-x64_bin.rpm export SONAR_JDK_URL=https://download.oracle.com/java/17/latest/$SONAR_JDK_RPM -export SONAR_JDK_PATH=/usr/lib/jvm/jdk-17-oracle-x64 +export SONAR_JDK_PATH=/usr/lib/jvm/jdk-17.0.12-oracle-x64 # Main sonar scanner export SONAR_VERSION=5.0.1.3006 # Requires Java 17 @@ -24,9 +24,9 @@ export SONAR_PROJECT_HOOT="hoot" export SONAR_PROJECT_SERVICES="hoot-services" # Sonar Maven properties -export SONAR_MVN_VERSION=apache-maven-3.9.4 +export SONAR_MVN_VERSION=apache-maven-3.9.8 export SONAR_MVN_TAR=${SONAR_MVN_VERSION}-bin.tar.gz -export SONAR_MVN_URL=https://dlcdn.apache.org/maven/maven-3/3.9.4/binaries/${SONAR_MVN_TAR} +export SONAR_MVN_URL=https://dlcdn.apache.org/maven/maven-3/3.9.8/binaries/${SONAR_MVN_TAR} export M2_HOME=/opt/maven export MAVEN_HOME=/opt/maven diff --git a/test-files/cmd/slow/TDSv71TranslationTest.sh.stdout b/test-files/cmd/slow/TDSv71TranslationTest.sh.stdout index 18c60f614d..d2532fcff1 100644 --- a/test-files/cmd/slow/TDSv71TranslationTest.sh.stdout +++ b/test-files/cmd/slow/TDSv71TranslationTest.sh.stdout @@ -139,7 +139,7 @@ BC8D301F-0E78-43A3-B6EA-0FD0230C82B8 in: TransportationGroundCrv out: TransportationGroundCrv translated: in - out: set([u'ZSAX_RS0', u'ZSAX_RX4']) - out - in: set([u'FCSUBTYPE']) + out - in: set([u'SGCC', u'FCSUBTYPE', u'RMWC']) OSM: in - out: set([u'security:resource_owner', u'source', u'security:classification']) out - in: set([u'error:circular']) @@ -265,7 +265,7 @@ AF12E7C5-C4B9-4DB9-A11B-FE53910C9E0D in: TransportationGroundCrv out: TransportationGroundCrv translated: in - out: set([]) - out - in: set([u'FCSUBTYPE']) + out - in: set([u'SGCC', u'FCSUBTYPE', u'RMWC']) OSM: in - out: set([u'source']) out - in: set([u'error:circular']) @@ -328,7 +328,7 @@ OSM: in: TransportationGroundCrv out: TransportationGroundCrv translated: in - out: set([]) - out - in: set([u'FCSUBTYPE']) + out - in: set([u'SGCC', u'FCSUBTYPE', u'RMWC']) OSM: in - out: set([u'source']) out - in: set([u'error:circular']) @@ -400,7 +400,7 @@ OSM: in: TransportationGroundCrv out: TransportationGroundCrv translated: in - out: set([]) - out - in: set([u'FCSUBTYPE']) + out - in: set([u'SGCC', u'FCSUBTYPE', u'RMWC']) OSM: in - out: set([u'source', u'highway', u'condition']) out - in: set([u'abandoned:highway', u'error:circular']) @@ -535,7 +535,7 @@ OSM: in: TransportationGroundCrv out: TransportationGroundCrv translated: in - out: set([u'ZSAX_RS0', u'ZSAX_RX4']) - out - in: set([u'FCSUBTYPE']) + out - in: set([u'SGCC', u'FCSUBTYPE', u'RMWC']) OSM: in - out: set([u'security:resource_owner', u'source', u'security:classification']) out - in: set([u'error:circular']) @@ -598,7 +598,7 @@ C87F3ED7-5656-4F80-B556-5B85DF1CB9BE in: TransportationGroundCrv out: TransportationGroundCrv translated: in - out: set([]) - out - in: set([u'FCSUBTYPE']) + out - in: set([u'SGCC', u'FCSUBTYPE', u'RMWC']) OSM: in - out: set([u'source', u'condition']) out - in: set([u'construction', u'error:circular']) @@ -789,7 +789,7 @@ OSM: in: TransportationGroundCrv out: TransportationGroundCrv translated: in - out: set([]) - out - in: set([u'FCSUBTYPE']) + out - in: set([u'SGCC', u'FCSUBTYPE', u'RMWC']) OSM: in - out: set([u'source']) out - in: set([u'error:circular']) @@ -852,7 +852,7 @@ OSM: in: TransportationGroundCrv out: TransportationGroundCrv translated: in - out: set([]) - out - in: set([u'FCSUBTYPE']) + out - in: set([u'SGCC', u'FCSUBTYPE', u'RMWC']) OSM: in - out: set([u'source']) out - in: set([u'error:circular']) @@ -980,7 +980,7 @@ OSM: in: TransportationGroundCrv out: TransportationGroundCrv translated: in - out: set([]) - out - in: set([u'FCSUBTYPE']) + out - in: set([u'SGCC', u'FCSUBTYPE', u'RMWC']) OSM: in - out: set([u'source']) out - in: set([u'error:circular']) @@ -1115,7 +1115,7 @@ OSM: in: TransportationGroundCrv out: TransportationGroundCrv translated: in - out: set([]) - out - in: set([u'FCSUBTYPE']) + out - in: set([u'SGCC', u'FCSUBTYPE', u'RMWC']) OSM: in - out: set([u'source']) out - in: set([u'error:circular']) @@ -1288,7 +1288,7 @@ OSM: in: TransportationGroundCrv out: TransportationGroundCrv translated: in - out: set([]) - out - in: set([u'FCSUBTYPE']) + out - in: set([u'SGCC', u'FCSUBTYPE', u'RMWC']) OSM: in - out: set([u'source']) out - in: set([u'error:circular']) @@ -1342,7 +1342,7 @@ OSM: in: TransportationGroundCrv out: TransportationGroundCrv translated: in - out: set([]) - out - in: set([u'FCSUBTYPE']) + out - in: set([u'FCSUBTYPE', u'SGCC', u'RMWC']) OSM: in - out: set([u'source']) out - in: set([u'error:circular']) @@ -1504,7 +1504,7 @@ DA1025EB-D540-4A47-900D-3687D3CD0E37 in: TransportationGroundCrv out: TransportationGroundCrv translated: in - out: set([]) - out - in: set([u'FCSUBTYPE']) + out - in: set([u'SGCC', u'FCSUBTYPE', u'RMWC']) OSM: in - out: set([u'source']) out - in: set([u'error:circular']) @@ -1549,7 +1549,7 @@ OSM: in: TransportationGroundCrv out: TransportationGroundCrv translated: in - out: set([u'ZSAX_RS0', u'ZSAX_RX4']) - out - in: set([u'FCSUBTYPE']) + out - in: set([u'SGCC', u'FCSUBTYPE', u'RMWC']) OSM: in - out: set([u'security:resource_owner', u'source', u'security:classification']) out - in: set([u'error:circular']) diff --git a/translations/tds71.js b/translations/tds71.js index 842afdda1a..8e32a04d50 100644 --- a/translations/tds71.js +++ b/translations/tds71.js @@ -113,7 +113,18 @@ tds71 = { } - if (tds71.thematicSchema == undefined) hoot.require('tds71_thematic_schema'); + if (tds71.thematicSchema == undefined) + { + if (hoot.Settings.get('ogr.coded.values') == 'false') + { + hoot.require('tds71_thematic_enum_schema'); + tds71.thematicSchema = tds71.thematicSchema.getDbSchema(); + } + else + { + hoot.require('tds71_thematic_schema'); + } + } // Debug: // print('New Schema:'); // translate.dumpSchema(tds71.thematicSchema); @@ -303,34 +314,55 @@ tds71 = { var enumValueList = []; // Pull all of the values out of the enumerated list to make life easier - for (var j=0, elen = enumList.length; j < elen; j++) enumValueList.push(enumList[j].value); + for (var j=0, elen = enumList.length; j < elen; j++) { + // If we don't want coded values, then validate the human-readable corresponding value + if (tds71.configOut.OgrCodedValues == 'false') + { + if (attrValue == enumList[j].value) + { + attrValue = enumList[j].name; + } + enumValueList.push(enumList[j].name); + } + else + { + enumValueList.push(enumList[j].value) + } + } // If we DONT have the value in the list, add it to the OTH or MEMO field if (enumValueList.indexOf(attrValue) == -1) { - var othVal = '(' + enumName + ':' + attrValue + ')'; + var othValStr = '(' + enumName + ':' + attrValue + ')'; + var othVal = '999'; + + if (tds71.configOut.OgrCodedValues == 'false') othVal = 'Other'; // change to human-readable value // No "Other" value. Push to the Memo field - if (enumValueList.indexOf('999') == -1) + if (enumValueList.indexOf(othVal) == -1) { // Set the offending enumerated value to the default value attrs[enumName] = feature.columns[i].defValue; hoot.logDebug('Validate: Enumerated Value: ' + attrValue + ' not found in ' + enumName + ' Setting ' + enumName + ' to its default value (' + feature.columns[i].defValue + ')'); - attrs.ZI006_MEM = translate.appendValue(attrs.ZI006_MEM,othVal,';'); + attrs.ZI006_MEM = translate.appendValue(attrs.ZI006_MEM,othValStr,';'); } else { // Set the offending enumerated value to the "other" value - attrs[enumName] = '999'; + attrs[enumName] = othVal; hoot.logDebug('Validate: Enumerated Value: ' + attrValue + ' not found in ' + enumName + ' Setting OTH and ' + enumName + ' to Other (999)'); - attrs.OTH = translate.appendValue(attrs.OTH,othVal,' '); + attrs.OTH = translate.appendValue(attrs.OTH,othValStr,' '); } } // End attrValue in enumList + else + { + attrs[enumName] = attrValue; + } } // End Validate Enumerations @@ -356,7 +388,58 @@ tds71 = { if (~attrList.indexOf(i)) continue; // If it is in the Thematic feature, just set a default value BUT only if we are not going to the UI - if (tds71.configOut.OgrFormat !== '' && (attrs[tds71.rules.closureList[i][0]] || attrs[tds71.rules.closureList[i][1]])) attrs[i] = '5'; + if (tds71.configOut.OgrFormat !== '' && tds71.configOut.OgrCodedValues && (attrs[tds71.rules.closureList[i][0]] || attrs[tds71.rules.closureList[i][1]])) + { + attrs[i] = '5'; // Closed Interval + } + else if (tds71.configOut.OgrFormat !== '' && !tds71.configOut.OgrCodedValues && (attrs[tds71.rules.closureList[i][0]] || attrs[tds71.rules.closureList[i][1]])) + { + attrs[i] = 'Closed Interval'; + } + } + + // Fix default values of closure list attributes + if (tds71.configOut.OgrCodedValues) + { + if (['GB005','GB015','GB045'].includes(attrs['F_CODE'])) + { + attrs['GSGCHC'] = '-999999'; + attrs['GSGCLC'] = '-999999'; + } + + // Custom Physiography rules + if (['BH150','DB170','DA010'].includes(attrs['F_CODE'])) + { + attrs['SGCC'] = '-999999'; + } + + // Fix values of attributes that are not associated with subtype + if (['AP050','AQ040','AP010'].includes(attrs['F_CODE'])) + { + attrs['SGCC'] = '-999999'; + attrs['RMWC'] = '-999999'; + } + } + else + { + if (['GB005','GB015','GB045'].includes(attrs['F_CODE'])) + { + attrs['GSGCHC'] = 'noInformation'; + attrs['GSGCLC'] = 'noInformation'; + } + + // Custom Physiography rules + if (['BH150','DB170','DA010'].includes(attrs['F_CODE'])) + { + attrs['SGCC'] = 'noInformation'; + } + + // Fix values of attributes that are not associated with subtype + if (['AP050','AQ040','AP010'].includes(attrs['F_CODE'])) + { + attrs['SGCC'] = 'noInformation'; + attrs['RMWC'] = 'noInformation'; + } } }, // End validateThematicAttrs @@ -393,7 +476,14 @@ tds71 = { case 'AN010': // Railway case 'AN050': // Railway Sidetrack delete nTags.railway; - newAttributes.TRS = '12'; // Transport Type = Railway + if (tds71.configOut.OgrCodedValues) + { + newAttributes.TRS = '12'; // Transport Type = Railway + } + else + { + newAttributes.TRS = 'Railway'; + } break; case 'AP010': // Cart Track @@ -406,23 +496,51 @@ tds71 = { case 'steps': case 'path': case 'bridleway': - newAttributes.TRS = '9'; // Transport Type = Pedestrian + if (tds71.configOut.OgrCodedValues) + { + newAttributes.TRS = '9'; // Transport Type = Pedestrian + } + else + { + newAttributes.TRS = 'Pedestrian'; + } break; default: - newAttributes.TRS = '13'; // Transport Type = Road + if (tds71.configOut.OgrCodedValues) + { + newAttributes.TRS = '13'; // Transport Type = Road + } + else + { + newAttributes.TRS = 'Road'; + } } delete nTags.highway; break; case 'AQ040': // Bridge delete nTags.bridge; - newAttributes.SBB = '1001'; // Supported By Bridge Span = True + if (tds71.configOut.OgrCodedValues) + { + newAttributes.SBB = '1001'; // Supported By Bridge Span = True + } + else + { + newAttributes.SBB = 'True'; // Supported By Bridge Span = True + } break; case 'AQ130': // Tunnel delete nTags.tunnel; - newAttributes.CWT = '1001'; // Contained Within Tunnel = True + if (tds71.configOut.OgrCodedValues) + { + newAttributes.CWT = '1001'; // Contained Within Tunnel = True + } + else + { + newAttributes.CWT = 'True'; // Contained Within Tunnel = True + } break; case 'BH070': // Ford @@ -451,7 +569,14 @@ tds71 = { if (nTags.highway) { - if (nTags.highway == 'track') newAttributes.TRS = '3'; // Cart Track TRS = Automotive + if (nTags.highway == 'track' && tds71.configOut.OgrCodedValues) + { + newAttributes.TRS = '3'; // Cart Track TRS = Automotive + } + else if (nTags.highway == 'track' && !tds71.configOut.OgrCodedValues) + { + newAttributes.TRS = 'Automotive'; + } newFeatures.push({attrs: JSON.parse(JSON.stringify(newAttributes)), tags: JSON.parse(JSON.stringify(nTags))}); delete nTags.highway; } @@ -2591,6 +2716,19 @@ tds71 = { } } + // Custom Aeronautic rules + if (['GB005','GB015','GB045'].includes(attrs.F_CODE)) + { + attrs.GSGCHC = '-999999'; + attrs.GSGCLC = '-999999'; + } + + // Custom Physiography rules + if (['BH150','DB170','DA010'].includes(attrs.F_CODE)) + { + attrs.SGCC = '-999999'; + } + // Custom Road rules // - Fix the "highway=" stuff that cant be done in the one2one rules if (attrs.F_CODE == 'AP030' || attrs.F_CODE == 'AQ075') // Road & Ice Road @@ -2672,6 +2810,13 @@ tds71 = { // if (!attrs.PCF) attrs.PCF = '2'; // Intact } // End AP030 || AQ075 + // Fix values of attributes that are not associated with subtype + if (['AP050','AQ040','AP010'].includes(attrs.F_CODE)) + { + attrs.SGCC = '-999999'; + attrs.RMWC = '-999999'; + } + // RLE vs LOC: Need to deconflict this for various features. // This is the list of features that can be "Above Surface". Other features use RLE (Relative Level) instead. if (attrs.LOC == '45' && (['AT005','AQ113','BH065','BH110'].indexOf(attrs.TRS) == -1)) @@ -3115,6 +3260,7 @@ tds71 = { tds71.configOut.OgrNoteExtra = hoot.Settings.get('ogr.note.extra'); tds71.configOut.OgrTextFieldNumber = hoot.Settings.get("ogr.text.field.number"); tds71.configOut.OgrThematicStructure = hoot.Settings.get('writer.thematic.structure'); + tds71.configOut.OgrCodedValues = hoot.Settings.get('ogr.coded.values'); tds71.configOut.OgrThrowError = hoot.Settings.get('ogr.throw.error'); // Get any changes to OSM tags diff --git a/translations/tds71_thematic_enum_schema.js b/translations/tds71_thematic_enum_schema.js new file mode 100644 index 0000000000..2d7e4998ef --- /dev/null +++ b/translations/tds71_thematic_enum_schema.js @@ -0,0 +1,24648 @@ +/* + * This file is part of Hootenanny. + * + * Hootenanny is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + * -------------------------------------------------------------------- + * + * The following copyright notices are generated automatically. If you + * have a new notice to add, please use the format: + * " * @copyright Copyright ..." + * This will properly maintain the copyright information. Maxar + * copyrights will be updated automatically. + * + * @copyright Copyright (C) 2015-2024 Maxar (http://www.maxar.com/) + */ + + //// + // This file is automatically generated. Please do not modify the file + // directly. + //// + + +var _global = (0, eval)('this'); +if (!_global.tds71) +{ + _global.tds71 = {}; +} + +tds71.thematicSchema = { +getDbSchema: function() +{ +var full_ZI001_SRT = [ + {name:"noInformation",value:"-999999"}, + {name:"AAFIF",value:"2"}, + {name:"CIB1",value:"7"}, + {name:"QuickBird Imagery",value:"9"}, + {name:"DNC",value:"10"}, + {name:"DVOF",value:"21"}, + {name:"FFD",value:"22"}, + {name:"GeoNames",value:"25"}, + {name:"GPS",value:"26"}, + {name:"Ikonos Imagery",value:"28"}, + {name:"NTM Imagery",value:"29"}, + {name:"Imagery",value:"30"}, + {name:"ITD",value:"31"}, + {name:"IVD",value:"32"}, + {name:"MIDB",value:"43"}, + {name:"UVMap",value:"60"}, + {name:"VITD",value:"61"}, + {name:"VMap 2",value:"64"}, + {name:"NAVTEQ Data",value:"108"}, + {name:"Commercial Data",value:"159"}, + {name:"Open Source Information",value:"160"}, + {name:"DAFIF",value:"165"}, + {name:"DeLorme Digital Atlas of the Earth (DAE)",value:"166"}, + {name:"Military Map Data",value:"167"}, + {name:"Non-military Map",value:"168"}, + {name:"Operations Data",value:"169"}, + {name:"SAC",value:"170"}, + {name:"TomTom Data",value:"171"}, + {name:"Other",value:"999"} +]; + +var full_ZI004_RCG = [ + {name:"noInformation",value:"-999999"}, + {name:"U.S. Army",value:"1"}, + {name:"U.S. Navy",value:"2"}, + {name:"U.S. Air Force",value:"3"}, + {name:"U.S. Marine Corps",value:"4"}, + {name:"U.S. Coast Guard",value:"5"}, + {name:"U.S. Africa Command (USAFRICOM)",value:"6"}, + {name:"U.S. Central Command (USCENTCOM)",value:"7"}, + {name:"U.S. European Command (USEUCOM)",value:"8"}, + {name:"U.S. Joint Forces Command (USJFCOM)",value:"9"}, + {name:"U.S. Northern Command (USNORTHCOM)",value:"10"}, + {name:"U.S. Pacific Command (PACOM)",value:"11"}, + {name:"U.S. Special Operations Command (USSOCOM)",value:"12"}, + {name:"U.S. Southern Command (USSOUTHCOM)",value:"13"}, + {name:"U.S. Strategic Command (USSTRATCOM)",value:"14"}, + {name:"U.S. Transportation Command (USTRANSCOM)",value:"15"}, + {name:"U.S. Central Intelligence Agency (CIA)",value:"16"}, + {name:"U.S. Defense Intelligence Agency (DIA)",value:"17"}, + {name:"U.S. National Security Agency (NSA)",value:"18"}, + {name:"U.S. National Geospatial-Intelligence Agency (NGA)",value:"19"}, + {name:"U.S. National Reconnaissance Office (NRO)",value:"20"}, + {name:"U.S. Department of State",value:"21"}, + {name:"U.S. Department of Homeland Security (DHS)",value:"22"}, + {name:"U.S. Department of Energy (DOE)",value:"23"}, + {name:"U.S. Federal Bureau of Investigation (FBI)",value:"24"}, + {name:"U.S. Geological Survey (USGS)",value:"25"}, + {name:"U.S. National Civil Applications Program (NCAP)",value:"26"}, + {name:"U.S. National Oceanic and Atmospheric Administration",value:"27"}, + {name:"Australian Geospatial-Intelligence Organization (Australia)",value:"28"}, + {name:"Geographic Service (Belgium)",value:"29"}, + {name:"Military Topographic Service (Bulgaria)",value:"30"}, + {name:"Mapping and Charting Establishment (Canada)",value:"31"}, + {name:"Geographic Service of the Czech Armed Forces (Czech Republic)",value:"32"}, + {name:"Defence Acquisition and Logistics Organization (Denmark)",value:"33"}, + {name:"Military Geographic Group (Estonia)",value:"34"}, + {name:"Topographic Service (Finland)",value:"35"}, + {name:"Bureau Geographie, Hydrographie, Oceanographie et Meteorologie (France)",value:"36"}, + {name:"Bundeswehr Geoinformation Office (Germany)",value:"37"}, + {name:"Hellenic Military Geographic Service (Greece)",value:"38"}, + {name:"Geoinformation Service of the Hungarian Defence Forces (Hungary)",value:"39"}, + {name:"Defense Information Security (Italy)",value:"40"}, + {name:"Geospatial Information Agency (Latvia)",value:"41"}, + {name:"Military Mapping Centre (Lithuania)",value:"42"}, + {name:"National Army Topographic Service (Moldova)",value:"43"}, + {name:"Army Geographic Agency (Netherlands)",value:"44"}, + {name:"GEOINT New Zealand (New Zealand)",value:"45"}, + {name:"Military Geographic Service (Norway)",value:"46"}, + {name:"Military Geography Division (Poland)",value:"47"}, + {name:"Army Geographic Institute (Portugal)",value:"48"}, + {name:"Military Topographic Directorate (Romania)",value:"49"}, + {name:"Topographic Institute (Slovakia)",value:"50"}, + {name:"Army Geographic Centre (Spain)",value:"51"}, + {name:"Swedish Armed Forces (Sweden)",value:"52"}, + {name:"General Command of Mapping (Turkey)",value:"53"}, + {name:"Defence Geographic Centre Intelligence Collection Group (United Kingdom)",value:"54"}, + {name:"U.S. Army Geospatial Center (AGC)",value:"55"}, + {name:"Army (Australia)",value:"56"}, + {name:"Military Geographic Division (Croatia)",value:"57"}, + {name:"Directorate Geospatial Information (South Africa)",value:"58"}, + {name:"Korean Defense Intelligence Agency (South Korea)",value:"59"}, + {name:"National Intelligence Service (South Korea)",value:"60"}, + {name:"Imagery Support Group (Singapore)",value:"61"}, + {name:"National Security Bureau (Taiwan)",value:"62"}, + {name:"Materiel Production Center (Taiwan)",value:"63"}, + {name:"Ministry of Defense of Japan (Japan)",value:"64"}, + {name:"Ministry of Construction and Urban Development (Mongolia)",value:"65"}, + {name:"National Mapping and Resource Information Authority (Philippines)",value:"66"}, + {name:"Royal Jordanian Geographic Centre (Jordan)",value:"67"}, + {name:"National Survey Authority (Oman)",value:"68"}, + {name:"Armed Forces General Headquarters (Qatar)",value:"69"}, + {name:"Ministry of Defense of Saudi Arabia (Saudi Arabia)",value:"70"}, + {name:"Directorate of Survey (Kuwait)",value:"71"}, + {name:"Military Survey Department (United Arab Emirates)",value:"72"}, + {name:"Information Network Security Agency (Ethiopia)",value:"73"}, + {name:"Ministry of State for Defense (Kenya)",value:"74"}, + {name:"El Instituto Nacional de Estadistica y Geografia (Mexico)",value:"75"}, + {name:"Instituto Geográfico Militar (Chile)",value:"76"}, + {name:"Servicio Geográfico Militar (Uruguay)",value:"77"}, + {name:"Dirección del Servicio Geográfico Military (Paraguay)",value:"78"}, + {name:"Instituto Geográfico Nacional (Peru)",value:"79"}, + {name:"Instituto Geográfico Agustín Codazzi (Colombia)",value:"80"}, + {name:"Instituto Geográfico y del Catastro Nacional (El Salvador)",value:"81"}, + {name:"Instituto Geográfico Nacional (Guatemala)",value:"82"}, + {name:"Servicio Geográfico Militar (Guatemala)",value:"83"}, + {name:"Instituto Cartográfico Militar (Dominican Republic)",value:"84"}, + {name:"Instituto Nicaragüense de Estudios Terretoriales (Nicaragua)",value:"85"}, + {name:"Dirección General de Registros, Catastro, y Geografía (Honduras)",value:"86"}, + {name:"Instituto Geográfico Militar (Ecuador)",value:"87"}, + {name:"Instituto Geográfico Nacional Tommy Guardia (Panama)",value:"88"}, + {name:"Instituto Geográfico Nacional (Argentina)",value:"89"}, + {name:"Diretoria de Serviço Geográfico (Brazil)",value:"90"}, + {name:"Not Applicable",value:"998"}, + {name:"Other",value:"999"} +]; + +var full_SGCC = [ + {name:"Open Interval",value:"2"}, + {name:"Greater-than-or-equal to Less-than Interval",value:"3"}, + {name:"Greater-than to Less-than-or-equal Interval",value:"4"}, + {name:"Closed Interval",value:"5"}, + {name:"Greater-than Semi-interval",value:"6"}, + {name:"Greater-than or Equal Semi-interval",value:"7"}, + {name:"Less-than Semi-interval",value:"8"}, + {name:"Less-than or Equal Semi-interval",value:"9"} +]; + +var full_ZI026_CTUC = [ + {name:"Open Interval",value:"2"}, + {name:"Greater-than-or-equal to Less-than Interval",value:"3"}, + {name:"Greater-than to Less-than-or-equal Interval",value:"4"}, + {name:"Closed Interval",value:"5"}, + {name:"Greater-than Semi-interval",value:"6"}, + {name:"Greater-than or Equal Semi-interval",value:"7"}, + {name:"Less-than Semi-interval",value:"8"}, + {name:"Less-than or Equal Semi-interval",value:"9"} +]; + +var full_VDT = [ + {name:"noInformation",value:"-999999"}, + {name:"WGS 84 Ellipsoid",value:"1"}, + {name:"WGS 84 EGM96 Geoid",value:"2"}, + {name:"Mean Sea Level (MSL)",value:"3"}, + {name:"North American Vertical Datum (NAVD) 1988",value:"4"}, + {name:"National Geodetic Vertical Datum (NGVD) 1929",value:"5"}, + {name:"Ground Level",value:"6"}, + {name:"WGS 84 EGM08 Geoid",value:"7"}, + {name:"Not Applicable",value:"998"}, + {name:"Other",value:"999"} +]; + +var full_CPS = [ + {name:"noInformation",value:"-999999"}, + {name:"Fixed Cells, 5 Arc Degree",value:"1"}, + {name:"Fixed Cells, 1 Arc Degree",value:"2"}, + {name:"Fixed Cells, 0.5 Arc Degree",value:"3"}, + {name:"Fixed Cells, 0.25 Arc Degree",value:"4"}, + {name:"Variable Cells",value:"5"}, + {name:"Not Applicable",value:"998"}, + {name:"Other",value:"999"} +]; + +var truefalse = [ + {name:"noInformation",value:"-999999"}, + {name:"FALSE",value:"1000"}, + {name:"TRUE",value:"1001"} +]; + +var full_ETS = [ + {name:"noInformation",value:"-999999"}, + {name:"1AA-TPC",value:"1"}, + {name:"1AB-ONC",value:"2"}, + {name:"1AE-JOG-A/G",value:"3"}, + {name:"1CD-DTED-1",value:"4"}, + {name:"1CE-DFAD-1",value:"5"}, + {name:"1CF-DTED-2",value:"6"}, + {name:"1CG-DFAD-2",value:"7"}, + {name:"2AA/001-HAC-1",value:"8"}, + {name:"2AA/002-HAC-2",value:"9"}, + {name:"2AA/003-HAC-3",value:"10"}, + {name:"2AA/004-HAC-4",value:"11"}, + {name:"2AA/005-HAC-5",value:"12"}, + {name:"2AA/006-HAC-6",value:"13"}, + {name:"2AA/007-HAC-7",value:"14"}, + {name:"2AA/008-HAC-8",value:"15"}, + {name:"2AA/009-HAC-9",value:"16"}, + {name:"2AD-Combat",value:"17"}, + {name:"3AA-TLM50",value:"18"}, + {name:"3AG-TLM100",value:"19"}, + {name:"3KA-VITD",value:"20"}, + {name:"3KC/001-DTOP",value:"21"}, + {name:"3KH-VMap-2",value:"22"}, + {name:"3KL-VMap-0",value:"23"}, + {name:"3KM-VMap-1",value:"24"}, + {name:"3KU-UVMap",value:"25"}, + {name:"4AA-ATC",value:"26"}, + {name:"4AC-JOG-R",value:"27"}, + {name:"4GE-TERCOM-L",value:"28"}, + {name:"4GF-TERCOM-E",value:"29"}, + {name:"4GG-TERCOM-T",value:"30"}, + {name:"5EE-FFD",value:"31"}, + {name:"DNC",value:"43"}, + {name:"MSD1",value:"44"}, + {name:"MSD2",value:"45"}, + {name:"MSD3",value:"46"}, + {name:"MSD4",value:"47"}, + {name:"MSD5",value:"48"}, + {name:"TOD0",value:"49"}, + {name:"TOD1",value:"50"}, + {name:"TOD2",value:"51"}, + {name:"TOD3",value:"52"}, + {name:"TOD4",value:"53"}, + {name:"DFEG",value:"56"}, + {name:"GTDS-EG",value:"57"}, + {name:"RTDS-EG",value:"58"}, + {name:"LTDS-EG",value:"59"}, + {name:"S-UTDS-EG",value:"60"}, + {name:"MGCP TRD",value:"61"}, + {name:"Not Applicable",value:"998"}, + {name:"Other",value:"999"} +]; + +var full_HZD = [ + {name:"noInformation",value:"-999999"}, + {name:"Adindan (Ethiopia)",value:"2"}, + {name:"Adindan (Sudan)",value:"3"}, + {name:"Adindan (Mali)",value:"4"}, + {name:"Adindan (Senegal)",value:"5"}, + {name:"Adindan (Burkina Faso)",value:"6"}, + {name:"Adindan (Cameroon)",value:"7"}, + {name:"Adindan (mean value)",value:"8"}, + {name:"Afgooye (Somalia)",value:"9"}, + {name:"Antigua Island Astro 1943",value:"10"}, + {name:"Ain el Abd 1970 (Bahrain Island)",value:"12"}, + {name:"Ain el Abd 1970 (Saudi Arabia)",value:"13"}, + {name:"American Samoa Datum 1962",value:"14"}, + {name:"Amersfoort 1885/1903 (Netherlands)",value:"15"}, + {name:"Anna 1 Astro 1965 (Cocos Islands)",value:"16"}, + {name:"Approximate Luzon Datum (Philippines)",value:"17"}, + {name:"Arc 1950 (Botswana)",value:"19"}, + {name:"Arc 1950 (Lesotho)",value:"20"}, + {name:"Arc 1950 (Malawi)",value:"21"}, + {name:"Arc 1950 (Swaziland)",value:"22"}, + {name:"Arc 1950 (Zaire)",value:"23"}, + {name:"Arc 1950 (Zambia)",value:"24"}, + {name:"Arc 1950 (Zimbabwe)",value:"25"}, + {name:"Arc 1950 (Burundi)",value:"26"}, + {name:"Arc 1950 (mean value)",value:"27"}, + {name:"Arc 1960 (Kenya)",value:"29"}, + {name:"Arc 1960 (Tanzania)",value:"30"}, + {name:"Arc 1960 (mean value)",value:"31"}, + {name:"Arc 1935 (Africa)",value:"32"}, + {name:"Ascension Island 1958 (Ascension Island)",value:"33"}, + {name:"Montserrat Island Astro 1958",value:"34"}, + {name:"Astro Station 1952 (Marcus Island)",value:"35"}, + {name:"Astro Beacon 'E' (Iwo Jima Island)",value:"36"}, + {name:"Average Terrestrial System 1977, New Brunswick",value:"37"}, + {name:"Australian Geod. 1966 (Australia and Tasmania Island)",value:"38"}, + {name:"Australian Geod. 1984 (Australia and Tasmania Island)",value:"39"}, + {name:"Djakarta (Batavia) (Sumatra Island, Indonesia)",value:"40"}, + {name:"Djakarta (Batavia) (Sumatra Island, Indonesia) with Zero Meridian Djakarta",value:"41"}, + {name:"Bekaa Base South End (Lebanon)",value:"42"}, + {name:"Belgium 1950 System (Lommel Signal, Belgium)",value:"43"}, + {name:"Bermuda 1957 (Bermuda Islands)",value:"44"}, + {name:"Bissau (Guinea-Bissau)",value:"45"}, + {name:"Modified BJZ54 (China)",value:"46"}, + {name:"BJZ54 (A954 Beijing Coordinates) (China)",value:"47"}, + {name:"Bogota Observatory (Colombia)",value:"48"}, + {name:"Bogota Observatory (Colombia) with Zero Meridian Bogota",value:"49"}, + {name:"Bern 1898 (Switzerland)",value:"50"}, + {name:"Bern 1898 (Switzerland) with Zero Meridian Bern",value:"51"}, + {name:"Bukit Rimpah (Bangka and Belitung Islands, Indonesia)",value:"52"}, + {name:"Cape Canaveral (mean value)",value:"53"}, + {name:"Campo Inchauspe (Argentina)",value:"54"}, + {name:"Camacupa Base SW End (Campo De Aviacao, Angola)",value:"55"}, + {name:"Canton Astro 1966 (Phoenix Islands)",value:"56"}, + {name:"Cape (South Africa)",value:"57"}, + {name:"Camp Area Astro (Camp McMurdo Area, Antarctica)",value:"58"}, + {name:"S-JTSK",value:"59"}, + {name:"Carthage (Tunisia)",value:"60"}, + {name:"Compensation Geodetique du Quebec 1977",value:"61"}, + {name:"Chatham 1971 (Chatham Island, New Zealand)",value:"62"}, + {name:"Chua Astro (Paraguay)",value:"63"}, + {name:"Corrego Alegre (Brazil)",value:"64"}, + {name:"Conakry Pyramid of the Service Geographique (Guinea)",value:"65"}, + {name:"Guyana CSG67",value:"66"}, + {name:"Dabola (Guinea)",value:"67"}, + {name:"DCS-3 Lighthouse, Saint Lucia, Lesser Antilles",value:"68"}, + {name:"Deception Island, Antarctica",value:"69"}, + {name:"GUX 1 Astro (Guadacanal Island)",value:"70"}, + {name:"Dominica Astro M-12, Dominica, Lesser Antilles",value:"71"}, + {name:"Easter Island 1967 (Easter Island)",value:"72"}, + {name:"Wake-Eniwetok 1960 (Marshall Islands)",value:"73"}, + {name:"European 1950 (Western Europe)",value:"75"}, + {name:"European 1950 (Greece)",value:"76"}, + {name:"European 1950 (Norway and Finland)",value:"77"}, + {name:"European 1950 (Portugal and Spain)",value:"78"}, + {name:"European 1950 (Cyprus)",value:"79"}, + {name:"European 1950 (Egypt)",value:"80"}, + {name:"European 1950 (England, Channel Islands, Scotland, and Shetland Islands)",value:"81"}, + {name:"European 1950 (Iran)",value:"82"}, + {name:"European 1950 (Sardinia)",value:"83"}, + {name:"European 1950 (Sicily)",value:"84"}, + {name:"European 1950 (British Isles)",value:"85"}, + {name:"European 1950 (Malta)",value:"86"}, + {name:"European 1950 (mean value)",value:"87"}, + {name:"European 1950 (Iraq, Israel, Jordan, Kuwait, Lebanon, Saudi Arabia, and Syria)",value:"88"}, + {name:"European 1950 (Tunisia)",value:"89"}, + {name:"European 1979 (mean value)",value:"90"}, + {name:"European Terrestrial Reference System 1989 (ETRS89)",value:"91"}, + {name:"Oman (Oman)",value:"92"}, + {name:"Observatorio Meteorologico 1939 (Corvo and Flores Islands, Azores)",value:"93"}, + {name:"Fort Thomas 1955 (Nevis, St Kitts, Leeward Islands)",value:"94"}, + {name:"Gan 1970 (Addu Atoll, Republic of Maldives)",value:"95"}, + {name:"Gandajika Base (Zaire)",value:"96"}, + {name:"Geocentric Datum of Australia (GDA)",value:"97"}, + {name:"GDZ80 (China)",value:"98"}, + {name:"Geodetic Datum 1949 (New Zealand)",value:"99"}, + {name:"DOS 1968 (Gizo Island, New Georgia Islands)",value:"100"}, + {name:"Graciosa Base SW (Faial, Graciosa, Pico, Sao Jorge, and Terceira Island, Azores)",value:"101"}, + {name:"Greek Datum, Greece",value:"102"}, + {name:"Greek Geodetic Reference System 1987 (GGRS 87)",value:"103"}, + {name:"Gunong Segara (Kalimantan Island, Indonesia)",value:"104"}, + {name:"Gunong Serindung",value:"105"}, + {name:"Guam 1963",value:"106"}, + {name:"Herat North (Afganistan)",value:"107"}, + {name:"Hermannskogel",value:"108"}, + {name:"Provisional South Chilean 1963 (or Hito XVIII 1963) (S. Chile, 53 degrees South)",value:"109"}, + {name:"Hjorsey 1955 (Iceland)",value:"110"}, + {name:"Hong Kong 1963 (Hong Kong)",value:"111"}, + {name:"Hong Kong 1929",value:"112"}, + {name:"Hu-Tzu-Shan",value:"113"}, + {name:"Hungarian 1972",value:"114"}, + {name:"Bellevue (IGN) (Efate and Erromango Islands)",value:"115"}, + {name:"Indonesian 1974",value:"116"}, + {name:"Indian (Thailand and Vietnam)",value:"118"}, + {name:"Indian (Bangladesh)",value:"119"}, + {name:"Indian (India and Nepal)",value:"120"}, + {name:"Indian (Pakistan)",value:"121"}, + {name:"Indian 1954 (Thailand)",value:"123"}, + {name:"Indian 1960 (Vietnam: near 16 degrees North)",value:"125"}, + {name:"Indian 1960 (Con Son Island (Vietnam))",value:"126"}, + {name:"Indian 1975 (Thailand)",value:"128"}, + {name:"Ireland 1965 (Ireland and Northern Ireland)",value:"129"}, + {name:"ISTS 061 Astro 1968 (South Georgia Islands)",value:"130"}, + {name:"ISTS 073 Astro 1969 (Diego Garcia)",value:"131"}, + {name:"Johnston Island 1961 (Johnston Island)",value:"132"}, + {name:"Kalianpur (India)",value:"133"}, + {name:"Kandawala (Sri Lanka)",value:"134"}, + {name:"Kertau 1948 (or Revised Kertau) (West Malaysia and Singapore)",value:"135"}, + {name:"KCS 2, Sierra Leone",value:"136"}, + {name:"Kerguelen Island 1949 (Kerguelen Island)",value:"137"}, + {name:"Korean Geodetic System 1995 (South Korea)",value:"138"}, + {name:"KKJ (or Kartastokoordinaattijarjestelma), Finland",value:"139"}, + {name:"Kusaie Astro 1951",value:"140"}, + {name:"Kuwait Oil Company (K28)",value:"141"}, + {name:"L.C. 5 Astro 1961 (Cayman Brac Island)",value:"142"}, + {name:"Leigon (Ghana)",value:"143"}, + {name:"Liberia 1964 (Liberia)",value:"144"}, + {name:"Lisbon (Castelo di Sao Jorge), Portugal",value:"145"}, + {name:"Local Astro",value:"146"}, + {name:"Loma Quintana (Venezuela)",value:"147"}, + {name:"Luzon (Philipines except Mindanao Island)",value:"149"}, + {name:"Luzon (Mindanao Island)",value:"150"}, + {name:"Marco Astro (Salvage Islands)",value:"151"}, + {name:"Martinique Fort-Desaix",value:"152"}, + {name:"Massawa (Eritrea, Ethiopia)",value:"153"}, + {name:"Manokwari (West Irian)",value:"154"}, + {name:"Mayotte Combani",value:"155"}, + {name:"Mount Dillon, Tobago",value:"156"}, + {name:"Merchich (Morocco)",value:"157"}, + {name:"Midway Astro 1961 (Midway Island)",value:"158"}, + {name:"Mahe 1971 (Mahe Island)",value:"159"}, + {name:"Minna (Cameroon)",value:"161"}, + {name:"Minna (Nigeria)",value:"162"}, + {name:"Rome 1940 (or Monte Mario 1940), Italy",value:"163"}, + {name:"Rome 1940 (or Monte Mario 1940), Italy, with Zero Meridian Rome",value:"164"}, + {name:"Montjong Lowe",value:"165"}, + {name:"M'Poraloko (Gabon)",value:"166"}, + {name:"Viti Levu 1916 (Viti Levu Island, Fiji Islands)",value:"167"}, + {name:"Nahrwan (Masirah Island, Oman)",value:"169"}, + {name:"Nahrwan (United Arab Emirates)",value:"170"}, + {name:"Nahrwan (Saudi Arabia)",value:"171"}, + {name:"Naparima (BWI, Trinidad and Tobago)",value:"172"}, + {name:"North American 1983 (Alaska, excluding Aleutian Islands)",value:"174"}, + {name:"North American 1983 (Canada)",value:"175"}, + {name:"North American 1983 (CONUS)",value:"176"}, + {name:"North American 1983 (Mexico and Central America))",value:"177"}, + {name:"North American 1983 (Aleutian Islands)",value:"178"}, + {name:"North American 1983 (Hawaii)",value:"179"}, + {name:"North American 1927 (Eastern US)",value:"181"}, + {name:"North American 1927 (Western US)",value:"182"}, + {name:"North American 1927 (CONUS mean)",value:"183"}, + {name:"North American 1927 (Alaska)",value:"184"}, + {name:"North American 1927 (Canada mean)",value:"185"}, + {name:"North American 1927 (Alberta and British Columbia)",value:"186"}, + {name:"North American 1927 (Newfoundland, New Brunswick, Nova Scotia and Quebec)",value:"187"}, + {name:"North American 1927 (Manitoba and Ontario)",value:"188"}, + {name:"North American 1927 (Northwest Territories and Saskatchewan)",value:"189"}, + {name:"North American 1927 (Yukon)",value:"190"}, + {name:"North American 1927 (Mexico)",value:"191"}, + {name:"North American 1927 (Central America)",value:"192"}, + {name:"North American 1927 (Canal Zone)",value:"193"}, + {name:"North American 1927 (Caribbean)",value:"194"}, + {name:"North American 1927 (Bahamas, except San Salvador Island)",value:"195"}, + {name:"North American 1927 (San Salvador Island)",value:"196"}, + {name:"North American 1927 (Cuba)",value:"197"}, + {name:"North American 1927 (Hayes Peninsula, Greenland)",value:"198"}, + {name:"North American 1927 (Aleutian Islands East of 180 degrees West)",value:"199"}, + {name:"North American 1927 (Aleutian Islands West of 180 degrees West)",value:"200"}, + {name:"Revised Nahrwan",value:"201"}, + {name:"New French or Nouvelle Triangulation Francaise (NTF) with Zero Meridian Paris",value:"202"}, + {name:"North Sahara 1959",value:"204"}, + {name:"Ocotopeque, Guatemala",value:"205"}, + {name:"Belgium 1972 (Observatoire d'Uccle)",value:"206"}, + {name:"Old Egyptian (Egypt)",value:"207"}, + {name:"Ordnance Survey G.B. 1936 (England)",value:"209"}, + {name:"Ordnance Survey G.B. 1936 (England, Isle of Man, and Wales)",value:"210"}, + {name:"Ordnance Survey G.B. 1936 (Scotland and Shetland Islands)",value:"211"}, + {name:"Ordnance Survey G.B. 1936 (Wales)",value:"212"}, + {name:"Ordnance Survey G.B. 1936 (mean value)",value:"213"}, + {name:"Old Hawaiian (Hawaii)",value:"215"}, + {name:"Old Hawaiian (Kauai)",value:"216"}, + {name:"Old Hawaiian (Maui)",value:"217"}, + {name:"Old Hawaiian (Oahu)",value:"218"}, + {name:"Old Hawaiian (mean value)",value:"219"}, + {name:"Oslo Observatory (Old), Norway",value:"220"}, + {name:"Padang Base West End (Sumatra, Indonesia)",value:"221"}, + {name:"Padang Base West End (Sumatra, Indonesia) with Zero Meridian Djakarta",value:"222"}, + {name:"Palestine 1928 (Israel, Jordan)",value:"223"}, + {name:"Potsdam or Helmertturm (Germany)",value:"224"}, + {name:"Ayabelle Lighthouse (Djibouti)",value:"225"}, + {name:"Pitcairn Astro 1967 (Pitcairn Island)",value:"226"}, + {name:"Pico de las Nieves (Canary Islands)",value:"227"}, + {name:"SE Base (Porto Santo) (Porto Santo and Madeira Islands)",value:"228"}, + {name:"Prov. S. American 1956 (Bolivia)",value:"230"}, + {name:"Prov. S. American 1956 (Northern Chile near 19 degrees South)",value:"231"}, + {name:"Prov. S. American 1956 (Southern Chile near 43 degrees South)",value:"232"}, + {name:"Prov. S. American 1956 (Columbia)",value:"233"}, + {name:"Prov. S. American 1956 (Ecuador)",value:"234"}, + {name:"Prov. S. American 1956 (Guyana)",value:"235"}, + {name:"Prov. S. American 1956 (Peru)",value:"236"}, + {name:"Prov. S. American 1956 (Venezuela)",value:"237"}, + {name:"Prov. S. American 1956 (mean value)",value:"238"}, + {name:"Point 58 Mean Solution (Burkina Faso and Niger)",value:"239"}, + {name:"Pointe Noire 1948",value:"240"}, + {name:"Pulkovo 1942 (Russia)",value:"241"}, + {name:"Puerto Rico (Puerto Rico and Virgin Islands)",value:"242"}, + {name:"Qatar National (Qatar)",value:"243"}, + {name:"Qornoq (South Greenland)",value:"244"}, + {name:"Rauenberg (Berlin, Germany)",value:"245"}, + {name:"Reconnaissance Triangulation, Morocco",value:"246"}, + {name:"Reunion 1947",value:"247"}, + {name:"RT90, Stockholm, Sweden",value:"248"}, + {name:"Santo (DOS) 1965 (Espirito Santo Island)",value:"249"}, + {name:"South African (South Africa)",value:"250"}, + {name:"Sainte Anne I 1984 (Guadeloupe)",value:"251"}, + {name:"South American 1969 (Argentina)",value:"253"}, + {name:"South American 1969 (Bolivia)",value:"254"}, + {name:"South American 1969 (Brazil)",value:"255"}, + {name:"South American 1969 (Chile)",value:"256"}, + {name:"South American 1969 (Columbia)",value:"257"}, + {name:"South American 1969 (Ecuador)",value:"258"}, + {name:"South American 1969 (Guyana)",value:"259"}, + {name:"South American 1969 (Paraguay)",value:"260"}, + {name:"South American 1969 (Peru)",value:"261"}, + {name:"South American 1969 (Baltra, Galapagos Islands)",value:"262"}, + {name:"South American 1969 (Trinidad and Tobago)",value:"263"}, + {name:"South American 1969 (Venezuela)",value:"264"}, + {name:"South American 1969 (mean value)",value:"265"}, + {name:"Sao Braz (Sao Miguel, Santa Maria Islands, Azores)",value:"266"}, + {name:"Sapper Hill 1943 (East Falkland Islands)",value:"267"}, + {name:"Schwarzeck (Namibia)",value:"268"}, + {name:"Soviet Geodetic System 1985",value:"269"}, + {name:"Soviet Geodetic System 1990",value:"270"}, + {name:"Selvagem Grande 1938 (Salvage Islands)",value:"271"}, + {name:"Astro DOS 71/4 (St. Helena Island)",value:"272"}, + {name:"Sierra Leone 1960",value:"273"}, + {name:"South Asia (Southeast Asia, Singapore)",value:"274"}, + {name:"St. Pierre et Miquelon 1950",value:"276"}, + {name:"Stockholm 1938 (Sweden)",value:"277"}, + {name:"Sydney Observatory, New South Wales, Australia",value:"278"}, + {name:"Tananarive Observatory 1925",value:"279"}, + {name:"Tananarive Observatory 1925, with Zero Meridian Paris",value:"280"}, + {name:"Tristan Astro 1968 (Tristan da Cunha)",value:"281"}, + {name:"Timbalai 1948 (Brunei and East Malaysia - Sarawak and Sabah)",value:"282"}, + {name:"Timbalai 1968",value:"283"}, + {name:"Tokyo (Japan)",value:"285"}, + {name:"Tokyo (Korea)",value:"286"}, + {name:"Tokyo (Okinawa)",value:"287"}, + {name:"Tokyo (mean value)",value:"288"}, + {name:"Trinidad 1903",value:"289"}, + {name:"Astro Tern Island 1961 (Tern Island, Hawaii)",value:"290"}, + {name:"Voirol 1875",value:"292"}, + {name:"Voirol 1875 with Zero Meridian Paris",value:"293"}, + {name:"Voirol 1960, Algeria",value:"294"}, + {name:"Voirol 1960, Algeria, with Zero Meridian Paris",value:"295"}, + {name:"Wake Island Astro 1952",value:"296"}, + {name:"World Geodetic System 1960",value:"297"}, + {name:"World Geodetic System 1966",value:"298"}, + {name:"World Geodetic System 1972",value:"299"}, + {name:"World Geodetic System 1984",value:"300"}, + {name:"Yacare (Uruguay)",value:"301"}, + {name:"Zanderij (Surinam)",value:"302"}, + {name:"Co-ordinate System 1937 of Estonia",value:"305"}, + {name:"Indian 1975 (Thailand) - Cycle 1",value:"306"}, + {name:"South American Geocentric Reference System (SIRGAS)",value:"307"}, + {name:"Pulkovo 1942 (Hungary)",value:"308"}, + {name:"Pulkovo 1942 (Poland)",value:"309"}, + {name:"Pulkovo 1942 (Czechoslovakia)",value:"310"}, + {name:"Pulkovo 1942 (Latvia)",value:"311"}, + {name:"Pulkovo 1942 (Kazakhstan)",value:"312"}, + {name:"Pulkovo 1942 (Albania)",value:"313"}, + {name:"Pulkovo 1942 (Romania)",value:"314"}, + {name:"Tokyo (Korea) - Cycle 1",value:"315"}, + {name:"Not Applicable",value:"998"}, + {name:"Other",value:"999"} +]; + +var thematicSchema = [ + {name:"AdministrativeBoundaryCrv",fcode:"",desc:"AdministrativeBoundaryCurves",geom:"Line",fdname:"TDS_CARTO", + columns:[ + {name:"ACC",desc:"Horizontal Accuracy Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Accurate",value:"1"}, + {name:"Approximate",value:"2"} + ] + }, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"BAL",desc:"BGN Administrative Level",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"First-order",value:"1"}, + {name:"Second-order",value:"2"}, + {name:"Third-order",value:"3"}, + {name:"Fourth-order",value:"4"}, + {name:"Undifferentiated",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"BST",desc:"Boundary Status",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Definite",value:"1"}, + {name:"Indefinite",value:"2"}, + {name:"In Dispute",value:"3"}, + {name:"No Defined Boundary",value:"4"} + ] + }, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"DSP",desc:"Boundary Dispute Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"In Dispute",value:"1"}, + {name:"Undisputed",value:"2"}, + {name:"De Facto",value:"3"}, + {name:"De Jure",value:"4"} + ] + }, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LSP",desc:"Geopolitical Line Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Generic Administrative Boundary",value:"1"}, + {name:"Provisional Administrative Line",value:"2"}, + {name:"Armistice Line",value:"3"}, + {name:"Line of Control",value:"4"}, + {name:"Demarcation Line",value:"5"}, + {name:"Line of Convenience",value:"6"}, + {name:"Cease Fire Line",value:"7"}, + {name:"Convention Line",value:"8"}, + {name:"Claim Line",value:"9"}, + {name:"Intercolonial Line",value:"10"}, + {name:"Interentity Line",value:"11"}, + {name:"Line of Adjacency",value:"12"}, + {name:"Line of Withdrawal",value:"13"}, + {name:"Military Disengagement Line",value:"14"}, + {name:"Treaty Line",value:"15"}, + {name:"UNCLOS Claim Boundary",value:"16"}, + {name:"Generic International Boundary",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MGL",desc:"Maritime Geopolitical Limit Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"International Boundary",value:"1"}, + {name:"Territorial Sea Baseline",value:"2"}, + {name:"Three Nautical Mile Limit",value:"3"}, + {name:"Territorial Waters Limit of Sovereignty",value:"4"}, + {name:"Contiguous Zone Limit",value:"5"}, + {name:"Continental Shelf Limit",value:"6"}, + {name:"Extended Continental Shelf Limit",value:"7"}, + {name:"Exclusive Economic Zone Limit",value:"8"}, + {name:"Customs Boundary",value:"9"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"RPC",desc:"Boundary Representation Policy",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Show No Line",value:"1"}, + {name:"Definite",value:"2"}, + {name:"Indefinite",value:"3"}, + {name:"In Dispute",value:"4"}, + {name:"Administrative as International",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI005_FNAA",desc:"Geopolitical Entity : Geographic Name Information (1) : Full Name (first side)",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_FNAB",desc:"Geopolitical Entity : Geographic Name Information (2) : Full Name (second side)",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFNA",desc:"Geopolitical Entity : Geographic Name Information (1) : Name Identifier (first side)",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI005_NFNB",desc:"Geopolitical Entity : Geographic Name Information (2) : Name Identifier (second side)",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"AdministrativeBoundarySrf",fcode:"",desc:"AdministrativeBoundarySurfaces",geom:"Area",fdname:"TDS_CARTO", + columns:[ + {name:"ACC",desc:"Horizontal Accuracy Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Accurate",value:"1"}, + {name:"Approximate",value:"2"} + ] + }, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AMB",desc:"Special Administrative Unit",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Lease Area",value:"1"}, + {name:"Concession Area",value:"2"}, + {name:"Free Trade Zone",value:"3"}, + {name:"Economic Region",value:"4"}, + {name:"Postal District",value:"5"}, + {name:"Census District",value:"6"}, + {name:"Water Management District",value:"7"}, + {name:"Congressional District",value:"8"}, + {name:"Environmental Protection Agency Region",value:"9"}, + {name:"Federal Emergency Management Agency Region",value:"10"}, + {name:"Federal Energy Regulatory Commission Region",value:"11"}, + {name:"Native American Reservation",value:"12"}, + {name:"Radiological Assistance Program Region",value:"13"}, + {name:"Federal Aviation Administration Region",value:"14"}, + {name:"Army Corps of Engineers District",value:"15"}, + {name:"Army Corps of Engineers Division",value:"16"}, + {name:"Coast Guard Sector",value:"17"}, + {name:"Border Patrol Sector",value:"18"}, + {name:"FBI Field Office Jurisdiction",value:"19"}, + {name:"FBI Resident Agency District",value:"20"} + ] + }, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"BAL",desc:"BGN Administrative Level",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"First-order",value:"1"}, + {name:"Second-order",value:"2"}, + {name:"Third-order",value:"3"}, + {name:"Fourth-order",value:"4"}, + {name:"Undifferentiated",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"AeroRadioNavInstallationPnt",fcode:"",desc:"AeronauticalRadioNavigationInstallationPoints",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ART",desc:"Aeronautical Route Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Low",value:"1"}, + {name:"High",value:"2"}, + {name:"Both",value:"3"} + ] + }, + {name:"ASO",desc:"Aeronautical Service Operational Status",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Operational",value:"1"}, + {name:"Unserviceable",value:"2"}, + {name:"On-Test",value:"3"}, + {name:"Interrupt",value:"4"}, + {name:"Conditional",value:"6"}, + {name:"False Indication Definite",value:"7"}, + {name:"False Indication Possible",value:"8"}, + {name:"Displaced",value:"10"}, + {name:"In Construction",value:"11"}, + {name:"Withdrawn",value:"12"}, + {name:"Intermittent",value:"13"}, + {name:"Irregular",value:"14"}, + {name:"NAVAID DME Out-of-service",value:"15"}, + {name:"NAVAID Frequency Out-of-service",value:"16"}, + {name:"NAVAID Partial Service",value:"17"} + ] + }, + {name:"AWP",desc:"Aeronautical Obstacle Light Present",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"BEL",desc:"Base Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CMS",desc:"Commissioned Status",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Commissioned and Operational",value:"1"}, + {name:"Commissioned and on Test",value:"2"}, + {name:"Commissioned but Out of Service",value:"3"}, + {name:"Operational but Not Commissioned",value:"4"}, + {name:"On Test but Not Commissioned",value:"5"}, + {name:"Not Commissioned and Out of Service",value:"6"} + ] + }, + {name:"DIA",desc:"DIAM Functional Classification",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"DIR",desc:"Directivity",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Unidirectional",value:"1"}, + {name:"Bidirectional",value:"2"}, + {name:"Omindirectional",value:"3"} + ] + }, + {name:"EEI",desc:"External Entity Identifier",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LOC",desc:"Vertical Relative Location",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Completely Below Ground Surface",value:"40"}, + {name:"On Surface",value:"44"}, + {name:"Above Surface",value:"45"} + ] + }, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCA",desc:"Characters Emitted",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"OIQ",desc:"Object Identification Quality",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PRM",desc:"Permanent",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"PWR",desc:"NAVAID Power",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"RAC",desc:"Radar Antenna Configuration",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Dome Enclosed",value:"1"}, + {name:"Radome",value:"3"}, + {name:"Radome on Tower",value:"4"}, + {name:"Tower Mounted",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"RSI",desc:"Radar Significance",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Metal",value:"1"}, + {name:"Part Metal",value:"2"}, + {name:"Masonry",value:"3"}, + {name:"Composition",value:"4"}, + {name:"Earthen",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"SPT",desc:"Supported",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"SRL",desc:"Location Referenced to Shoreline",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Offshore",value:"1"}, + {name:"Inland",value:"2"}, + {name:"At Shoreline",value:"3"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"AerodromeBeaconPnt",fcode:"",desc:"AerodromeBeaconPoints",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"ACC",desc:"Horizontal Accuracy Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Accurate",value:"1"}, + {name:"Approximate",value:"2"} + ] + }, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CHA",desc:"Navigation Light Charateristic",optional:"R",type:"enumeration",defValue:"5", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Alternating",value:"1"}, + {name:"Ultra Quick-flashing",value:"4"}, + {name:"Fixed",value:"5"}, + {name:"Fixed and Flashing",value:"6"}, + {name:"Flashing",value:"8"}, + {name:"Interrupted Quick-flashing",value:"11"}, + {name:"Interrupted Ultra Quickflashing",value:"12"}, + {name:"Interrupted Very Quick-flashing",value:"13"}, + {name:"Isophase",value:"14"}, + {name:"Long-flashing",value:"15"}, + {name:"Morse Code",value:"16"}, + {name:"Occulting",value:"17"}, + {name:"Group Quick-flashing",value:"28"}, + {name:"Group Very Quick-flashing",value:"29"}, + {name:"Quick-flashing",value:"44"}, + {name:"Very Quick-flashing",value:"45"}, + {name:"Flashing with Long-flash",value:"46"}, + {name:"Occulting Flashing",value:"47"}, + {name:"Fixed Long-flashing",value:"48"}, + {name:"Occulting Alternating",value:"49"}, + {name:"Long-flashing Alternating",value:"50"}, + {name:"Flashing Alternating",value:"51"}, + {name:"Quick-flashing with Long-flash",value:"57"}, + {name:"Very Quick-flashing with Long-flash",value:"58"}, + {name:"Ultra Quick-flashing with Long-flash",value:"59"}, + {name:"Fixed with Alternating Flashing",value:"60"}, + {name:"Other",value:"999"} + ] + }, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"AeronauticCrv",fcode:"",desc:"AeronauticCurves",geom:"Line",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AXS",desc:"Aerodrome Surface Status",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Closed",value:"1"}, + {name:"Open",value:"2"}, + {name:"Work in Progress",value:"3"}, + {name:"Parked or Disabled Aircraft",value:"4"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"DEV",desc:"Deck Level",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SBB",desc:"Supported by Bridge Span",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"TXP",desc:"Taxiway Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Parallel Taxiway",value:"1"}, + {name:"Stub Taxiway",value:"2"}, + {name:"Rapid Exit and/or Turnoff Taxiway",value:"3"}, + {name:"Turnaround Taxiway",value:"4"}, + {name:"Dispersal",value:"5"}, + {name:"Loop",value:"6"}, + {name:"Perimeter",value:"7"}, + {name:"Apron Taxiway",value:"8"}, + {name:"Aircraft Stand Taxilane",value:"9"}, + {name:"Lead-in Taxilane",value:"10"}, + {name:"Lead-out Taxilane",value:"11"}, + {name:"Air Taxiway",value:"12"}, + {name:"Helicopter Ground Taxiway",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI019_ASP",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Preparation Method",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aggregate Seal Coat",value:"1"}, + {name:"Graded",value:"2"}, + {name:"Grass",value:"3"}, + {name:"Grooved",value:"4"}, + {name:"Oiled",value:"5"}, + {name:"Porous Friction Course",value:"6"}, + {name:"Rolled",value:"7"}, + {name:"Rubberized Seal Coat",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASP2",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Preparation Method [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aggregate Seal Coat",value:"1"}, + {name:"Graded",value:"2"}, + {name:"Grass",value:"3"}, + {name:"Grooved",value:"4"}, + {name:"Oiled",value:"5"}, + {name:"Porous Friction Course",value:"6"}, + {name:"Rolled",value:"7"}, + {name:"Rubberized Seal Coat",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASP3",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Preparation Method [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aggregate Seal Coat",value:"1"}, + {name:"Graded",value:"2"}, + {name:"Grass",value:"3"}, + {name:"Grooved",value:"4"}, + {name:"Oiled",value:"5"}, + {name:"Porous Friction Course",value:"6"}, + {name:"Rolled",value:"7"}, + {name:"Rubberized Seal Coat",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASU",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Composition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Asphalt",value:"1"}, + {name:"Bituminous Mix",value:"2"}, + {name:"Brick",value:"3"}, + {name:"Clay",value:"4"}, + {name:"Concrete",value:"5"}, + {name:"Coral",value:"6"}, + {name:"Earthen",value:"7"}, + {name:"Gravel",value:"8"}, + {name:"Ice",value:"9"}, + {name:"Landing Mat",value:"10"}, + {name:"Laterite",value:"11"}, + {name:"Macadam",value:"12"}, + {name:"Membrane",value:"13"}, + {name:"Non-bituminous Mix",value:"14"}, + {name:"Pierced Steel Planking",value:"15"}, + {name:"Sand",value:"16"}, + {name:"Snow",value:"17"}, + {name:"Stone",value:"18"}, + {name:"Water",value:"19"}, + {name:"Wood",value:"20"}, + {name:"Asphalt Over Concrete",value:"21"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASU2",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Composition [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Asphalt",value:"1"}, + {name:"Bituminous Mix",value:"2"}, + {name:"Brick",value:"3"}, + {name:"Clay",value:"4"}, + {name:"Concrete",value:"5"}, + {name:"Coral",value:"6"}, + {name:"Earthen",value:"7"}, + {name:"Gravel",value:"8"}, + {name:"Ice",value:"9"}, + {name:"Landing Mat",value:"10"}, + {name:"Laterite",value:"11"}, + {name:"Macadam",value:"12"}, + {name:"Membrane",value:"13"}, + {name:"Non-bituminous Mix",value:"14"}, + {name:"Pierced Steel Planking",value:"15"}, + {name:"Sand",value:"16"}, + {name:"Snow",value:"17"}, + {name:"Stone",value:"18"}, + {name:"Water",value:"19"}, + {name:"Wood",value:"20"}, + {name:"Asphalt Over Concrete",value:"21"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASU3",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Composition [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Asphalt",value:"1"}, + {name:"Bituminous Mix",value:"2"}, + {name:"Brick",value:"3"}, + {name:"Clay",value:"4"}, + {name:"Concrete",value:"5"}, + {name:"Coral",value:"6"}, + {name:"Earthen",value:"7"}, + {name:"Gravel",value:"8"}, + {name:"Ice",value:"9"}, + {name:"Landing Mat",value:"10"}, + {name:"Laterite",value:"11"}, + {name:"Macadam",value:"12"}, + {name:"Membrane",value:"13"}, + {name:"Non-bituminous Mix",value:"14"}, + {name:"Pierced Steel Planking",value:"15"}, + {name:"Sand",value:"16"}, + {name:"Snow",value:"17"}, + {name:"Stone",value:"18"}, + {name:"Water",value:"19"}, + {name:"Wood",value:"20"}, + {name:"Asphalt Over Concrete",value:"21"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASX",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Completely Paved",value:"1"}, + {name:"Mostly Paved",value:"2"}, + {name:"Unprepared",value:"3"}, + {name:"Partially Paved",value:"4"}, + {name:"Unpaved",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_SFS",desc:"Aerodrome Pavement Information : Aerodrome Pavement Functional Status",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Fair",value:"1"}, + {name:"Fair Estimated",value:"2"}, + {name:"Good",value:"3"}, + {name:"Good Estimated",value:"4"}, + {name:"Poor",value:"5"}, + {name:"Poor Estimated",value:"6"}, + {name:"Under Construction",value:"7"}, + {name:"Unserviceable",value:"8"}, + {name:"Excellent",value:"9"} + ] + }, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"AeronauticPnt",fcode:"",desc:"AeronauticPoints",geom:"Point",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"APT",desc:"Airfield Use",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Major Airfield",value:"1"}, + {name:"Minor Airfield",value:"2"}, + {name:"General Aviation Aircraft Operating Only",value:"3"}, + {name:"Glider Site",value:"5"}, + {name:"Ultralight Site",value:"6"}, + {name:"Hang Glider Site",value:"7"}, + {name:"Winch Launched Hang Glider Site",value:"8"}, + {name:"Emergency",value:"12"}, + {name:"Parascending Site",value:"13"}, + {name:"Search and Rescue Airfield",value:"16"}, + {name:"Other",value:"999"} + ] + }, + {name:"APT2",desc:"Airfield Use [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Major Airfield",value:"1"}, + {name:"Minor Airfield",value:"2"}, + {name:"General Aviation Aircraft Operating Only",value:"3"}, + {name:"Glider Site",value:"5"}, + {name:"Ultralight Site",value:"6"}, + {name:"Hang Glider Site",value:"7"}, + {name:"Winch Launched Hang Glider Site",value:"8"}, + {name:"Emergency",value:"12"}, + {name:"Parascending Site",value:"13"}, + {name:"Search and Rescue Airfield",value:"16"}, + {name:"Other",value:"999"} + ] + }, + {name:"APT3",desc:"Airfield Use [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Major Airfield",value:"1"}, + {name:"Minor Airfield",value:"2"}, + {name:"General Aviation Aircraft Operating Only",value:"3"}, + {name:"Glider Site",value:"5"}, + {name:"Ultralight Site",value:"6"}, + {name:"Hang Glider Site",value:"7"}, + {name:"Winch Launched Hang Glider Site",value:"8"}, + {name:"Emergency",value:"12"}, + {name:"Parascending Site",value:"13"}, + {name:"Search and Rescue Airfield",value:"16"}, + {name:"Other",value:"999"} + ] + }, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ASY",desc:"Airfield Symbol Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"H - Active Military Heliport",value:"8"}, + {name:"J - Active Civil Heliport",value:"9"}, + {name:"K - Active Military Heliport (with less than minimum facilities)",value:"10"}, + {name:"L - Active Civil Heliport (with less than minimum facilities)",value:"11"}, + {name:"X - Decoy",value:"12"}, + {name:"Active Joint (Civilian/Military) Heliport",value:"13"} + ] + }, + {name:"AXS",desc:"Aerodrome Surface Status",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Closed",value:"1"}, + {name:"Open",value:"2"}, + {name:"Work in Progress",value:"3"}, + {name:"Parked or Disabled Aircraft",value:"4"} + ] + }, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FPT",desc:"Airfield Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Major",value:"1"}, + {name:"Minor and Hard",value:"2"}, + {name:"Minor and Soft",value:"3"}, + {name:"Minor",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"GUG",desc:"Guyed",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"HAF",desc:"Helipad Associated Facility",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Heliport",value:"1"}, + {name:"Land Aerodrome",value:"2"}, + {name:"Hospital",value:"3"}, + {name:"Non-hospital Building",value:"4"}, + {name:"Rig",value:"6"}, + {name:"Offshore Construction",value:"9"}, + {name:"Water Aerodrome",value:"10"}, + {name:"Military Installation",value:"11"}, + {name:"Other",value:"999"} + ] + }, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"HTP",desc:"Hangar Type Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"M - Multi-bay",value:"1"}, + {name:"O - Open End",value:"2"}, + {name:"N - Nose In",value:"3"}, + {name:"G - Underground",value:"4"}, + {name:"S - Single Bay",value:"5"}, + {name:"D - Double Bay",value:"6"}, + {name:"T - T-Shaped",value:"7"} + ] + }, + {name:"IKO",desc:"ICAO Location Indicator",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MAG",desc:"Magnetic Variation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC2",desc:"Structural Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC3",desc:"Structural Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"NA8",desc:"Aerodrome Official Name",optional:"R",type:"String",length:"80",defValue:"noInformation"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PEC",desc:"Port of Entry",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PYM",desc:"Pylon Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Concrete",value:"3"}, + {name:"Masonry",value:"4"}, + {name:"Metal",value:"5"}, + {name:"Wood",value:"7"}, + {name:"Steel",value:"8"}, + {name:"Fibreglass",value:"9"}, + {name:"Iron",value:"10"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"TOS",desc:"Tower Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mast",value:"6"}, + {name:"Tripod",value:"11"}, + {name:"Truss",value:"12"}, + {name:"Tubular",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS",desc:"Transportation System Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS2",desc:"Transportation System Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS3",desc:"Transportation System Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI019_ASP",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Preparation Method",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aggregate Seal Coat",value:"1"}, + {name:"Graded",value:"2"}, + {name:"Grass",value:"3"}, + {name:"Grooved",value:"4"}, + {name:"Oiled",value:"5"}, + {name:"Porous Friction Course",value:"6"}, + {name:"Rolled",value:"7"}, + {name:"Rubberized Seal Coat",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASP2",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Preparation Method [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aggregate Seal Coat",value:"1"}, + {name:"Graded",value:"2"}, + {name:"Grass",value:"3"}, + {name:"Grooved",value:"4"}, + {name:"Oiled",value:"5"}, + {name:"Porous Friction Course",value:"6"}, + {name:"Rolled",value:"7"}, + {name:"Rubberized Seal Coat",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASP3",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Preparation Method [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aggregate Seal Coat",value:"1"}, + {name:"Graded",value:"2"}, + {name:"Grass",value:"3"}, + {name:"Grooved",value:"4"}, + {name:"Oiled",value:"5"}, + {name:"Porous Friction Course",value:"6"}, + {name:"Rolled",value:"7"}, + {name:"Rubberized Seal Coat",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASU",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Composition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Asphalt",value:"1"}, + {name:"Bituminous Mix",value:"2"}, + {name:"Brick",value:"3"}, + {name:"Clay",value:"4"}, + {name:"Concrete",value:"5"}, + {name:"Coral",value:"6"}, + {name:"Earthen",value:"7"}, + {name:"Gravel",value:"8"}, + {name:"Ice",value:"9"}, + {name:"Landing Mat",value:"10"}, + {name:"Laterite",value:"11"}, + {name:"Macadam",value:"12"}, + {name:"Membrane",value:"13"}, + {name:"Non-bituminous Mix",value:"14"}, + {name:"Pierced Steel Planking",value:"15"}, + {name:"Sand",value:"16"}, + {name:"Snow",value:"17"}, + {name:"Stone",value:"18"}, + {name:"Water",value:"19"}, + {name:"Wood",value:"20"}, + {name:"Asphalt Over Concrete",value:"21"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASU2",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Composition [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Asphalt",value:"1"}, + {name:"Bituminous Mix",value:"2"}, + {name:"Brick",value:"3"}, + {name:"Clay",value:"4"}, + {name:"Concrete",value:"5"}, + {name:"Coral",value:"6"}, + {name:"Earthen",value:"7"}, + {name:"Gravel",value:"8"}, + {name:"Ice",value:"9"}, + {name:"Landing Mat",value:"10"}, + {name:"Laterite",value:"11"}, + {name:"Macadam",value:"12"}, + {name:"Membrane",value:"13"}, + {name:"Non-bituminous Mix",value:"14"}, + {name:"Pierced Steel Planking",value:"15"}, + {name:"Sand",value:"16"}, + {name:"Snow",value:"17"}, + {name:"Stone",value:"18"}, + {name:"Water",value:"19"}, + {name:"Wood",value:"20"}, + {name:"Asphalt Over Concrete",value:"21"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASU3",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Composition [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Asphalt",value:"1"}, + {name:"Bituminous Mix",value:"2"}, + {name:"Brick",value:"3"}, + {name:"Clay",value:"4"}, + {name:"Concrete",value:"5"}, + {name:"Coral",value:"6"}, + {name:"Earthen",value:"7"}, + {name:"Gravel",value:"8"}, + {name:"Ice",value:"9"}, + {name:"Landing Mat",value:"10"}, + {name:"Laterite",value:"11"}, + {name:"Macadam",value:"12"}, + {name:"Membrane",value:"13"}, + {name:"Non-bituminous Mix",value:"14"}, + {name:"Pierced Steel Planking",value:"15"}, + {name:"Sand",value:"16"}, + {name:"Snow",value:"17"}, + {name:"Stone",value:"18"}, + {name:"Water",value:"19"}, + {name:"Wood",value:"20"}, + {name:"Asphalt Over Concrete",value:"21"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASX",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Completely Paved",value:"1"}, + {name:"Mostly Paved",value:"2"}, + {name:"Unprepared",value:"3"}, + {name:"Partially Paved",value:"4"}, + {name:"Unpaved",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_SFS",desc:"Aerodrome Pavement Information : Aerodrome Pavement Functional Status",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Fair",value:"1"}, + {name:"Fair Estimated",value:"2"}, + {name:"Good",value:"3"}, + {name:"Good Estimated",value:"4"}, + {name:"Poor",value:"5"}, + {name:"Poor Estimated",value:"6"}, + {name:"Under Construction",value:"7"}, + {name:"Unserviceable",value:"8"}, + {name:"Excellent",value:"9"} + ] + }, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVA",desc:"Aerodrome Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"AeronauticSrf",fcode:"",desc:"AeronauticSurfaces",geom:"Area",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"APT",desc:"Airfield Use",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Major Airfield",value:"1"}, + {name:"Minor Airfield",value:"2"}, + {name:"General Aviation Aircraft Operating Only",value:"3"}, + {name:"Glider Site",value:"5"}, + {name:"Ultralight Site",value:"6"}, + {name:"Hang Glider Site",value:"7"}, + {name:"Winch Launched Hang Glider Site",value:"8"}, + {name:"Emergency",value:"12"}, + {name:"Parascending Site",value:"13"}, + {name:"Search and Rescue Airfield",value:"16"}, + {name:"Other",value:"999"} + ] + }, + {name:"APT2",desc:"Airfield Use [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Major Airfield",value:"1"}, + {name:"Minor Airfield",value:"2"}, + {name:"General Aviation Aircraft Operating Only",value:"3"}, + {name:"Glider Site",value:"5"}, + {name:"Ultralight Site",value:"6"}, + {name:"Hang Glider Site",value:"7"}, + {name:"Winch Launched Hang Glider Site",value:"8"}, + {name:"Emergency",value:"12"}, + {name:"Parascending Site",value:"13"}, + {name:"Search and Rescue Airfield",value:"16"}, + {name:"Other",value:"999"} + ] + }, + {name:"APT3",desc:"Airfield Use [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Major Airfield",value:"1"}, + {name:"Minor Airfield",value:"2"}, + {name:"General Aviation Aircraft Operating Only",value:"3"}, + {name:"Glider Site",value:"5"}, + {name:"Ultralight Site",value:"6"}, + {name:"Hang Glider Site",value:"7"}, + {name:"Winch Launched Hang Glider Site",value:"8"}, + {name:"Emergency",value:"12"}, + {name:"Parascending Site",value:"13"}, + {name:"Search and Rescue Airfield",value:"16"}, + {name:"Other",value:"999"} + ] + }, + {name:"APU",desc:"Apron Usage",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Parking",value:"1"}, + {name:"Loading and/or Unloading",value:"2"}, + {name:"Fuelling",value:"3"}, + {name:"Transient",value:"4"}, + {name:"Compass Rose",value:"5"}, + {name:"Engine Run Up",value:"6"}, + {name:"Maintenance",value:"7"}, + {name:"Alert",value:"8"}, + {name:"Firing-In",value:"9"}, + {name:"Hot Refuelling",value:"10"}, + {name:"Weapon Loading",value:"11"}, + {name:"De-icing and/or Anti-icing",value:"12"}, + {name:"INS Alignment",value:"13"}, + {name:"Decontamination",value:"14"}, + {name:"Other",value:"999"} + ] + }, + {name:"APU2",desc:"Apron Usage [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Parking",value:"1"}, + {name:"Loading and/or Unloading",value:"2"}, + {name:"Fuelling",value:"3"}, + {name:"Transient",value:"4"}, + {name:"Compass Rose",value:"5"}, + {name:"Engine Run Up",value:"6"}, + {name:"Maintenance",value:"7"}, + {name:"Alert",value:"8"}, + {name:"Firing-In",value:"9"}, + {name:"Hot Refuelling",value:"10"}, + {name:"Weapon Loading",value:"11"}, + {name:"De-icing and/or Anti-icing",value:"12"}, + {name:"INS Alignment",value:"13"}, + {name:"Decontamination",value:"14"}, + {name:"Other",value:"999"} + ] + }, + {name:"APU3",desc:"Apron Usage [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Parking",value:"1"}, + {name:"Loading and/or Unloading",value:"2"}, + {name:"Fuelling",value:"3"}, + {name:"Transient",value:"4"}, + {name:"Compass Rose",value:"5"}, + {name:"Engine Run Up",value:"6"}, + {name:"Maintenance",value:"7"}, + {name:"Alert",value:"8"}, + {name:"Firing-In",value:"9"}, + {name:"Hot Refuelling",value:"10"}, + {name:"Weapon Loading",value:"11"}, + {name:"De-icing and/or Anti-icing",value:"12"}, + {name:"INS Alignment",value:"13"}, + {name:"Decontamination",value:"14"}, + {name:"Other",value:"999"} + ] + }, + {name:"APY",desc:"Apron Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Passenger",value:"1"}, + {name:"Cargo",value:"2"}, + {name:"Remote Parking",value:"3"}, + {name:"Services and/or Hangar",value:"4"}, + {name:"General Aviation",value:"5"}, + {name:"Military",value:"6"}, + {name:"Dispersal",value:"7"}, + {name:"Holding",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ASU",desc:"Aerodrome Movement Area Surface Composition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Asphalt",value:"1"}, + {name:"Bituminous Mix",value:"2"}, + {name:"Brick",value:"3"}, + {name:"Clay",value:"4"}, + {name:"Concrete",value:"5"}, + {name:"Coral",value:"6"}, + {name:"Earthen",value:"7"}, + {name:"Gravel",value:"8"}, + {name:"Ice",value:"9"}, + {name:"Landing Mat",value:"10"}, + {name:"Laterite",value:"11"}, + {name:"Macadam",value:"12"}, + {name:"Membrane",value:"13"}, + {name:"Non-bituminous Mix",value:"14"}, + {name:"Pierced Steel Planking",value:"15"}, + {name:"Sand",value:"16"}, + {name:"Snow",value:"17"}, + {name:"Stone",value:"18"}, + {name:"Water",value:"19"}, + {name:"Wood",value:"20"}, + {name:"Asphalt Over Concrete",value:"21"}, + {name:"Other",value:"999"} + ] + }, + {name:"ASU2",desc:"Aerodrome Movement Area Surface Composition [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Asphalt",value:"1"}, + {name:"Bituminous Mix",value:"2"}, + {name:"Brick",value:"3"}, + {name:"Clay",value:"4"}, + {name:"Concrete",value:"5"}, + {name:"Coral",value:"6"}, + {name:"Earthen",value:"7"}, + {name:"Gravel",value:"8"}, + {name:"Ice",value:"9"}, + {name:"Landing Mat",value:"10"}, + {name:"Laterite",value:"11"}, + {name:"Macadam",value:"12"}, + {name:"Membrane",value:"13"}, + {name:"Non-bituminous Mix",value:"14"}, + {name:"Pierced Steel Planking",value:"15"}, + {name:"Sand",value:"16"}, + {name:"Snow",value:"17"}, + {name:"Stone",value:"18"}, + {name:"Water",value:"19"}, + {name:"Wood",value:"20"}, + {name:"Asphalt Over Concrete",value:"21"}, + {name:"Other",value:"999"} + ] + }, + {name:"ASU3",desc:"Aerodrome Movement Area Surface Composition [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Asphalt",value:"1"}, + {name:"Bituminous Mix",value:"2"}, + {name:"Brick",value:"3"}, + {name:"Clay",value:"4"}, + {name:"Concrete",value:"5"}, + {name:"Coral",value:"6"}, + {name:"Earthen",value:"7"}, + {name:"Gravel",value:"8"}, + {name:"Ice",value:"9"}, + {name:"Landing Mat",value:"10"}, + {name:"Laterite",value:"11"}, + {name:"Macadam",value:"12"}, + {name:"Membrane",value:"13"}, + {name:"Non-bituminous Mix",value:"14"}, + {name:"Pierced Steel Planking",value:"15"}, + {name:"Sand",value:"16"}, + {name:"Snow",value:"17"}, + {name:"Stone",value:"18"}, + {name:"Water",value:"19"}, + {name:"Wood",value:"20"}, + {name:"Asphalt Over Concrete",value:"21"}, + {name:"Other",value:"999"} + ] + }, + {name:"ASY",desc:"Airfield Symbol Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"H - Active Military Heliport",value:"8"}, + {name:"J - Active Civil Heliport",value:"9"}, + {name:"K - Active Military Heliport (with less than minimum facilities)",value:"10"}, + {name:"L - Active Civil Heliport (with less than minimum facilities)",value:"11"}, + {name:"X - Decoy",value:"12"}, + {name:"Active Joint (Civilian/Military) Heliport",value:"13"} + ] + }, + {name:"AXS",desc:"Aerodrome Surface Status",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Closed",value:"1"}, + {name:"Open",value:"2"}, + {name:"Work in Progress",value:"3"}, + {name:"Parked or Disabled Aircraft",value:"4"} + ] + }, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"DEV",desc:"Deck Level",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FPT",desc:"Airfield Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Major",value:"1"}, + {name:"Minor and Hard",value:"2"}, + {name:"Minor and Soft",value:"3"}, + {name:"Minor",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GB052_RIDH",desc:"Runway Direction : Runway Designator (high end)",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"GB052_RIDL",desc:"Runway Direction : Runway Designator (low end)",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"GSGCHC",desc:"Runway Direction : Surface Slope (high end) ",optional:"R",type:"enumeration",defValue:"5", + enumerations:[ + {name:"Open Interval",value:"2"}, + {name:"Greater-than-or-equal to Less-than Interval",value:"3"}, + {name:"Greater-than to Less-than-or-equal Interval",value:"4"}, + {name:"Closed Interval",value:"5"}, + {name:"Greater-than Semi-interval",value:"6"}, + {name:"Greater-than or Equal Semi-interval",value:"7"}, + {name:"Less-than Semi-interval",value:"8"}, + {name:"Less-than or Equal Semi-interval",value:"9"} + ] + }, + {name:"GSGCHL",desc:"Runway Direction : Surface Slope (high end) ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"GSGCHU",desc:"Runway Direction : Surface Slope (high end) ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"GSGCLC",desc:"Runway Direction : Surface Slope (low end) ",optional:"R",type:"enumeration",defValue:"5", + enumerations:[ + {name:"Open Interval",value:"2"}, + {name:"Greater-than-or-equal to Less-than Interval",value:"3"}, + {name:"Greater-than to Less-than-or-equal Interval",value:"4"}, + {name:"Closed Interval",value:"5"}, + {name:"Greater-than Semi-interval",value:"6"}, + {name:"Greater-than or Equal Semi-interval",value:"7"}, + {name:"Less-than Semi-interval",value:"8"}, + {name:"Less-than or Equal Semi-interval",value:"9"} + ] + }, + {name:"GSGCLL",desc:"Runway Direction : Surface Slope (low end) ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"GSGCLU",desc:"Runway Direction : Surface Slope (low end) ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"HAF",desc:"Helipad Associated Facility",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Heliport",value:"1"}, + {name:"Land Aerodrome",value:"2"}, + {name:"Hospital",value:"3"}, + {name:"Non-hospital Building",value:"4"}, + {name:"Rig",value:"6"}, + {name:"Offshore Construction",value:"9"}, + {name:"Water Aerodrome",value:"10"}, + {name:"Military Installation",value:"11"}, + {name:"Other",value:"999"} + ] + }, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"HTP",desc:"Hangar Type Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"M - Multi-bay",value:"1"}, + {name:"O - Open End",value:"2"}, + {name:"N - Nose In",value:"3"}, + {name:"G - Underground",value:"4"}, + {name:"S - Single Bay",value:"5"}, + {name:"D - Double Bay",value:"6"}, + {name:"T - T-Shaped",value:"7"} + ] + }, + {name:"IKO",desc:"ICAO Location Indicator",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MAG",desc:"Magnetic Variation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC2",desc:"Structural Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC3",desc:"Structural Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"NA8",desc:"Aerodrome Official Name",optional:"R",type:"String",length:"80",defValue:"noInformation"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PEC",desc:"Port of Entry",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SBB",desc:"Supported by Bridge Span",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS",desc:"Transportation System Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS2",desc:"Transportation System Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS3",desc:"Transportation System Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TXP",desc:"Taxiway Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Parallel Taxiway",value:"1"}, + {name:"Stub Taxiway",value:"2"}, + {name:"Rapid Exit and/or Turnoff Taxiway",value:"3"}, + {name:"Turnaround Taxiway",value:"4"}, + {name:"Dispersal",value:"5"}, + {name:"Loop",value:"6"}, + {name:"Perimeter",value:"7"}, + {name:"Apron Taxiway",value:"8"}, + {name:"Aircraft Stand Taxilane",value:"9"}, + {name:"Lead-in Taxilane",value:"10"}, + {name:"Lead-out Taxilane",value:"11"}, + {name:"Air Taxiway",value:"12"}, + {name:"Helicopter Ground Taxiway",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI019_ASP",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Preparation Method",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aggregate Seal Coat",value:"1"}, + {name:"Graded",value:"2"}, + {name:"Grass",value:"3"}, + {name:"Grooved",value:"4"}, + {name:"Oiled",value:"5"}, + {name:"Porous Friction Course",value:"6"}, + {name:"Rolled",value:"7"}, + {name:"Rubberized Seal Coat",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASP2",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Preparation Method [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aggregate Seal Coat",value:"1"}, + {name:"Graded",value:"2"}, + {name:"Grass",value:"3"}, + {name:"Grooved",value:"4"}, + {name:"Oiled",value:"5"}, + {name:"Porous Friction Course",value:"6"}, + {name:"Rolled",value:"7"}, + {name:"Rubberized Seal Coat",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASP3",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Preparation Method [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aggregate Seal Coat",value:"1"}, + {name:"Graded",value:"2"}, + {name:"Grass",value:"3"}, + {name:"Grooved",value:"4"}, + {name:"Oiled",value:"5"}, + {name:"Porous Friction Course",value:"6"}, + {name:"Rolled",value:"7"}, + {name:"Rubberized Seal Coat",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASU",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Composition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Asphalt",value:"1"}, + {name:"Bituminous Mix",value:"2"}, + {name:"Brick",value:"3"}, + {name:"Clay",value:"4"}, + {name:"Concrete",value:"5"}, + {name:"Coral",value:"6"}, + {name:"Earthen",value:"7"}, + {name:"Gravel",value:"8"}, + {name:"Ice",value:"9"}, + {name:"Landing Mat",value:"10"}, + {name:"Laterite",value:"11"}, + {name:"Macadam",value:"12"}, + {name:"Membrane",value:"13"}, + {name:"Non-bituminous Mix",value:"14"}, + {name:"Pierced Steel Planking",value:"15"}, + {name:"Sand",value:"16"}, + {name:"Snow",value:"17"}, + {name:"Stone",value:"18"}, + {name:"Water",value:"19"}, + {name:"Wood",value:"20"}, + {name:"Asphalt Over Concrete",value:"21"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASU2",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Composition [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Asphalt",value:"1"}, + {name:"Bituminous Mix",value:"2"}, + {name:"Brick",value:"3"}, + {name:"Clay",value:"4"}, + {name:"Concrete",value:"5"}, + {name:"Coral",value:"6"}, + {name:"Earthen",value:"7"}, + {name:"Gravel",value:"8"}, + {name:"Ice",value:"9"}, + {name:"Landing Mat",value:"10"}, + {name:"Laterite",value:"11"}, + {name:"Macadam",value:"12"}, + {name:"Membrane",value:"13"}, + {name:"Non-bituminous Mix",value:"14"}, + {name:"Pierced Steel Planking",value:"15"}, + {name:"Sand",value:"16"}, + {name:"Snow",value:"17"}, + {name:"Stone",value:"18"}, + {name:"Water",value:"19"}, + {name:"Wood",value:"20"}, + {name:"Asphalt Over Concrete",value:"21"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASU3",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Composition [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Asphalt",value:"1"}, + {name:"Bituminous Mix",value:"2"}, + {name:"Brick",value:"3"}, + {name:"Clay",value:"4"}, + {name:"Concrete",value:"5"}, + {name:"Coral",value:"6"}, + {name:"Earthen",value:"7"}, + {name:"Gravel",value:"8"}, + {name:"Ice",value:"9"}, + {name:"Landing Mat",value:"10"}, + {name:"Laterite",value:"11"}, + {name:"Macadam",value:"12"}, + {name:"Membrane",value:"13"}, + {name:"Non-bituminous Mix",value:"14"}, + {name:"Pierced Steel Planking",value:"15"}, + {name:"Sand",value:"16"}, + {name:"Snow",value:"17"}, + {name:"Stone",value:"18"}, + {name:"Water",value:"19"}, + {name:"Wood",value:"20"}, + {name:"Asphalt Over Concrete",value:"21"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASX",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Completely Paved",value:"1"}, + {name:"Mostly Paved",value:"2"}, + {name:"Unprepared",value:"3"}, + {name:"Partially Paved",value:"4"}, + {name:"Unpaved",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_SFS",desc:"Aerodrome Pavement Information : Aerodrome Pavement Functional Status",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Fair",value:"1"}, + {name:"Fair Estimated",value:"2"}, + {name:"Good",value:"3"}, + {name:"Good Estimated",value:"4"}, + {name:"Poor",value:"5"}, + {name:"Poor Estimated",value:"6"}, + {name:"Under Construction",value:"7"}, + {name:"Unserviceable",value:"8"}, + {name:"Excellent",value:"9"} + ] + }, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVA",desc:"Aerodrome Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"AgriculturePnt",fcode:"",desc:"AgriculturePoints",geom:"Point",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"DMT",desc:"Canopy Cover",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PPO",desc:"Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO2",desc:"Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO3",desc:"Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"TOS",desc:"Tower Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mast",value:"6"}, + {name:"Tripod",value:"11"}, + {name:"Truss",value:"12"}, + {name:"Tubular",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRE",desc:"Foliage Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Deciduous",value:"1"}, + {name:"Evergreen",value:"2"}, + {name:"Mixed",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"VSP",desc:"Vegetation Species",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mangrove",value:"19"}, + {name:"Nipa",value:"22"}, + {name:"Swamp Cypress",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"VSP2",desc:"Vegetation Species [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mangrove",value:"19"}, + {name:"Nipa",value:"22"}, + {name:"Swamp Cypress",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"VSP3",desc:"Vegetation Species [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mangrove",value:"19"}, + {name:"Nipa",value:"22"}, + {name:"Swamp Cypress",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI013_CSP",desc:"Crop Information : Crop Species",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"Hop",value:"18"} + ] + }, + {name:"ZI013_CSP2",desc:"Crop Information : Crop Species [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Cork-Oak",value:"8"}, + {name:"Cacao",value:"9"}, + {name:"Coffee",value:"10"}, + {name:"Oil Crop",value:"22"}, + {name:"Rubber",value:"29"}, + {name:"Sugar Crop",value:"33"}, + {name:"Tea",value:"34"}, + {name:"Tobacco",value:"35"}, + {name:"Banana",value:"41"}, + {name:"Oil Palm",value:"42"}, + {name:"Coconut",value:"43"}, + {name:"Sugar Cane",value:"44"}, + {name:"Cotton",value:"45"}, + {name:"Bamboo",value:"46"}, + {name:"Timber",value:"48"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI013_CSP3",desc:"Crop Information : Crop Species [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Cork-Oak",value:"8"}, + {name:"Cacao",value:"9"}, + {name:"Coffee",value:"10"}, + {name:"Oil Crop",value:"22"}, + {name:"Rubber",value:"29"}, + {name:"Sugar Crop",value:"33"}, + {name:"Tea",value:"34"}, + {name:"Tobacco",value:"35"}, + {name:"Banana",value:"41"}, + {name:"Oil Palm",value:"42"}, + {name:"Coconut",value:"43"}, + {name:"Sugar Cane",value:"44"}, + {name:"Cotton",value:"45"}, + {name:"Bamboo",value:"46"}, + {name:"Timber",value:"48"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI013_FFP",desc:"Crop Information : Farming Pattern",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Linear",value:"1"}, + {name:"Regular",value:"2"}, + {name:"Terraced",value:"3"}, + {name:"Intermingled Woods",value:"4"}, + {name:"Intermingled Trees",value:"5"}, + {name:"Treeless",value:"6"}, + {name:"Trellised",value:"7"}, + {name:"Irregular",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI013_FFP2",desc:"Crop Information : Farming Pattern [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Linear",value:"1"}, + {name:"Regular",value:"2"}, + {name:"Terraced",value:"3"}, + {name:"Intermingled Woods",value:"4"}, + {name:"Intermingled Trees",value:"5"}, + {name:"Treeless",value:"6"}, + {name:"Trellised",value:"7"}, + {name:"Irregular",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI013_FFP3",desc:"Crop Information : Farming Pattern [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Linear",value:"1"}, + {name:"Regular",value:"2"}, + {name:"Terraced",value:"3"}, + {name:"Intermingled Woods",value:"4"}, + {name:"Intermingled Trees",value:"5"}, + {name:"Treeless",value:"6"}, + {name:"Trellised",value:"7"}, + {name:"Irregular",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI013_FMM",desc:"Crop Information : Farming Method",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Fallow",value:"1"}, + {name:"Grazing",value:"2"}, + {name:"Permanent",value:"3"}, + {name:"Slash and Burn",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI013_FMM2",desc:"Crop Information : Farming Method [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Fallow",value:"1"}, + {name:"Grazing",value:"2"}, + {name:"Permanent",value:"3"}, + {name:"Slash and Burn",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI013_FMM3",desc:"Crop Information : Farming Method [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Fallow",value:"1"}, + {name:"Grazing",value:"2"}, + {name:"Permanent",value:"3"}, + {name:"Slash and Burn",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI013_PIG",desc:"Crop Information : Permanent Irrigation",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI014_PPO",desc:"Manufacturing Information : Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO2",desc:"Manufacturing Information : Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO3",desc:"Manufacturing Information : Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"AgricultureSrf",fcode:"",desc:"AgricultureSurfaces",geom:"Area",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"DMT",desc:"Canopy Cover",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PPO",desc:"Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO2",desc:"Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO3",desc:"Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PVH",desc:"Predominant Vegetation Height",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"TOS",desc:"Tower Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mast",value:"6"}, + {name:"Tripod",value:"11"}, + {name:"Truss",value:"12"}, + {name:"Tubular",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRE",desc:"Foliage Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Deciduous",value:"1"}, + {name:"Evergreen",value:"2"}, + {name:"Mixed",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"VSP",desc:"Vegetation Species",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mangrove",value:"19"}, + {name:"Nipa",value:"22"}, + {name:"Swamp Cypress",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"VSP2",desc:"Vegetation Species [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mangrove",value:"19"}, + {name:"Nipa",value:"22"}, + {name:"Swamp Cypress",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"VSP3",desc:"Vegetation Species [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mangrove",value:"19"}, + {name:"Nipa",value:"22"}, + {name:"Swamp Cypress",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"VTI",desc:"Vegetation Trafficability Impact",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI013_CSP",desc:"Crop Information : Crop Species",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"Hop",value:"18"} + ] + }, + {name:"ZI013_CSP2",desc:"Crop Information : Crop Species [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Cork-Oak",value:"8"}, + {name:"Cacao",value:"9"}, + {name:"Coffee",value:"10"}, + {name:"Oil Crop",value:"22"}, + {name:"Rubber",value:"29"}, + {name:"Sugar Crop",value:"33"}, + {name:"Tea",value:"34"}, + {name:"Tobacco",value:"35"}, + {name:"Banana",value:"41"}, + {name:"Oil Palm",value:"42"}, + {name:"Coconut",value:"43"}, + {name:"Sugar Cane",value:"44"}, + {name:"Cotton",value:"45"}, + {name:"Bamboo",value:"46"}, + {name:"Timber",value:"48"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI013_CSP3",desc:"Crop Information : Crop Species [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Cork-Oak",value:"8"}, + {name:"Cacao",value:"9"}, + {name:"Coffee",value:"10"}, + {name:"Oil Crop",value:"22"}, + {name:"Rubber",value:"29"}, + {name:"Sugar Crop",value:"33"}, + {name:"Tea",value:"34"}, + {name:"Tobacco",value:"35"}, + {name:"Banana",value:"41"}, + {name:"Oil Palm",value:"42"}, + {name:"Coconut",value:"43"}, + {name:"Sugar Cane",value:"44"}, + {name:"Cotton",value:"45"}, + {name:"Bamboo",value:"46"}, + {name:"Timber",value:"48"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI013_FFP",desc:"Crop Information : Farming Pattern",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Linear",value:"1"}, + {name:"Regular",value:"2"}, + {name:"Terraced",value:"3"}, + {name:"Intermingled Woods",value:"4"}, + {name:"Intermingled Trees",value:"5"}, + {name:"Treeless",value:"6"}, + {name:"Trellised",value:"7"}, + {name:"Irregular",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI013_FFP2",desc:"Crop Information : Farming Pattern [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Linear",value:"1"}, + {name:"Regular",value:"2"}, + {name:"Terraced",value:"3"}, + {name:"Intermingled Woods",value:"4"}, + {name:"Intermingled Trees",value:"5"}, + {name:"Treeless",value:"6"}, + {name:"Trellised",value:"7"}, + {name:"Irregular",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI013_FFP3",desc:"Crop Information : Farming Pattern [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Linear",value:"1"}, + {name:"Regular",value:"2"}, + {name:"Terraced",value:"3"}, + {name:"Intermingled Woods",value:"4"}, + {name:"Intermingled Trees",value:"5"}, + {name:"Treeless",value:"6"}, + {name:"Trellised",value:"7"}, + {name:"Irregular",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI013_FMM",desc:"Crop Information : Farming Method",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Fallow",value:"1"}, + {name:"Grazing",value:"2"}, + {name:"Permanent",value:"3"}, + {name:"Slash and Burn",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI013_FMM2",desc:"Crop Information : Farming Method [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Fallow",value:"1"}, + {name:"Grazing",value:"2"}, + {name:"Permanent",value:"3"}, + {name:"Slash and Burn",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI013_FMM3",desc:"Crop Information : Farming Method [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Fallow",value:"1"}, + {name:"Grazing",value:"2"}, + {name:"Permanent",value:"3"}, + {name:"Slash and Burn",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI013_IRG",desc:"Crop Information : Irrigation Method",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Furrow",value:"1"}, + {name:"Overhead",value:"2"}, + {name:"Center Pivot",value:"3"}, + {name:"Linear Move",value:"4"}, + {name:"Lateral Move",value:"5"}, + {name:"Drip",value:"6"}, + {name:"Subirrigation",value:"7"}, + {name:"Terrace",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI013_PIG",desc:"Crop Information : Permanent Irrigation",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI014_PPO",desc:"Manufacturing Information : Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO2",desc:"Manufacturing Information : Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO3",desc:"Manufacturing Information : Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"AirspaceSrf",fcode:"",desc:"AirspaceSurfaces",geom:"Area",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AIA",desc:"Airspace Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ATY",desc:"Airspace Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Air Defense Identification Zone",value:"1"}, + {name:"Airway",value:"2"}, + {name:"Alert Area",value:"3"}, + {name:"Altimeter Setting Region",value:"4"}, + {name:"AMC Manageable Danger Area",value:"5"}, + {name:"AMC Manageable Restricted Area",value:"6"}, + {name:"Control Area",value:"7"}, + {name:"Control Sector",value:"8"}, + {name:"Control Zone",value:"9"}, + {name:"Cross Border Area",value:"10"}, + {name:"Danger Area",value:"11"}, + {name:"Flight Peripheral Zone",value:"12"}, + {name:"Area Minimum Altitude",value:"13"}, + {name:"Oceanic Control Area",value:"14"}, + {name:"Prohibited Area",value:"15"}, + {name:"Restricted Area",value:"16"}, + {name:"Temporary Segregated Area",value:"17"}, + {name:"Temporary Reserved Area",value:"18"}, + {name:"Terminal Control Area",value:"19"}, + {name:"Upper Control Area",value:"20"}, + {name:"Upper Flight Information Region",value:"21"}, + {name:"Lower Traffic Area",value:"22"}, + {name:"Advisory Area",value:"23"}, + {name:"Upper Advisory Area",value:"24"}, + {name:"Military Aerodrome Traffic Zone",value:"25"}, + {name:"Aerodrome Traffic Zone",value:"26"}, + {name:"Military Terminal Control Area",value:"27"}, + {name:"Standard Pressure Region",value:"28"}, + {name:"Reduced Co-ordination Area",value:"29"}, + {name:"French Peripheral Zone",value:"30"}, + {name:"Warning Area",value:"31"}, + {name:"German Night Low Flying System",value:"32"}, + {name:"German Deconfliction Line",value:"33"}, + {name:"German Low Flying Areas",value:"34"}, + {name:"Special Rules Zone",value:"35"}, + {name:"Military Operations Area",value:"36"}, + {name:"No-fly Area",value:"41"}, + {name:"Buffer Zone",value:"42"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"COUNTRY_CODE",desc:"Country Code",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"NAA",desc:"Airspace Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI020_GE42",desc:"Location Country Designation : GENC Short URN-based Identifier second",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI020_GE43",desc:"Location Country Designation : GENC Short URN-based Identifier third",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI020_GE44",desc:"Location Country Designation : GENC Short URN-based Identifier fourth",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"AnchoragePnt",fcode:"",desc:"AnchoragePoints",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"AnchorageSrf",fcode:"",desc:"AnchorageSurfaces",geom:"Area",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"AquaticVegetationSrf",fcode:"",desc:"AquaticVegetationSurfaces",geom:"Area",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"VSP",desc:"Vegetation Species",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mangrove",value:"19"}, + {name:"Nipa",value:"22"}, + {name:"Swamp Cypress",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"VSP2",desc:"Vegetation Species [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mangrove",value:"19"}, + {name:"Nipa",value:"22"}, + {name:"Swamp Cypress",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"VSP3",desc:"Vegetation Species [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mangrove",value:"19"}, + {name:"Nipa",value:"22"}, + {name:"Swamp Cypress",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI025_WLE",desc:"Hydrographic Vertical Positioning Information : Water Level Effect",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Partly Submerged",value:"1"}, + {name:"Always Dry",value:"2"}, + {name:"Always Submerged",value:"3"}, + {name:"Covers and Uncovers",value:"4"}, + {name:"Awash at Low Water",value:"5"}, + {name:"Awash at Chart Datum",value:"9"} + ] + }, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"BillboardPnt",fcode:"",desc:"BillboardPoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AWP",desc:"Aeronautical Obstacle Light Present",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HEI",desc:"Height of Object",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"BoundaryPnt",fcode:"",desc:"BoundaryPoints",geom:"Point",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC2",desc:"Structural Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC3",desc:"Structural Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"BridgeSuperStructurePnt",fcode:"",desc:"BridgeSuperStructurePoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AWP",desc:"Aeronautical Obstacle Light Present",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"BRN",desc:"Bridge Reference Number",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HEI",desc:"Height of Object",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"CampPnt",fcode:"",desc:"CampPoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"STL",desc:"Nomadic Seasonal Location",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Winter",value:"1"}, + {name:"Summer",value:"2"}, + {name:"Spring",value:"3"}, + {name:"Autumn",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"STL2",desc:"Nomadic Seasonal Location [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Winter",value:"1"}, + {name:"Summer",value:"2"}, + {name:"Spring",value:"3"}, + {name:"Autumn",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"STL3",desc:"Nomadic Seasonal Location [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Winter",value:"1"}, + {name:"Summer",value:"2"}, + {name:"Spring",value:"3"}, + {name:"Autumn",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"CampSrf",fcode:"",desc:"CampSurface",geom:"Area",fdname:"TDS_CARTO", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"STL",desc:"Nomadic Seasonal Location",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Winter",value:"1"}, + {name:"Summer",value:"2"}, + {name:"Spring",value:"3"}, + {name:"Autumn",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"STL2",desc:"Nomadic Seasonal Location [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Winter",value:"1"}, + {name:"Summer",value:"2"}, + {name:"Spring",value:"3"}, + {name:"Autumn",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"STL3",desc:"Nomadic Seasonal Location [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Winter",value:"1"}, + {name:"Summer",value:"2"}, + {name:"Spring",value:"3"}, + {name:"Autumn",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"CaravanParkPnt",fcode:"",desc:"CaravanParkPoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"CultureCrv",fcode:"",desc:"CultureCurves",geom:"Line",fdname:"TDS", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SSC",desc:"Structure Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pyramidal",value:"12"}, + {name:"Spherical",value:"17"}, + {name:"Arched",value:"77"}, + {name:"Multiple Arched",value:"78"}, + {name:"Columnar",value:"95"}, + {name:"Plaque",value:"96"}, + {name:"Statue",value:"97"}, + {name:"Cross",value:"98"}, + {name:"Obelisk",value:"109"}, + {name:"Statue on Pedestal",value:"112"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"TOS",desc:"Tower Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mast",value:"6"}, + {name:"Tripod",value:"11"}, + {name:"Truss",value:"12"}, + {name:"Tubular",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"CulturePnt",fcode:"",desc:"CulturePoints",geom:"Point",fdname:"TDS", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SSC",desc:"Structure Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pyramidal",value:"12"}, + {name:"Spherical",value:"17"}, + {name:"Arched",value:"77"}, + {name:"Multiple Arched",value:"78"}, + {name:"Columnar",value:"95"}, + {name:"Plaque",value:"96"}, + {name:"Statue",value:"97"}, + {name:"Cross",value:"98"}, + {name:"Obelisk",value:"109"}, + {name:"Statue on Pedestal",value:"112"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"TOS",desc:"Tower Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mast",value:"6"}, + {name:"Tripod",value:"11"}, + {name:"Truss",value:"12"}, + {name:"Tubular",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TTY",desc:"Tomb Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Cave",value:"1"}, + {name:"Catacomb",value:"2"}, + {name:"Crypt",value:"3"}, + {name:"Surface Vault",value:"4"}, + {name:"Mausoleum",value:"5"}, + {name:"Burial Mound",value:"6"}, + {name:"Columbarium",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI024_YWQ",desc:"Water Resource Information : Water Potability",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Potable",value:"1"}, + {name:"Treatable",value:"2"}, + {name:"Contaminated",value:"3"}, + {name:"Nonpotable",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI037_REL",desc:"Religious Information : Religious Designation",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Buddhism",value:"1"}, + {name:"Islam",value:"2"}, + {name:"Roman Catholic",value:"3"}, + {name:"Christian",value:"4"}, + {name:"Judaism",value:"5"}, + {name:"Orthodox",value:"6"}, + {name:"Protestant",value:"7"}, + {name:"Shinto",value:"8"}, + {name:"Hinduism",value:"9"}, + {name:"Shia",value:"10"}, + {name:"Sunni",value:"11"}, + {name:"Nestorian",value:"12"}, + {name:"Chaldean",value:"13"}, + {name:"Mixed and/or No Designation",value:"14"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"CultureSrf",fcode:"",desc:"CultureSurfaces",geom:"Area",fdname:"TDS", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CAM",desc:"Conservation Area Management Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Strict Nature Reserve",value:"1"}, + {name:"Wilderness Area",value:"2"}, + {name:"National Park",value:"3"}, + {name:"Natural Monument",value:"4"}, + {name:"Habitat and/or Species Management Area",value:"5"}, + {name:"Habitat Management Area",value:"6"}, + {name:"Species Management Area",value:"7"}, + {name:"Breeding Ground",value:"8"}, + {name:"Protected Landscape or Seascape",value:"9"}, + {name:"Managed Resource Protected Area",value:"10"}, + {name:"Managed Forest Protected Area",value:"11"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SSC",desc:"Structure Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pyramidal",value:"12"}, + {name:"Spherical",value:"17"}, + {name:"Arched",value:"77"}, + {name:"Multiple Arched",value:"78"}, + {name:"Columnar",value:"95"}, + {name:"Plaque",value:"96"}, + {name:"Statue",value:"97"}, + {name:"Cross",value:"98"}, + {name:"Obelisk",value:"109"}, + {name:"Statue on Pedestal",value:"112"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"TOS",desc:"Tower Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mast",value:"6"}, + {name:"Tripod",value:"11"}, + {name:"Truss",value:"12"}, + {name:"Tubular",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TTY",desc:"Tomb Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Cave",value:"1"}, + {name:"Catacomb",value:"2"}, + {name:"Crypt",value:"3"}, + {name:"Surface Vault",value:"4"}, + {name:"Mausoleum",value:"5"}, + {name:"Burial Mound",value:"6"}, + {name:"Columbarium",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI024_YWQ",desc:"Water Resource Information : Water Potability",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Potable",value:"1"}, + {name:"Treatable",value:"2"}, + {name:"Contaminated",value:"3"}, + {name:"Nonpotable",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI037_REL",desc:"Religious Information : Religious Designation",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Buddhism",value:"1"}, + {name:"Islam",value:"2"}, + {name:"Roman Catholic",value:"3"}, + {name:"Christian",value:"4"}, + {name:"Judaism",value:"5"}, + {name:"Orthodox",value:"6"}, + {name:"Protestant",value:"7"}, + {name:"Shinto",value:"8"}, + {name:"Hinduism",value:"9"}, + {name:"Shia",value:"10"}, + {name:"Sunni",value:"11"}, + {name:"Nestorian",value:"12"}, + {name:"Chaldean",value:"13"}, + {name:"Mixed and/or No Designation",value:"14"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI037_RFA",desc:"Religious Information : Religious Facility Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Cathedral",value:"1"}, + {name:"Chapel",value:"2"}, + {name:"Church",value:"3"}, + {name:"Marabout",value:"4"}, + {name:"Minaret",value:"5"}, + {name:"Mission",value:"6"}, + {name:"Mosque",value:"7"}, + {name:"Pagoda",value:"8"}, + {name:"Religious Community",value:"9"}, + {name:"Seminary",value:"10"}, + {name:"Shrine",value:"11"}, + {name:"Stupa",value:"12"}, + {name:"Synagogue",value:"13"}, + {name:"Tabernacle",value:"14"}, + {name:"Temple",value:"15"}, + {name:"Convent",value:"18"}, + {name:"Monastery",value:"19"}, + {name:"Noviciate",value:"20"}, + {name:"Hermitage",value:"21"}, + {name:"Retreat",value:"22"}, + {name:"Islamic Prayer Hall",value:"25"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"DepthCurveCrv",fcode:"",desc:"DepthCurveCurves",geom:"Line",fdname:"TDS_CARTO", + columns:[ + {name:"ACC",desc:"Horizontal Accuracy Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Accurate",value:"1"}, + {name:"Approximate",value:"2"} + ] + }, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CRV",desc:"Depth Curve or Contour value",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"DistanceMeasuringEquipmentPnt",fcode:"",desc:"DistanceMeasuringEquipmentPoints",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"DolphinPnt",fcode:"",desc:"DolphinPoints",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"DriveInTheatrePnt",fcode:"",desc:"DriveInTheatrePoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"EngineTestCellPnt",fcode:"",desc:"EngineTestCellPoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AWP",desc:"Aeronautical Obstacle Light Present",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ETY",desc:"Engine Test Cell Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Jet Engine Dismounted",value:"1"}, + {name:"Jet Engine Mounted",value:"2"}, + {name:"Rocket Engine Upright",value:"3"}, + {name:"Rocket Engine Horizontal",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SRL",desc:"Location Referenced to Shoreline",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Offshore",value:"1"}, + {name:"Inland",value:"2"}, + {name:"At Shoreline",value:"3"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"EngineTestCellSrf",fcode:"",desc:"EngineTestCellSurface",geom:"Area",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AWP",desc:"Aeronautical Obstacle Light Present",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ETY",desc:"Engine Test Cell Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Jet Engine Dismounted",value:"1"}, + {name:"Jet Engine Mounted",value:"2"}, + {name:"Rocket Engine Upright",value:"3"}, + {name:"Rocket Engine Horizontal",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SRL",desc:"Location Referenced to Shoreline",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Offshore",value:"1"}, + {name:"Inland",value:"2"}, + {name:"At Shoreline",value:"3"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"ExcavatingMachinePnt",fcode:"",desc:"ExcavatingMachinePoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AWP",desc:"Aeronautical Obstacle Light Present",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"FacilityPnt",fcode:"",desc:"FacilityPoints",geom:"Point",fdname:"TDS", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PRM",desc:"Permanent",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"RAS",desc:"Radar Station Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"General Surveillance",value:"1"}, + {name:"Coastal Radar",value:"2"}, + {name:"Early Warning",value:"5"}, + {name:"Weather",value:"6"}, + {name:"Satellite Tracking",value:"7"}, + {name:"Aircraft Flight Tracking",value:"8"}, + {name:"Fire Control Tracking",value:"9"}, + {name:"Launch Control Tracking",value:"10"}, + {name:"Aerodrome Ground Surveillance",value:"11"}, + {name:"Precision Approach",value:"12"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"YSU",desc:"Military Service Branch",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Air Force",value:"1"}, + {name:"Army",value:"2"}, + {name:"Coastguard",value:"3"}, + {name:"Marines",value:"4"}, + {name:"Navy",value:"5"}, + {name:"Joint",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI014_PBY",desc:"Manufacturing Information : By-product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PBY2",desc:"Manufacturing Information : By-product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PBY3",desc:"Manufacturing Information : By-product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO",desc:"Manufacturing Information : Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO2",desc:"Manufacturing Information : Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO3",desc:"Manufacturing Information : Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW",desc:"Manufacturing Information : Raw Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW2",desc:"Manufacturing Information : Raw Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW3",desc:"Manufacturing Information : Raw Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI018_WIT",desc:"Wireless Telecommunication Information : Wireless Telecommunication Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Cellular Phone",value:"1"}, + {name:"Microwave Radio Relay",value:"2"}, + {name:"Mobile Phone",value:"3"}, + {name:"Radio Broadcast",value:"4"}, + {name:"Radio Telephone",value:"5"}, + {name:"Radio-telegraph",value:"6"}, + {name:"Television (TV)",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI037_REL",desc:"Religious Information : Religious Designation",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Buddhism",value:"1"}, + {name:"Islam",value:"2"}, + {name:"Roman Catholic",value:"3"}, + {name:"Christian",value:"4"}, + {name:"Judaism",value:"5"}, + {name:"Orthodox",value:"6"}, + {name:"Protestant",value:"7"}, + {name:"Shinto",value:"8"}, + {name:"Hinduism",value:"9"}, + {name:"Shia",value:"10"}, + {name:"Sunni",value:"11"}, + {name:"Nestorian",value:"12"}, + {name:"Chaldean",value:"13"}, + {name:"Mixed and/or No Designation",value:"14"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI037_RFA",desc:"Religious Information : Religious Facility Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Cathedral",value:"1"}, + {name:"Chapel",value:"2"}, + {name:"Church",value:"3"}, + {name:"Marabout",value:"4"}, + {name:"Minaret",value:"5"}, + {name:"Mission",value:"6"}, + {name:"Mosque",value:"7"}, + {name:"Pagoda",value:"8"}, + {name:"Religious Community",value:"9"}, + {name:"Seminary",value:"10"}, + {name:"Shrine",value:"11"}, + {name:"Stupa",value:"12"}, + {name:"Synagogue",value:"13"}, + {name:"Tabernacle",value:"14"}, + {name:"Temple",value:"15"}, + {name:"Convent",value:"18"}, + {name:"Monastery",value:"19"}, + {name:"Noviciate",value:"20"}, + {name:"Hermitage",value:"21"}, + {name:"Retreat",value:"22"}, + {name:"Islamic Prayer Hall",value:"25"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"FacilitySrf",fcode:"",desc:"FacilitySurfaces",geom:"Area",fdname:"TDS", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PRM",desc:"Permanent",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"RAS",desc:"Radar Station Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"General Surveillance",value:"1"}, + {name:"Coastal Radar",value:"2"}, + {name:"Early Warning",value:"5"}, + {name:"Weather",value:"6"}, + {name:"Satellite Tracking",value:"7"}, + {name:"Aircraft Flight Tracking",value:"8"}, + {name:"Fire Control Tracking",value:"9"}, + {name:"Launch Control Tracking",value:"10"}, + {name:"Aerodrome Ground Surveillance",value:"11"}, + {name:"Precision Approach",value:"12"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"YSU",desc:"Military Service Branch",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Air Force",value:"1"}, + {name:"Army",value:"2"}, + {name:"Coastguard",value:"3"}, + {name:"Marines",value:"4"}, + {name:"Navy",value:"5"}, + {name:"Joint",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI014_PBY",desc:"Manufacturing Information : By-product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PBY2",desc:"Manufacturing Information : By-product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PBY3",desc:"Manufacturing Information : By-product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO",desc:"Manufacturing Information : Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO2",desc:"Manufacturing Information : Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO3",desc:"Manufacturing Information : Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW",desc:"Manufacturing Information : Raw Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW2",desc:"Manufacturing Information : Raw Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW3",desc:"Manufacturing Information : Raw Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI018_WIT",desc:"Wireless Telecommunication Information : Wireless Telecommunication Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Cellular Phone",value:"1"}, + {name:"Microwave Radio Relay",value:"2"}, + {name:"Mobile Phone",value:"3"}, + {name:"Radio Broadcast",value:"4"}, + {name:"Radio Telephone",value:"5"}, + {name:"Radio-telegraph",value:"6"}, + {name:"Television (TV)",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI037_REL",desc:"Religious Information : Religious Designation",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Buddhism",value:"1"}, + {name:"Islam",value:"2"}, + {name:"Roman Catholic",value:"3"}, + {name:"Christian",value:"4"}, + {name:"Judaism",value:"5"}, + {name:"Orthodox",value:"6"}, + {name:"Protestant",value:"7"}, + {name:"Shinto",value:"8"}, + {name:"Hinduism",value:"9"}, + {name:"Shia",value:"10"}, + {name:"Sunni",value:"11"}, + {name:"Nestorian",value:"12"}, + {name:"Chaldean",value:"13"}, + {name:"Mixed and/or No Designation",value:"14"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI037_RFA",desc:"Religious Information : Religious Facility Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Cathedral",value:"1"}, + {name:"Chapel",value:"2"}, + {name:"Church",value:"3"}, + {name:"Marabout",value:"4"}, + {name:"Minaret",value:"5"}, + {name:"Mission",value:"6"}, + {name:"Mosque",value:"7"}, + {name:"Pagoda",value:"8"}, + {name:"Religious Community",value:"9"}, + {name:"Seminary",value:"10"}, + {name:"Shrine",value:"11"}, + {name:"Stupa",value:"12"}, + {name:"Synagogue",value:"13"}, + {name:"Tabernacle",value:"14"}, + {name:"Temple",value:"15"}, + {name:"Convent",value:"18"}, + {name:"Monastery",value:"19"}, + {name:"Noviciate",value:"20"}, + {name:"Hermitage",value:"21"}, + {name:"Retreat",value:"22"}, + {name:"Islamic Prayer Hall",value:"25"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"FairGroundPnt",fcode:"",desc:"FairGroundPoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"FerryCrossingPnt",fcode:"",desc:"FerryCrossingPoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FER",desc:"Ferry Crossing Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Cable",value:"1"}, + {name:"Free-moving",value:"2"}, + {name:"Ice",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCX",desc:"Motorized Crossing",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"OPT",desc:"Operating Cycle",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Daytime",value:"1"}, + {name:"Night-time",value:"2"}, + {name:"Continuously Operating",value:"3"}, + {name:"Summer Season",value:"4"}, + {name:"Winter Season",value:"5"}, + {name:"Restricted",value:"6"}, + {name:"Never Operating",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"RIN_ROI",desc:"Route Identification ",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"International",value:"1"}, + {name:"National Motorway",value:"2"}, + {name:"National",value:"3"}, + {name:"Secondary",value:"4"}, + {name:"Local",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"RIN_ROI2",desc:"Route Identification [2] ",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"International",value:"1"}, + {name:"National Motorway",value:"2"}, + {name:"National",value:"3"}, + {name:"Secondary",value:"4"}, + {name:"Local",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"RIN_ROI3",desc:"Route Identification [3] ",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"International",value:"1"}, + {name:"National Motorway",value:"2"}, + {name:"National",value:"3"}, + {name:"Secondary",value:"4"}, + {name:"Local",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"RIN_RTN",desc:"Route Identification ",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"RIN_RTN2",desc:"Route Identification [2] ",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"RIN_RTN3",desc:"Route Identification [3] ",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"TRS",desc:"Transportation System Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS2",desc:"Transportation System Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS3",desc:"Transportation System Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"FishWeirCrv",fcode:"",desc:"FishWeirCurve",geom:"Line",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PSE",desc:"Periodic Restriction Month Interval",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"FishWeirPnt",fcode:"",desc:"FishWeirPoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PSE",desc:"Periodic Restriction Month Interval",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"FlagpolePnt",fcode:"",desc:"FlagpolePoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AWP",desc:"Aeronautical Obstacle Light Present",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HEI",desc:"Height of Object",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"FlowArrowPnt",fcode:"",desc:"FlowArrowPoints",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"ForeshoreSrf",fcode:"",desc:"ForeshoreSurfaces",geom:"Area",fdname:"TDS_CARTO", + columns:[ + {name:"ACC",desc:"Horizontal Accuracy Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Accurate",value:"1"}, + {name:"Approximate",value:"2"} + ] + }, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"GeophysicalDataTrackLineCrv",fcode:"",desc:"GeophysicalDataTrackLineCurves",geom:"Line",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"GeopoliticalEntitySrf",fcode:"",desc:"GeopoliticalEntitySurfaces",geom:"Area",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GEC",desc:"Geopolitical Entity Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Area of No Sovereignty",value:"5"}, + {name:"Demilitarized Zone (DMZ)",value:"7"}, + {name:"Zone of Occupation",value:"8"}, + {name:"Leased Area",value:"9"}, + {name:"Political Entity",value:"10"}, + {name:"Dependent Political Entity",value:"11"}, + {name:"Freely Associated State",value:"12"}, + {name:"Independent Political Entity",value:"13"}, + {name:"Semi-independent Political Entity",value:"14"}, + {name:"Economic Region",value:"15"}, + {name:"Territory",value:"16"}, + {name:"Buffer Zone",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"GolfCoursePnt",fcode:"",desc:"GolfCoursePoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"HazardousRockPnt",fcode:"",desc:"HazardousRockPoints",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"ACC",desc:"Horizontal Accuracy Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Accurate",value:"1"}, + {name:"Approximate",value:"2"} + ] + }, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI025_WLE",desc:"Hydrographic Vertical Positioning Information : Water Level Effect",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Partly Submerged",value:"1"}, + {name:"Always Dry",value:"2"}, + {name:"Always Submerged",value:"3"}, + {name:"Covers and Uncovers",value:"4"}, + {name:"Awash at Low Water",value:"5"}, + {name:"Awash at Chart Datum",value:"9"} + ] + }, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"HydroAidNavigationPnt",fcode:"",desc:"HydroAidNavigationPoints",geom:"Point",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MAN",desc:"Maritime Navigation Marked",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"HydroAidNavigationSrf",fcode:"",desc:"HydroAidNavigationSurfaces",geom:"Area",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MAN",desc:"Maritime Navigation Marked",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"HydroCarbonsFieldPnt",fcode:"",desc:"HydroCarbonsFieldPoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PPO",desc:"Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO2",desc:"Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO3",desc:"Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"HydrographyCrv",fcode:"",desc:"HydrographyCurves",geom:"Line",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ATC",desc:"Aqueduct Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Underground",value:"3"}, + {name:"Underwater",value:"4"}, + {name:"Surface",value:"5"}, + {name:"Qanat",value:"6"} + ] + }, + {name:"BH141_SLTA",desc:"Inland Waterbody Bank : Shoreline Type (first bank)",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mangrove",value:"6"}, + {name:"Marshy",value:"8"}, + {name:"Stony",value:"10"}, + {name:"Building Rubble",value:"11"}, + {name:"Erosion Rubble",value:"12"}, + {name:"Sandy",value:"13"}, + {name:"Shingly",value:"14"}, + {name:"Ice",value:"17"}, + {name:"Mud",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"BH141_SLTB",desc:"Inland Waterbody Bank : Shoreline Type (second bank)",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mangrove",value:"6"}, + {name:"Marshy",value:"8"}, + {name:"Stony",value:"10"}, + {name:"Building Rubble",value:"11"}, + {name:"Erosion Rubble",value:"12"}, + {name:"Sandy",value:"13"}, + {name:"Shingly",value:"14"}, + {name:"Ice",value:"17"}, + {name:"Mud",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"BMC",desc:"Bottom Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Clay and Silt",value:"1"}, + {name:"Silty Sands",value:"2"}, + {name:"Sand and Gravel",value:"3"}, + {name:"Gravel and Cobble",value:"4"}, + {name:"Rocks and Boulders",value:"5"}, + {name:"Bedrock",value:"6"}, + {name:"Peat",value:"8"}, + {name:"Sand over Mud",value:"9"}, + {name:"Sand",value:"14"}, + {name:"Soil",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"BMC2",desc:"Bottom Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Clay and Silt",value:"1"}, + {name:"Silty Sands",value:"2"}, + {name:"Sand and Gravel",value:"3"}, + {name:"Gravel and Cobble",value:"4"}, + {name:"Rocks and Boulders",value:"5"}, + {name:"Bedrock",value:"6"}, + {name:"Peat",value:"8"}, + {name:"Sand over Mud",value:"9"}, + {name:"Sand",value:"14"}, + {name:"Soil",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"BMC3",desc:"Bottom Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Clay and Silt",value:"1"}, + {name:"Silty Sands",value:"2"}, + {name:"Sand and Gravel",value:"3"}, + {name:"Gravel and Cobble",value:"4"}, + {name:"Rocks and Boulders",value:"5"}, + {name:"Bedrock",value:"6"}, + {name:"Peat",value:"8"}, + {name:"Sand over Mud",value:"9"}, + {name:"Sand",value:"14"}, + {name:"Soil",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDA",desc:"Covered Drain",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CWT",desc:"Contained within Tunnel",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"DEV",desc:"Deck Level",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"DFT",desc:"Dam Face Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Vertical",value:"1"}, + {name:"Slope",value:"2"} + ] + }, + {name:"DFU",desc:"Dam Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Impoundment",value:"1"}, + {name:"Navigation",value:"2"}, + {name:"Flood Control",value:"3"}, + {name:"Hydroelectric Power Generation",value:"4"}, + {name:"Weir",value:"5"}, + {name:"Irrigation",value:"6"}, + {name:"Recreation",value:"7"}, + {name:"Water Supply",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"DIM",desc:"Diameter",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"FCS",desc:"Flood Control Structure Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Dyke Gate",value:"1"}, + {name:"Emergency Gate",value:"2"}, + {name:"Flood Gate",value:"3"}, + {name:"Fixed Barrage",value:"4"}, + {name:"Movable Barrage",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGS",desc:"Spillway Height",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LDC",desc:"Dam Crest Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LOC",desc:"Vertical Relative Location",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Completely Below Ground Surface",value:"40"}, + {name:"On Surface",value:"44"}, + {name:"Above Surface",value:"45"} + ] + }, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC2",desc:"Structural Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC3",desc:"Structural Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"NVS",desc:"Navigability Information",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Navigable and Operational",value:"1"}, + {name:"Navigable but Abandoned",value:"2"}, + {name:"Navigable",value:"3"}, + {name:"Navigable with Periodic Restrictions",value:"4"}, + {name:"Not Navigable",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PWA",desc:"Predominant Water Depth",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"RLE",desc:"Relative Level",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Raised",value:"1"}, + {name:"Level",value:"2"}, + {name:"Depressed",value:"3"} + ] + }, + {name:"SBB",desc:"Supported by Bridge Span",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"SPT",desc:"Supported",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"THI",desc:"Thickness",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"TID",desc:"Tide Influenced",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"TRS",desc:"Transportation System Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS2",desc:"Transportation System Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS3",desc:"Transportation System Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WCC",desc:"Watercourse Channel Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Channelized Stream",value:"1"}, + {name:"Braided Stream",value:"2"}, + {name:"Gorge",value:"3"}, + {name:"Wadi",value:"4"}, + {name:"Normal Channel",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"WD3",desc:"Terrain Gap Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WMT",desc:"Watercourse Morphology",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mouth",value:"1"}, + {name:"Pool",value:"2"}, + {name:"Bend",value:"3"}, + {name:"Confluence",value:"4"}, + {name:"Cut-off",value:"5"}, + {name:"Reach",value:"6"}, + {name:"Anabranch",value:"7"}, + {name:"Canalized",value:"8"}, + {name:"Distributary",value:"9"}, + {name:"Headwaters",value:"10"}, + {name:"Abandoned",value:"11"}, + {name:"Meander",value:"12"}, + {name:"Other",value:"999"} + ] + }, + {name:"WOC",desc:"Dam Crest Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WRT",desc:"Water Race Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Sluice",value:"1"}, + {name:"Flume",value:"2"}, + {name:"Headrace",value:"3"}, + {name:"Tailrace",value:"4"} + ] + }, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI024_HYP",desc:"Water Resource Information : Hydrologic Persistence",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Perennial",value:"1"}, + {name:"Intermittent",value:"2"}, + {name:"Dry",value:"4"} + ] + }, + {name:"ZI024_SCC",desc:"Water Resource Information : Water Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Alkaline",value:"1"}, + {name:"Mineral",value:"4"}, + {name:"Saline",value:"10"}, + {name:"Fresh",value:"11"}, + {name:"Brackish",value:"12"}, + {name:"Seawater",value:"13"}, + {name:"Brine",value:"14"}, + {name:"Not Applicable",value:"998"} + ] + }, + {name:"ZI024_YWQ",desc:"Water Resource Information : Water Potability",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Potable",value:"1"}, + {name:"Treatable",value:"2"}, + {name:"Contaminated",value:"3"}, + {name:"Nonpotable",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"HydrographyPnt",fcode:"",desc:"HydrographyPoints",geom:"Point",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AZC",desc:"Man-made",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"BH141_SLTA",desc:"Inland Waterbody Bank : Shoreline Type (first bank)",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mangrove",value:"6"}, + {name:"Marshy",value:"8"}, + {name:"Stony",value:"10"}, + {name:"Building Rubble",value:"11"}, + {name:"Erosion Rubble",value:"12"}, + {name:"Sandy",value:"13"}, + {name:"Shingly",value:"14"}, + {name:"Ice",value:"17"}, + {name:"Mud",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"BH141_SLTB",desc:"Inland Waterbody Bank : Shoreline Type (second bank)",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mangrove",value:"6"}, + {name:"Marshy",value:"8"}, + {name:"Stony",value:"10"}, + {name:"Building Rubble",value:"11"}, + {name:"Erosion Rubble",value:"12"}, + {name:"Sandy",value:"13"}, + {name:"Shingly",value:"14"}, + {name:"Ice",value:"17"}, + {name:"Mud",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"DFT",desc:"Dam Face Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Vertical",value:"1"}, + {name:"Slope",value:"2"} + ] + }, + {name:"DFU",desc:"Dam Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Impoundment",value:"1"}, + {name:"Navigation",value:"2"}, + {name:"Flood Control",value:"3"}, + {name:"Hydroelectric Power Generation",value:"4"}, + {name:"Weir",value:"5"}, + {name:"Irrigation",value:"6"}, + {name:"Recreation",value:"7"}, + {name:"Water Supply",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"DMD",desc:"Dammed",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"DOF",desc:"Direction of Flow",optional:"R",type:"Real",length:"8",defValue:"-999999"}, + {name:"FCS",desc:"Flood Control Structure Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Dyke Gate",value:"1"}, + {name:"Emergency Gate",value:"2"}, + {name:"Flood Gate",value:"3"}, + {name:"Fixed Barrage",value:"4"}, + {name:"Movable Barrage",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGS",desc:"Spillway Height",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"IWT",desc:"Inland Water Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Lake",value:"1"}, + {name:"Pond",value:"2"}, + {name:"Undifferentiated Water Body",value:"3"}, + {name:"Reservoir",value:"4"}, + {name:"Basin",value:"5"}, + {name:"Water-hole",value:"6"}, + {name:"Landlocked Sea",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"LDC",desc:"Dam Crest Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC2",desc:"Structural Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC3",desc:"Structural Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MNS",desc:"Man-made Shoreline",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"OCS",desc:"Offshore Construction Primary Structure",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Platform",value:"1"}, + {name:"Terminal Buoy",value:"2"}, + {name:"Catenary Turntable",value:"3"}, + {name:"Submerged Turret",value:"4"}, + {name:"Vessel",value:"5"}, + {name:"Barge",value:"6"}, + {name:"Submerged Platform",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SWT",desc:"Natural Pool Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Spring",value:"4"}, + {name:"Walled-in Spring",value:"6"}, + {name:"Resurgence",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"THI",desc:"Thickness",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"TID",desc:"Tide Influenced",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"TRS",desc:"Transportation System Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS2",desc:"Transportation System Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS3",desc:"Transportation System Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WFT",desc:"Well Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Walled-in",value:"2"}, + {name:"Artesian",value:"3"}, + {name:"Dug or Drilled",value:"5"}, + {name:"Dug",value:"6"}, + {name:"Drilled",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WOC",desc:"Dam Crest Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WST",desc:"Watercourse Sink Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Dissipating",value:"1"}, + {name:"Disappearing",value:"2"}, + {name:"Sinkhole",value:"3"}, + {name:"Hole",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI024_HYP",desc:"Water Resource Information : Hydrologic Persistence",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Perennial",value:"1"}, + {name:"Intermittent",value:"2"}, + {name:"Dry",value:"4"} + ] + }, + {name:"ZI024_SCC",desc:"Water Resource Information : Water Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Alkaline",value:"1"}, + {name:"Mineral",value:"4"}, + {name:"Saline",value:"10"}, + {name:"Fresh",value:"11"}, + {name:"Brackish",value:"12"}, + {name:"Seawater",value:"13"}, + {name:"Brine",value:"14"}, + {name:"Not Applicable",value:"998"} + ] + }, + {name:"ZI024_YWQ",desc:"Water Resource Information : Water Potability",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Potable",value:"1"}, + {name:"Treatable",value:"2"}, + {name:"Contaminated",value:"3"}, + {name:"Nonpotable",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"HydrographySrf",fcode:"",desc:"HydrographySurfaces",geom:"Area",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ATC",desc:"Aqueduct Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Underground",value:"3"}, + {name:"Underwater",value:"4"}, + {name:"Surface",value:"5"}, + {name:"Qanat",value:"6"} + ] + }, + {name:"AZC",desc:"Man-made",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"BH141_SLTA",desc:"Inland Waterbody Bank : Shoreline Type (first bank)",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mangrove",value:"6"}, + {name:"Marshy",value:"8"}, + {name:"Stony",value:"10"}, + {name:"Building Rubble",value:"11"}, + {name:"Erosion Rubble",value:"12"}, + {name:"Sandy",value:"13"}, + {name:"Shingly",value:"14"}, + {name:"Ice",value:"17"}, + {name:"Mud",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"BH141_SLTB",desc:"Inland Waterbody Bank : Shoreline Type (second bank)",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mangrove",value:"6"}, + {name:"Marshy",value:"8"}, + {name:"Stony",value:"10"}, + {name:"Building Rubble",value:"11"}, + {name:"Erosion Rubble",value:"12"}, + {name:"Sandy",value:"13"}, + {name:"Shingly",value:"14"}, + {name:"Ice",value:"17"}, + {name:"Mud",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"BMC",desc:"Bottom Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Clay and Silt",value:"1"}, + {name:"Silty Sands",value:"2"}, + {name:"Sand and Gravel",value:"3"}, + {name:"Gravel and Cobble",value:"4"}, + {name:"Rocks and Boulders",value:"5"}, + {name:"Bedrock",value:"6"}, + {name:"Peat",value:"8"}, + {name:"Sand over Mud",value:"9"}, + {name:"Sand",value:"14"}, + {name:"Soil",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"BMC2",desc:"Bottom Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Clay and Silt",value:"1"}, + {name:"Silty Sands",value:"2"}, + {name:"Sand and Gravel",value:"3"}, + {name:"Gravel and Cobble",value:"4"}, + {name:"Rocks and Boulders",value:"5"}, + {name:"Bedrock",value:"6"}, + {name:"Peat",value:"8"}, + {name:"Sand over Mud",value:"9"}, + {name:"Sand",value:"14"}, + {name:"Soil",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"BMC3",desc:"Bottom Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Clay and Silt",value:"1"}, + {name:"Silty Sands",value:"2"}, + {name:"Sand and Gravel",value:"3"}, + {name:"Gravel and Cobble",value:"4"}, + {name:"Rocks and Boulders",value:"5"}, + {name:"Bedrock",value:"6"}, + {name:"Peat",value:"8"}, + {name:"Sand over Mud",value:"9"}, + {name:"Sand",value:"14"}, + {name:"Soil",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDA",desc:"Covered Drain",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CWT",desc:"Contained within Tunnel",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"DEV",desc:"Deck Level",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"DFT",desc:"Dam Face Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Vertical",value:"1"}, + {name:"Slope",value:"2"} + ] + }, + {name:"DFU",desc:"Dam Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Impoundment",value:"1"}, + {name:"Navigation",value:"2"}, + {name:"Flood Control",value:"3"}, + {name:"Hydroelectric Power Generation",value:"4"}, + {name:"Weir",value:"5"}, + {name:"Irrigation",value:"6"}, + {name:"Recreation",value:"7"}, + {name:"Water Supply",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"DMD",desc:"Dammed",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"FCS",desc:"Flood Control Structure Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Dyke Gate",value:"1"}, + {name:"Emergency Gate",value:"2"}, + {name:"Flood Gate",value:"3"}, + {name:"Fixed Barrage",value:"4"}, + {name:"Movable Barrage",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGS",desc:"Spillway Height",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"INU",desc:"Inundation Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Controlled",value:"1"}, + {name:"Natural",value:"2"} + ] + }, + {name:"IWT",desc:"Inland Water Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Lake",value:"1"}, + {name:"Pond",value:"2"}, + {name:"Undifferentiated Water Body",value:"3"}, + {name:"Reservoir",value:"4"}, + {name:"Basin",value:"5"}, + {name:"Water-hole",value:"6"}, + {name:"Landlocked Sea",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"LDC",desc:"Dam Crest Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LOC",desc:"Vertical Relative Location",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Completely Below Ground Surface",value:"40"}, + {name:"On Surface",value:"44"}, + {name:"Above Surface",value:"45"} + ] + }, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC2",desc:"Structural Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC3",desc:"Structural Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MNS",desc:"Man-made Shoreline",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"NVS",desc:"Navigability Information",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Navigable and Operational",value:"1"}, + {name:"Navigable but Abandoned",value:"2"}, + {name:"Navigable",value:"3"}, + {name:"Navigable with Periodic Restrictions",value:"4"}, + {name:"Not Navigable",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"OCS",desc:"Offshore Construction Primary Structure",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Platform",value:"1"}, + {name:"Terminal Buoy",value:"2"}, + {name:"Catenary Turntable",value:"3"}, + {name:"Submerged Turret",value:"4"}, + {name:"Vessel",value:"5"}, + {name:"Barge",value:"6"}, + {name:"Submerged Platform",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PWA",desc:"Predominant Water Depth",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"RLE",desc:"Relative Level",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Raised",value:"1"}, + {name:"Level",value:"2"}, + {name:"Depressed",value:"3"} + ] + }, + {name:"SBB",desc:"Supported by Bridge Span",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"TID",desc:"Tide Influenced",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"TRS",desc:"Transportation System Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS2",desc:"Transportation System Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS3",desc:"Transportation System Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WCC",desc:"Watercourse Channel Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Channelized Stream",value:"1"}, + {name:"Braided Stream",value:"2"}, + {name:"Gorge",value:"3"}, + {name:"Wadi",value:"4"}, + {name:"Normal Channel",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"WD3",desc:"Terrain Gap Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WFT",desc:"Well Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Walled-in",value:"2"}, + {name:"Artesian",value:"3"}, + {name:"Dug or Drilled",value:"5"}, + {name:"Dug",value:"6"}, + {name:"Drilled",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WMT",desc:"Watercourse Morphology",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mouth",value:"1"}, + {name:"Pool",value:"2"}, + {name:"Bend",value:"3"}, + {name:"Confluence",value:"4"}, + {name:"Cut-off",value:"5"}, + {name:"Reach",value:"6"}, + {name:"Anabranch",value:"7"}, + {name:"Canalized",value:"8"}, + {name:"Distributary",value:"9"}, + {name:"Headwaters",value:"10"}, + {name:"Abandoned",value:"11"}, + {name:"Meander",value:"12"}, + {name:"Other",value:"999"} + ] + }, + {name:"WOC",desc:"Dam Crest Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI024_HYP",desc:"Water Resource Information : Hydrologic Persistence",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Perennial",value:"1"}, + {name:"Intermittent",value:"2"}, + {name:"Dry",value:"4"} + ] + }, + {name:"ZI024_SCC",desc:"Water Resource Information : Water Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Alkaline",value:"1"}, + {name:"Mineral",value:"4"}, + {name:"Saline",value:"10"}, + {name:"Fresh",value:"11"}, + {name:"Brackish",value:"12"}, + {name:"Seawater",value:"13"}, + {name:"Brine",value:"14"}, + {name:"Not Applicable",value:"998"} + ] + }, + {name:"ZI024_YWQ",desc:"Water Resource Information : Water Potability",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Potable",value:"1"}, + {name:"Treatable",value:"2"}, + {name:"Contaminated",value:"3"}, + {name:"Nonpotable",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"HypsographyCrv",fcode:"",desc:"HypsographyCurves",geom:"Line",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ESC",desc:"Elevation Surface Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Land",value:"1"}, + {name:"Snow Field and/or Ice-field",value:"2"}, + {name:"Vegetation",value:"4"}, + {name:"Inland Water",value:"5"}, + {name:"Tidal Water",value:"6"} + ] + }, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HQC",desc:"Hypsography Portrayal Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Index Contour",value:"1"}, + {name:"Intermediate Contour",value:"2"}, + {name:"Half Auxiliary Contour",value:"3"}, + {name:"Form Line",value:"4"}, + {name:"Depression Index Contour",value:"5"}, + {name:"Depression Intermediate Contour",value:"6"}, + {name:"Approximate Index Contour",value:"7"}, + {name:"Mound Index Contour",value:"8"}, + {name:"Mound Intermediate Contour",value:"9"}, + {name:"Approximate Intermediate Contour",value:"12"}, + {name:"Approximate Auxiliary Contour",value:"13"}, + {name:"Quarter Auxiliary Contour",value:"14"}, + {name:"Approximate Depression Index Contour",value:"15"}, + {name:"Auxiliary Contour",value:"16"}, + {name:"Approximate Depression Intermediate Contour",value:"18"}, + {name:"Intermediate Carrying Contour",value:"19"}, + {name:"Auxiliary Carrying Contour",value:"20"}, + {name:"Index Carrying Contour",value:"21"}, + {name:"Depression Auxiliary Contour",value:"22"}, + {name:"Approximate Depression Auxiliary Contour",value:"23"}, + {name:"Transition Line",value:"98"}, + {name:"Connector Line",value:"99"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"HypsographyPnt",fcode:"",desc:"HypsographyPoints",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"BEL",desc:"Base Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ESC",desc:"Elevation Surface Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Land",value:"1"}, + {name:"Snow Field and/or Ice-field",value:"2"}, + {name:"Vegetation",value:"4"}, + {name:"Inland Water",value:"5"}, + {name:"Tidal Water",value:"6"} + ] + }, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SUY",desc:"Survey Point Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Astronomic Position",value:"1"}, + {name:"Benchmark",value:"2"}, + {name:"Cadastral Control Point",value:"3"}, + {name:"Camera Station",value:"4"}, + {name:"Geodetic Point",value:"5"}, + {name:"Gravity Point",value:"6"}, + {name:"Magnetic Station",value:"7"}, + {name:"Theodolite Station",value:"8"}, + {name:"Tidal Benchmark",value:"9"}, + {name:"Transit Station",value:"10"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZVH_AVA",desc:"Highest Elevation ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZVH_VDT",desc:"Highest Elevation ",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"WGS 84 Ellipsoid",value:"1"}, + {name:"WGS 84 EGM96 Geoid",value:"2"}, + {name:"Mean Sea Level (MSL)",value:"3"}, + {name:"North American Vertical Datum (NAVD) 1988",value:"4"}, + {name:"National Geodetic Vertical Datum (NGVD) 1929",value:"5"}, + {name:"Ground Level",value:"6"}, + {name:"WGS 84 EGM08 Geoid",value:"7"}, + {name:"Not Applicable",value:"998"}, + {name:"Other",value:"999"} + ] + }, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"IceCapSrf",fcode:"",desc:"IceCapSurfaces",geom:"Area",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LND",desc:"Land Morphology",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Dome",value:"19"}, + {name:"Ridge",value:"41"}, + {name:"Depression",value:"56"}, + {name:"Other",value:"999"} + ] + }, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SRD",desc:"Terrain Morphology",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"No Effect",value:"1"}, + {name:"Landslide Potential",value:"2"}, + {name:"Numerous Cobbles and Boulders",value:"11"}, + {name:"Stony Areas",value:"12"}, + {name:"Stony Soil with Surface Rock",value:"13"}, + {name:"Stony Soil with scattered Boulders",value:"14"}, + {name:"Stony Soil with numerous Boulders",value:"15"}, + {name:"Numerous Boulders",value:"16"}, + {name:"Numerous Rock Outcrops",value:"17"}, + {name:"Scattered Boulders",value:"18"}, + {name:"Talus",value:"19"}, + {name:"Boulder Field",value:"20"}, + {name:"Highly Fractured Rock",value:"31"}, + {name:"Weathered Lava",value:"32"}, + {name:"Unweathered Lava",value:"33"}, + {name:"Stony Soil with numerous Rock Outcrops",value:"34"}, + {name:"Irregular with deep Foliation Fractures",value:"35"}, + {name:"Rugged with numerous Rock Outcrops",value:"36"}, + {name:"Rugged Bedrock",value:"37"}, + {name:"Highly Distorted with sharp Rocky Ridges",value:"43"}, + {name:"Stony Soil with numerous Gullies",value:"51"}, + {name:"Moderately Dissected",value:"52"}, + {name:"Moderately Dissected with scattered Rock Outcrops",value:"53"}, + {name:"Dissected Floodplain",value:"54"}, + {name:"Highly Dissected",value:"55"}, + {name:"Deep Erosional Gullies",value:"56"}, + {name:"Steep Rugged Dissected with narrow Gullies",value:"57"}, + {name:"Karst with numerous Sinkholes and Solution Valleys",value:"58"}, + {name:"Karst with numerous Sinkholes",value:"59"}, + {name:"Hummocky Karst with Large Hills",value:"60"}, + {name:"Hummocky Karst with Low Mounds",value:"61"}, + {name:"Playa",value:"63"}, + {name:"Meander Scars and Lakes",value:"64"}, + {name:"Solifluction Lobes and Frost Scars",value:"65"}, + {name:"Hummocky with Frost Heaves",value:"66"}, + {name:"Frost Polygons",value:"67"}, + {name:"Numerous Small Lakes and Ponds",value:"69"}, + {name:"Numerous Crevasses",value:"70"}, + {name:"Numerous Terraces",value:"81"}, + {name:"Mine Tailing(s)",value:"86"}, + {name:"Numerous Dykes",value:"88"}, + {name:"Numerous Dyked Fields",value:"89"}, + {name:"Numerous Fences",value:"90"}, + {name:"Numerous Stone Walls",value:"91"}, + {name:"Numerous Man-made Drainage",value:"92"}, + {name:"Numerous Terraced Fields",value:"93"}, + {name:"Parallel Earthen Rows",value:"94"}, + {name:"Numerous Hedgerows",value:"95"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"IceShelfSrf",fcode:"",desc:"IceShelfSurfaces",geom:"Area",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"IndustryCrv",fcode:"",desc:"IndustryCurves",geom:"Line",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CVT",desc:"Conveyor Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Not Visible",value:"1"}, + {name:"Belt",value:"2"}, + {name:"Rollers",value:"3"}, + {name:"Bucket",value:"4"}, + {name:"Screw Auger",value:"5"}, + {name:"Apron",value:"6"}, + {name:"Flight",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"CVT2",desc:"Conveyor Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Not Visible",value:"1"}, + {name:"Belt",value:"2"}, + {name:"Rollers",value:"3"}, + {name:"Bucket",value:"4"}, + {name:"Screw Auger",value:"5"}, + {name:"Apron",value:"6"}, + {name:"Flight",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"CVT3",desc:"Conveyor Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Not Visible",value:"1"}, + {name:"Belt",value:"2"}, + {name:"Rollers",value:"3"}, + {name:"Bucket",value:"4"}, + {name:"Screw Auger",value:"5"}, + {name:"Apron",value:"6"}, + {name:"Flight",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFH",desc:"Predominant Feature Height",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"IndustryPnt",fcode:"",desc:"IndustryPoints",geom:"Point",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AZC",desc:"Man-made",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CRA",desc:"Crane Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Bridge Crane",value:"2"}, + {name:"Rotating Crane",value:"3"}, + {name:"Tower Crane",value:"7"}, + {name:"Container Crane",value:"99"}, + {name:"Other",value:"999"} + ] + }, + {name:"CRM",desc:"Crane Mobility Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Fixed",value:"1"}, + {name:"Travelling",value:"2"}, + {name:"Floating",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"CVT",desc:"Conveyor Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Not Visible",value:"1"}, + {name:"Belt",value:"2"}, + {name:"Rollers",value:"3"}, + {name:"Bucket",value:"4"}, + {name:"Screw Auger",value:"5"}, + {name:"Apron",value:"6"}, + {name:"Flight",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"CVT2",desc:"Conveyor Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Not Visible",value:"1"}, + {name:"Belt",value:"2"}, + {name:"Rollers",value:"3"}, + {name:"Bucket",value:"4"}, + {name:"Screw Auger",value:"5"}, + {name:"Apron",value:"6"}, + {name:"Flight",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"CVT3",desc:"Conveyor Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Not Visible",value:"1"}, + {name:"Belt",value:"2"}, + {name:"Rollers",value:"3"}, + {name:"Bucket",value:"4"}, + {name:"Screw Auger",value:"5"}, + {name:"Apron",value:"6"}, + {name:"Flight",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"GUG",desc:"Guyed",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LOC",desc:"Vertical Relative Location",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Completely Below Ground Surface",value:"40"}, + {name:"On Surface",value:"44"}, + {name:"Above Surface",value:"45"} + ] + }, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MZN",desc:"Extraction Mine Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Borrow-pit",value:"1"}, + {name:"Opencast",value:"3"}, + {name:"Placer",value:"4"}, + {name:"Prospect",value:"5"}, + {name:"Area Strip-mine",value:"6"}, + {name:"Peatery",value:"8"}, + {name:"Below Surface",value:"9"}, + {name:"Quarry",value:"10"}, + {name:"Contour Strip-mine",value:"11"}, + {name:"Dredge",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PBY",desc:"By-product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Refuse",value:"8"}, + {name:"Slag",value:"15"}, + {name:"Sludge",value:"16"}, + {name:"Spoil",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"PBY2",desc:"By-product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Refuse",value:"8"}, + {name:"Slag",value:"15"}, + {name:"Sludge",value:"16"}, + {name:"Spoil",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"PBY3",desc:"By-product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Refuse",value:"8"}, + {name:"Slag",value:"15"}, + {name:"Sludge",value:"16"}, + {name:"Spoil",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PPO",desc:"Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO2",desc:"Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO3",desc:"Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PRW",desc:"Raw Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Gravel",value:"34"}, + {name:"Ore",value:"54"}, + {name:"Salt",value:"67"}, + {name:"Sand",value:"68"}, + {name:"Stone",value:"84"}, + {name:"Sulphur",value:"154"}, + {name:"Other",value:"999"} + ] + }, + {name:"PRW2",desc:"Raw Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Gravel",value:"34"}, + {name:"Ore",value:"54"}, + {name:"Salt",value:"67"}, + {name:"Sand",value:"68"}, + {name:"Stone",value:"84"}, + {name:"Sulphur",value:"154"}, + {name:"Other",value:"999"} + ] + }, + {name:"PRW3",desc:"Raw Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Gravel",value:"34"}, + {name:"Ore",value:"54"}, + {name:"Salt",value:"67"}, + {name:"Sand",value:"68"}, + {name:"Stone",value:"84"}, + {name:"Sulphur",value:"154"}, + {name:"Other",value:"999"} + ] + }, + {name:"RIP",desc:"Rig Present",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"SRL",desc:"Location Referenced to Shoreline",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Offshore",value:"1"}, + {name:"Inland",value:"2"}, + {name:"At Shoreline",value:"3"} + ] + }, + {name:"TRS",desc:"Transportation System Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS2",desc:"Transportation System Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS3",desc:"Transportation System Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"UMA",desc:"Underground Mine Access",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Drift",value:"1"}, + {name:"Slope",value:"2"}, + {name:"Shaft",value:"3"}, + {name:"Not Applicable",value:"998"} + ] + }, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WEQ",desc:"Well Equipment",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Wellhead",value:"1"}, + {name:"Christmas Tree",value:"2"}, + {name:"Manifold",value:"3"}, + {name:"Protective Structure",value:"4"}, + {name:"Pump",value:"5"}, + {name:"Rod Pump",value:"6"}, + {name:"Separator",value:"7"}, + {name:"Stock Tank",value:"8"}, + {name:"Treater",value:"9"}, + {name:"Capped",value:"10"}, + {name:"Other",value:"999"} + ] + }, + {name:"WEQ2",desc:"Well Equipment [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Wellhead",value:"1"}, + {name:"Christmas Tree",value:"2"}, + {name:"Manifold",value:"3"}, + {name:"Protective Structure",value:"4"}, + {name:"Pump",value:"5"}, + {name:"Rod Pump",value:"6"}, + {name:"Separator",value:"7"}, + {name:"Stock Tank",value:"8"}, + {name:"Treater",value:"9"}, + {name:"Capped",value:"10"}, + {name:"Other",value:"999"} + ] + }, + {name:"WEQ3",desc:"Well Equipment [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Wellhead",value:"1"}, + {name:"Christmas Tree",value:"2"}, + {name:"Manifold",value:"3"}, + {name:"Protective Structure",value:"4"}, + {name:"Pump",value:"5"}, + {name:"Rod Pump",value:"6"}, + {name:"Separator",value:"7"}, + {name:"Stock Tank",value:"8"}, + {name:"Treater",value:"9"}, + {name:"Capped",value:"10"}, + {name:"Other",value:"999"} + ] + }, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI014_PPO",desc:"Manufacturing Information : Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO2",desc:"Manufacturing Information : Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO3",desc:"Manufacturing Information : Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"IndustrySrf",fcode:"",desc:"IndustrySurfaces",geom:"Area",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AZC",desc:"Man-made",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LOC",desc:"Vertical Relative Location",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Completely Below Ground Surface",value:"40"}, + {name:"On Surface",value:"44"}, + {name:"Above Surface",value:"45"} + ] + }, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MZN",desc:"Extraction Mine Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Borrow-pit",value:"1"}, + {name:"Opencast",value:"3"}, + {name:"Placer",value:"4"}, + {name:"Prospect",value:"5"}, + {name:"Area Strip-mine",value:"6"}, + {name:"Peatery",value:"8"}, + {name:"Below Surface",value:"9"}, + {name:"Quarry",value:"10"}, + {name:"Contour Strip-mine",value:"11"}, + {name:"Dredge",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PBY",desc:"By-product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Refuse",value:"8"}, + {name:"Slag",value:"15"}, + {name:"Sludge",value:"16"}, + {name:"Spoil",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"PBY2",desc:"By-product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Refuse",value:"8"}, + {name:"Slag",value:"15"}, + {name:"Sludge",value:"16"}, + {name:"Spoil",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"PBY3",desc:"By-product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Refuse",value:"8"}, + {name:"Slag",value:"15"}, + {name:"Sludge",value:"16"}, + {name:"Spoil",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PPO",desc:"Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO2",desc:"Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO3",desc:"Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PRW",desc:"Raw Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Gravel",value:"34"}, + {name:"Ore",value:"54"}, + {name:"Salt",value:"67"}, + {name:"Sand",value:"68"}, + {name:"Stone",value:"84"}, + {name:"Sulphur",value:"154"}, + {name:"Other",value:"999"} + ] + }, + {name:"PRW2",desc:"Raw Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Gravel",value:"34"}, + {name:"Ore",value:"54"}, + {name:"Salt",value:"67"}, + {name:"Sand",value:"68"}, + {name:"Stone",value:"84"}, + {name:"Sulphur",value:"154"}, + {name:"Other",value:"999"} + ] + }, + {name:"PRW3",desc:"Raw Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Gravel",value:"34"}, + {name:"Ore",value:"54"}, + {name:"Salt",value:"67"}, + {name:"Sand",value:"68"}, + {name:"Stone",value:"84"}, + {name:"Sulphur",value:"154"}, + {name:"Other",value:"999"} + ] + }, + {name:"SRL",desc:"Location Referenced to Shoreline",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Offshore",value:"1"}, + {name:"Inland",value:"2"}, + {name:"At Shoreline",value:"3"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"UMA",desc:"Underground Mine Access",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Drift",value:"1"}, + {name:"Slope",value:"2"}, + {name:"Shaft",value:"3"}, + {name:"Not Applicable",value:"998"} + ] + }, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI014_PPO",desc:"Manufacturing Information : Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO2",desc:"Manufacturing Information : Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO3",desc:"Manufacturing Information : Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"InformationCrv",fcode:"",desc:"InformationCurves",geom:"Line",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"InformationPnt",fcode:"",desc:"InformationPoints",geom:"Point",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"NLT",desc:"Named Location Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Area",value:"1"}, + {name:"Locality",value:"2"}, + {name:"Region",value:"3"}, + {name:"Arctic Land",value:"4"}, + {name:"Populated Locality",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"InformationSrf",fcode:"",desc:"InformationSurfaces",geom:"Area",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCA",desc:"Void Collection Reason",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Not Requested",value:"1"}, + {name:"Inaccessible",value:"2"}, + {name:"No Available Imagery",value:"3"}, + {name:"No Available Map Source",value:"6"}, + {name:"No Suitable Imagery",value:"7"}, + {name:"Not Required",value:"8"}, + {name:"Cloud Cover",value:"9"}, + {name:"Snow Cover",value:"10"}, + {name:"Dark Shade",value:"11"}, + {name:"Vegetation Cover",value:"12"}, + {name:"Flooded",value:"13"}, + {name:"No Available Survey",value:"16"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCA2",desc:"Void Collection Reason [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Not Requested",value:"1"}, + {name:"Inaccessible",value:"2"}, + {name:"No Available Imagery",value:"3"}, + {name:"No Available Map Source",value:"6"}, + {name:"No Suitable Imagery",value:"7"}, + {name:"Not Required",value:"8"}, + {name:"Cloud Cover",value:"9"}, + {name:"Snow Cover",value:"10"}, + {name:"Dark Shade",value:"11"}, + {name:"Vegetation Cover",value:"12"}, + {name:"Flooded",value:"13"}, + {name:"No Available Survey",value:"16"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCA3",desc:"Void Collection Reason [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Not Requested",value:"1"}, + {name:"Inaccessible",value:"2"}, + {name:"No Available Imagery",value:"3"}, + {name:"No Available Map Source",value:"6"}, + {name:"No Suitable Imagery",value:"7"}, + {name:"Not Required",value:"8"}, + {name:"Cloud Cover",value:"9"}, + {name:"Snow Cover",value:"10"}, + {name:"Dark Shade",value:"11"}, + {name:"Vegetation Cover",value:"12"}, + {name:"Flooded",value:"13"}, + {name:"No Available Survey",value:"16"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCT",desc:"Void Collection Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Hypsography",value:"1"}, + {name:"Bathymetry",value:"3"}, + {name:"Waterbody Bottom Composition",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCT2",desc:"Void Collection Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Hypsography",value:"1"}, + {name:"Bathymetry",value:"3"}, + {name:"Waterbody Bottom Composition",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCT3",desc:"Void Collection Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Hypsography",value:"1"}, + {name:"Bathymetry",value:"3"}, + {name:"Waterbody Bottom Composition",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"InstallationPnt",fcode:"",desc:"InstallationPoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"InternationalDateLineCrv",fcode:"",desc:"InternationalDateLineCurves",geom:"Line",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"IsogonicLineCrv",fcode:"",desc:"IsogonicLineCurves",geom:"Line",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"MAG",desc:"Magnetic Variation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"LeaderLineCrv",fcode:"",desc:"LeaderLineCurves",geom:"Line",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"LightVesselPnt",fcode:"",desc:"LightVesselPoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AWP",desc:"Aeronautical Obstacle Light Present",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"BC034_MRT",desc:"Maritime Radiobeacon : Maritime Radiobeacon Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Automated Identification System (AIS)",value:"1"}, + {name:"Circular Radiobeacon",value:"2"}, + {name:"Directional Radiobeacon",value:"3"}, + {name:"Long Range Air Navigation System (LORAN) C",value:"4"}, + {name:"QTG Station",value:"5"}, + {name:"Radar Marker (RAMARK)",value:"6"}, + {name:"Radar Responder Beacon (RACON)",value:"7"}, + {name:"Radio Direction Finding Station",value:"8"}, + {name:"Rotating Pattern Radiobeacon",value:"9"}, + {name:"Other",value:"999"} + ] + }, + {name:"BC040_EOL",desc:"Maritime Navigation Light : Nominal Range",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"BC040_LVN",desc:"Maritime Navigation Light : Light Elevation",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"BC101_SST",desc:"Fog Signal : Fog Signal Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Bell",value:"1"}, + {name:"Diaphone",value:"2"}, + {name:"Explosive",value:"3"}, + {name:"Gong",value:"4"}, + {name:"Horn",value:"6"}, + {name:"Nautophone",value:"7"}, + {name:"Radio",value:"8"}, + {name:"Siren",value:"9"}, + {name:"Submarine Bell",value:"10"}, + {name:"Whistle",value:"14"}, + {name:"Reed",value:"15"}, + {name:"None",value:"16"}, + {name:"Tyfon",value:"98"}, + {name:"Not Applicable",value:"998"}, + {name:"Other",value:"999"} + ] + }, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"ManorHousePnt",fcode:"",desc:"ManorHousePoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"BNF",desc:"Floor Count",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"COS",desc:"Facility Operational Status",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Non-operational",value:"4"}, + {name:"Planned",value:"6"}, + {name:"Temporarily Non-operational",value:"9"}, + {name:"Operational",value:"13"}, + {name:"Partially Operational",value:"14"} + ] + }, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"ManorHouseSrf",fcode:"",desc:"ManorHouseSurface",geom:"Area",fdname:"TDS_CARTO", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"BNF",desc:"Floor Count",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"COS",desc:"Facility Operational Status",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Non-operational",value:"4"}, + {name:"Planned",value:"6"}, + {name:"Temporarily Non-operational",value:"9"}, + {name:"Operational",value:"13"}, + {name:"Partially Operational",value:"14"} + ] + }, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"ManufacturedHomeParkPnt",fcode:"",desc:"ManufacturedHomeParkPoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"MaricultureSitePnt",fcode:"",desc:"MaricultureSitePoints",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"ACC",desc:"Horizontal Accuracy Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Accurate",value:"1"}, + {name:"Approximate",value:"2"} + ] + }, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"MaricultureSiteSrf",fcode:"",desc:"MaricultureSiteSurfaces",geom:"Area",fdname:"TDS_CARTO", + columns:[ + {name:"ACC",desc:"Horizontal Accuracy Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Accurate",value:"1"}, + {name:"Approximate",value:"2"} + ] + }, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"MaritimeNavigationLightPnt",fcode:"",desc:"MaritimeNavigationLightPoints",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CHA",desc:"Navigation Light Charateristic",optional:"R",type:"enumeration",defValue:"5", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Alternating",value:"1"}, + {name:"Ultra Quick-flashing",value:"4"}, + {name:"Fixed",value:"5"}, + {name:"Fixed and Flashing",value:"6"}, + {name:"Flashing",value:"8"}, + {name:"Interrupted Quick-flashing",value:"11"}, + {name:"Interrupted Ultra Quickflashing",value:"12"}, + {name:"Interrupted Very Quick-flashing",value:"13"}, + {name:"Isophase",value:"14"}, + {name:"Long-flashing",value:"15"}, + {name:"Morse Code",value:"16"}, + {name:"Occulting",value:"17"}, + {name:"Group Quick-flashing",value:"28"}, + {name:"Group Very Quick-flashing",value:"29"}, + {name:"Quick-flashing",value:"44"}, + {name:"Very Quick-flashing",value:"45"}, + {name:"Flashing with Long-flash",value:"46"}, + {name:"Occulting Flashing",value:"47"}, + {name:"Fixed Long-flashing",value:"48"}, + {name:"Occulting Alternating",value:"49"}, + {name:"Long-flashing Alternating",value:"50"}, + {name:"Flashing Alternating",value:"51"}, + {name:"Quick-flashing with Long-flash",value:"57"}, + {name:"Very Quick-flashing with Long-flash",value:"58"}, + {name:"Ultra Quick-flashing with Long-flash",value:"59"}, + {name:"Fixed with Alternating Flashing",value:"60"}, + {name:"Other",value:"999"} + ] + }, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"MaximumElevationSrf",fcode:"",desc:"MaximumElevationSurfaces",geom:"Area",fdname:"TDS_CARTO", + columns:[ + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"MAX_ELEVATION",desc:"Maximum Elevation",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"MAX_TERRAIN",desc:"Maximum Terrain",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"MEF_VALUE",desc:"Maximum Elevation Feature Value",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"MetadataSrf",fcode:"",desc:"MetadataSurfaces",geom:"Area",fdname:"TDS", + columns:[ + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"MDE",desc:"Maintenance Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"RCG",desc:"Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"U.S. Army",value:"1"}, + {name:"U.S. Navy",value:"2"}, + {name:"U.S. Air Force",value:"3"}, + {name:"U.S. Marine Corps",value:"4"}, + {name:"U.S. Coast Guard",value:"5"}, + {name:"U.S. Africa Command (USAFRICOM)",value:"6"}, + {name:"U.S. Central Command (USCENTCOM)",value:"7"}, + {name:"U.S. European Command (USEUCOM)",value:"8"}, + {name:"U.S. Joint Forces Command (USJFCOM)",value:"9"}, + {name:"U.S. Northern Command (USNORTHCOM)",value:"10"}, + {name:"U.S. Pacific Command (PACOM)",value:"11"}, + {name:"U.S. Special Operations Command (USSOCOM)",value:"12"}, + {name:"U.S. Southern Command (USSOUTHCOM)",value:"13"}, + {name:"U.S. Strategic Command (USSTRATCOM)",value:"14"}, + {name:"U.S. Transportation Command (USTRANSCOM)",value:"15"}, + {name:"U.S. Central Intelligence Agency (CIA)",value:"16"}, + {name:"U.S. Defense Intelligence Agency (DIA)",value:"17"}, + {name:"U.S. National Security Agency (NSA)",value:"18"}, + {name:"U.S. National Geospatial-Intelligence Agency (NGA)",value:"19"}, + {name:"U.S. National Reconnaissance Office (NRO)",value:"20"}, + {name:"U.S. Department of State",value:"21"}, + {name:"U.S. Department of Homeland Security (DHS)",value:"22"}, + {name:"U.S. Department of Energy (DOE)",value:"23"}, + {name:"U.S. Federal Bureau of Investigation (FBI)",value:"24"}, + {name:"U.S. Geological Survey (USGS)",value:"25"}, + {name:"U.S. National Civil Applications Program (NCAP)",value:"26"}, + {name:"U.S. National Oceanic and Atmospheric Administration",value:"27"}, + {name:"Australian Geospatial-Intelligence Organization (Australia)",value:"28"}, + {name:"Geographic Service (Belgium)",value:"29"}, + {name:"Military Topographic Service (Bulgaria)",value:"30"}, + {name:"Mapping and Charting Establishment (Canada)",value:"31"}, + {name:"Geographic Service of the Czech Armed Forces (Czech Republic)",value:"32"}, + {name:"Defence Acquisition and Logistics Organization (Denmark)",value:"33"}, + {name:"Military Geographic Group (Estonia)",value:"34"}, + {name:"Topographic Service (Finland)",value:"35"}, + {name:"Bureau Geographie, Hydrographie, Oceanographie et Meteorologie (France)",value:"36"}, + {name:"Bundeswehr Geoinformation Office (Germany)",value:"37"}, + {name:"Hellenic Military Geographic Service (Greece)",value:"38"}, + {name:"Geoinformation Service of the Hungarian Defence Forces (Hungary)",value:"39"}, + {name:"Defense Information Security (Italy)",value:"40"}, + {name:"Geospatial Information Agency (Latvia)",value:"41"}, + {name:"Military Mapping Centre (Lithuania)",value:"42"}, + {name:"National Army Topographic Service (Moldova)",value:"43"}, + {name:"Army Geographic Agency (Netherlands)",value:"44"}, + {name:"GEOINT New Zealand (New Zealand)",value:"45"}, + {name:"Military Geographic Service (Norway)",value:"46"}, + {name:"Military Geography Division (Poland)",value:"47"}, + {name:"Army Geographic Institute (Portugal)",value:"48"}, + {name:"Military Topographic Directorate (Romania)",value:"49"}, + {name:"Topographic Institute (Slovakia)",value:"50"}, + {name:"Army Geographic Centre (Spain)",value:"51"}, + {name:"Swedish Armed Forces (Sweden)",value:"52"}, + {name:"General Command of Mapping (Turkey)",value:"53"}, + {name:"Defence Geographic Centre Intelligence Collection Group (United Kingdom)",value:"54"}, + {name:"U.S. Army Geospatial Center (AGC)",value:"55"}, + {name:"Army (Australia)",value:"56"}, + {name:"Military Geographic Division (Croatia)",value:"57"}, + {name:"Directorate Geospatial Information (South Africa)",value:"58"}, + {name:"Korean Defense Intelligence Agency (South Korea)",value:"59"}, + {name:"National Intelligence Service (South Korea)",value:"60"}, + {name:"Imagery Support Group (Singapore)",value:"61"}, + {name:"National Security Bureau (Taiwan)",value:"62"}, + {name:"Materiel Production Center (Taiwan)",value:"63"}, + {name:"Ministry of Defense of Japan (Japan)",value:"64"}, + {name:"Ministry of Construction and Urban Development (Mongolia)",value:"65"}, + {name:"National Mapping and Resource Information Authority (Philippines)",value:"66"}, + {name:"Royal Jordanian Geographic Centre (Jordan)",value:"67"}, + {name:"National Survey Authority (Oman)",value:"68"}, + {name:"Armed Forces General Headquarters (Qatar)",value:"69"}, + {name:"Ministry of Defense of Saudi Arabia (Saudi Arabia)",value:"70"}, + {name:"Directorate of Survey (Kuwait)",value:"71"}, + {name:"Military Survey Department (United Arab Emirates)",value:"72"}, + {name:"Information Network Security Agency (Ethiopia)",value:"73"}, + {name:"Ministry of State for Defense (Kenya)",value:"74"}, + {name:"El Instituto Nacional de Estadistica y Geografia (Mexico)",value:"75"}, + {name:"Instituto Geográfico Militar (Chile)",value:"76"}, + {name:"Servicio Geográfico Militar (Uruguay)",value:"77"}, + {name:"Dirección del Servicio Geográfico Military (Paraguay)",value:"78"}, + {name:"Instituto Geográfico Nacional (Peru)",value:"79"}, + {name:"Instituto Geográfico Agustín Codazzi (Colombia)",value:"80"}, + {name:"Instituto Geográfico y del Catastro Nacional (El Salvador)",value:"81"}, + {name:"Instituto Geográfico Nacional (Guatemala)",value:"82"}, + {name:"Servicio Geográfico Militar (Guatemala)",value:"83"}, + {name:"Instituto Cartográfico Militar (Dominican Republic)",value:"84"}, + {name:"Instituto Nicaragüense de Estudios Terretoriales (Nicaragua)",value:"85"}, + {name:"Dirección General de Registros, Catastro, y Geografía (Honduras)",value:"86"}, + {name:"Instituto Geográfico Militar (Ecuador)",value:"87"}, + {name:"Instituto Geográfico Nacional Tommy Guardia (Panama)",value:"88"}, + {name:"Instituto Geográfico Nacional (Argentina)",value:"89"}, + {name:"Diretoria de Serviço Geográfico (Brazil)",value:"90"}, + {name:"Not Applicable",value:"998"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_PRE",desc:"Process Step Information : Process Step Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"MilitaryCrv",fcode:"",desc:"MilitaryCurves",geom:"Line",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"EET",desc:"Engineered Earthwork Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Battery",value:"1"}, + {name:"Military Parapet",value:"2"}, + {name:"Military Trench",value:"3"}, + {name:"Rampart",value:"4"}, + {name:"Redoubt",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC2",desc:"Structural Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC3",desc:"Structural Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WD3",desc:"Terrain Gap Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"MilitaryPnt",fcode:"",desc:"MilitaryPoints",geom:"Point",fdname:"TDS", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"BNF",desc:"Floor Count",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FRT",desc:"Weapons Range Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Small Arms",value:"1"}, + {name:"Tank",value:"2"}, + {name:"Field Artillery",value:"3"}, + {name:"Grenade",value:"4"}, + {name:"Demolition Area",value:"5"}, + {name:"Impact Area",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"FRT2",desc:"Weapons Range Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Small Arms",value:"1"}, + {name:"Tank",value:"2"}, + {name:"Field Artillery",value:"3"}, + {name:"Grenade",value:"4"}, + {name:"Demolition Area",value:"5"}, + {name:"Impact Area",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"FRT3",desc:"Weapons Range Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Small Arms",value:"1"}, + {name:"Tank",value:"2"}, + {name:"Field Artillery",value:"3"}, + {name:"Grenade",value:"4"}, + {name:"Demolition Area",value:"5"}, + {name:"Impact Area",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"FZR",desc:"Fortified Building Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Blockhouse",value:"1"}, + {name:"Casement",value:"2"}, + {name:"Keep",value:"3"}, + {name:"Martello Tower",value:"4"}, + {name:"Non-specific Fortified",value:"5"}, + {name:"Pillbox",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"HST",desc:"Hazard Shelter Intended Use",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Bomb Shelter",value:"1"}, + {name:"Fallout Shelter",value:"2"}, + {name:"Storm Shelter",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"HST2",desc:"Hazard Shelter Intended Use [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Bomb Shelter",value:"1"}, + {name:"Fallout Shelter",value:"2"}, + {name:"Storm Shelter",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"HST3",desc:"Hazard Shelter Intended Use [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Bomb Shelter",value:"1"}, + {name:"Fallout Shelter",value:"2"}, + {name:"Storm Shelter",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC2",desc:"Structural Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC3",desc:"Structural Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PPO",desc:"Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO2",desc:"Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO3",desc:"Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PRM",desc:"Permanent",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"RLE",desc:"Relative Level",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Raised",value:"1"}, + {name:"Level",value:"2"}, + {name:"Depressed",value:"3"} + ] + }, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"YSU",desc:"Military Service Branch",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Air Force",value:"1"}, + {name:"Army",value:"2"}, + {name:"Coastguard",value:"3"}, + {name:"Marines",value:"4"}, + {name:"Navy",value:"5"}, + {name:"Joint",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI014_PBY",desc:"Manufacturing Information : By-product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PBY2",desc:"Manufacturing Information : By-product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PBY3",desc:"Manufacturing Information : By-product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO",desc:"Manufacturing Information : Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO2",desc:"Manufacturing Information : Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO3",desc:"Manufacturing Information : Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW",desc:"Manufacturing Information : Raw Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW2",desc:"Manufacturing Information : Raw Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW3",desc:"Manufacturing Information : Raw Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI018_WIT",desc:"Wireless Telecommunication Information : Wireless Telecommunication Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Cellular Phone",value:"1"}, + {name:"Microwave Radio Relay",value:"2"}, + {name:"Mobile Phone",value:"3"}, + {name:"Radio Broadcast",value:"4"}, + {name:"Radio Telephone",value:"5"}, + {name:"Radio-telegraph",value:"6"}, + {name:"Television (TV)",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"MilitarySrf",fcode:"",desc:"MilitarySurfaces",geom:"Area",fdname:"TDS", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"BNF",desc:"Floor Count",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"DZP",desc:"Deepest Depth Below Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"EET",desc:"Engineered Earthwork Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Battery",value:"1"}, + {name:"Military Parapet",value:"2"}, + {name:"Military Trench",value:"3"}, + {name:"Rampart",value:"4"}, + {name:"Redoubt",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FRT",desc:"Weapons Range Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Small Arms",value:"1"}, + {name:"Tank",value:"2"}, + {name:"Field Artillery",value:"3"}, + {name:"Grenade",value:"4"}, + {name:"Demolition Area",value:"5"}, + {name:"Impact Area",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"FRT2",desc:"Weapons Range Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Small Arms",value:"1"}, + {name:"Tank",value:"2"}, + {name:"Field Artillery",value:"3"}, + {name:"Grenade",value:"4"}, + {name:"Demolition Area",value:"5"}, + {name:"Impact Area",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"FRT3",desc:"Weapons Range Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Small Arms",value:"1"}, + {name:"Tank",value:"2"}, + {name:"Field Artillery",value:"3"}, + {name:"Grenade",value:"4"}, + {name:"Demolition Area",value:"5"}, + {name:"Impact Area",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"FZR",desc:"Fortified Building Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Blockhouse",value:"1"}, + {name:"Casement",value:"2"}, + {name:"Keep",value:"3"}, + {name:"Martello Tower",value:"4"}, + {name:"Non-specific Fortified",value:"5"}, + {name:"Pillbox",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"HST",desc:"Hazard Shelter Intended Use",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Bomb Shelter",value:"1"}, + {name:"Fallout Shelter",value:"2"}, + {name:"Storm Shelter",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"HST2",desc:"Hazard Shelter Intended Use [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Bomb Shelter",value:"1"}, + {name:"Fallout Shelter",value:"2"}, + {name:"Storm Shelter",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"HST3",desc:"Hazard Shelter Intended Use [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Bomb Shelter",value:"1"}, + {name:"Fallout Shelter",value:"2"}, + {name:"Storm Shelter",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"LEA",desc:"Least Depth Below Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC2",desc:"Structural Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC3",desc:"Structural Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PPO",desc:"Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO2",desc:"Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO3",desc:"Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PRM",desc:"Permanent",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"RLE",desc:"Relative Level",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Raised",value:"1"}, + {name:"Level",value:"2"}, + {name:"Depressed",value:"3"} + ] + }, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WD3",desc:"Terrain Gap Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"YSU",desc:"Military Service Branch",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Air Force",value:"1"}, + {name:"Army",value:"2"}, + {name:"Coastguard",value:"3"}, + {name:"Marines",value:"4"}, + {name:"Navy",value:"5"}, + {name:"Joint",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI014_PBY",desc:"Manufacturing Information : By-product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PBY2",desc:"Manufacturing Information : By-product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PBY3",desc:"Manufacturing Information : By-product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO",desc:"Manufacturing Information : Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO2",desc:"Manufacturing Information : Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO3",desc:"Manufacturing Information : Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW",desc:"Manufacturing Information : Raw Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW2",desc:"Manufacturing Information : Raw Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW3",desc:"Manufacturing Information : Raw Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI018_WIT",desc:"Wireless Telecommunication Information : Wireless Telecommunication Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Cellular Phone",value:"1"}, + {name:"Microwave Radio Relay",value:"2"}, + {name:"Mobile Phone",value:"3"}, + {name:"Radio Broadcast",value:"4"}, + {name:"Radio Telephone",value:"5"}, + {name:"Radio-telegraph",value:"6"}, + {name:"Television (TV)",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"MineFieldPnt",fcode:"",desc:"MineFieldPoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"MineFieldSrf",fcode:"",desc:"MineFieldSurface",geom:"Area",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"MoatSrf",fcode:"",desc:"MoatSurface",geom:"Area",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WD3",desc:"Terrain Gap Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI024_HYP",desc:"Water Resource Information : Hydrologic Persistence",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Perennial",value:"1"}, + {name:"Intermittent",value:"2"}, + {name:"Dry",value:"4"} + ] + }, + {name:"ZI024_SCC",desc:"Water Resource Information : Water Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Alkaline",value:"1"}, + {name:"Mineral",value:"4"}, + {name:"Saline",value:"10"}, + {name:"Fresh",value:"11"}, + {name:"Brackish",value:"12"}, + {name:"Seawater",value:"13"}, + {name:"Brine",value:"14"}, + {name:"Not Applicable",value:"998"} + ] + }, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"NavaidsPnt",fcode:"",desc:"NavaidPoints",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CHAN",desc:"CHAN",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FREQ",desc:"FREQ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ICAO_RGN",desc:"ICAO_RGN",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"NAM",desc:"NAM",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"NAV_COUNTRY",desc:"NAV_COUNTRY",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"NAV_IDENT",desc:"NAV_IDENT",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"NAV_KEYCODE",desc:"NAV_KEYCODE",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"NAV_TYPE",desc:"NAV_TYPE",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"VOR",value:"1"}, + {name:"VORTAC",value:"2"}, + {name:"TACAN",value:"3"}, + {name:"VOR-DME",value:"4"}, + {name:"NDB",value:"5"}, + {name:"NDB-DME",value:"7"}, + {name:"DME",value:"9"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PROVINCE",desc:"PROVINCE",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"USAGE",desc:"USAGE",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WAC",desc:"WAC",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"NonDirectionalRadioBeaconPnt",fcode:"",desc:"NonDirectionalRadioBeaconPoints",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"NuclearReactorContainmentPnt",fcode:"",desc:"NuclearReactorContainmentPoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AWP",desc:"Aeronautical Obstacle Light Present",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"NuclearReactorContainmentSrf",fcode:"",desc:"NuclearReactorContainmentSurface",geom:"Area",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AWP",desc:"Aeronautical Obstacle Light Present",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"ParkPnt",fcode:"",desc:"ParkPoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"PhysiographyCrv",fcode:"",desc:"PhysiographyCurves",geom:"Line",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AZC",desc:"Man-made",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"BA000_VDC",desc:"Water Line : Sounding Datum",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Indian Spring Low Water",value:"4"}, + {name:"Mean High Water",value:"7"}, + {name:"Mean High Water Springs",value:"9"}, + {name:"Mean Higher High Water",value:"10"}, + {name:"Mean Low Water",value:"11"}, + {name:"Mean Low Water Springs",value:"13"}, + {name:"Mean Lower Low Water",value:"14"}, + {name:"Mean Sea Level",value:"15"}, + {name:"Mean Lower Low Water Springs",value:"19"}, + {name:"Lowest Astronomical Tide",value:"20"}, + {name:"Mean Higher High Water Springs",value:"24"}, + {name:"Highest High Water",value:"28"}, + {name:"Indian Spring High Water",value:"30"}, + {name:"Lowest Low Water",value:"90"}, + {name:"Other",value:"999"} + ] + }, + {name:"BA000_VDR",desc:"Water Line : Sounding Datum Name",optional:"R",type:"String",length:"80",defValue:"noInformation"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CET",desc:"Grading Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"One Side",value:"1"}, + {name:"Two Sides",value:"2"}, + {name:"Many Sides",value:"3"}, + {name:"No Sides",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FIC",desc:"Embankment Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mound",value:"1"}, + {name:"Fill",value:"2"}, + {name:"Dyke",value:"3"}, + {name:"Levee",value:"5"}, + {name:"Divider",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GFT",desc:"Geologic Fault Trace Visible",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC2",desc:"Structural Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC3",desc:"Structural Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFD",desc:"Predominant Feature Depth",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"PFH",desc:"Predominant Feature Height",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SGCC",desc:"Surface Slope ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_SGCC}, + {name:"SGCL",desc:"Surface Slope ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"SGCU",desc:"Surface Slope ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"SLT",desc:"Shoreline Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mangrove",value:"6"}, + {name:"Marshy",value:"8"}, + {name:"Stony",value:"10"}, + {name:"Building Rubble",value:"11"}, + {name:"Erosion Rubble",value:"12"}, + {name:"Sandy",value:"13"}, + {name:"Shingly",value:"14"}, + {name:"Coral",value:"16"}, + {name:"Ice",value:"17"}, + {name:"Mud",value:"18"}, + {name:"Not Applicable",value:"998"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS",desc:"Transportation System Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS2",desc:"Transportation System Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS3",desc:"Transportation System Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WLE",desc:"Water Level Effect",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Always Dry",value:"2"}, + {name:"Covers and Uncovers",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"PhysiographyPnt",fcode:"",desc:"PhysiographyPoints",geom:"Point",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"BA000_VDC",desc:"Water Line : Sounding Datum",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Indian Spring Low Water",value:"4"}, + {name:"Mean High Water",value:"7"}, + {name:"Mean High Water Springs",value:"9"}, + {name:"Mean Higher High Water",value:"10"}, + {name:"Mean Low Water",value:"11"}, + {name:"Mean Low Water Springs",value:"13"}, + {name:"Mean Lower Low Water",value:"14"}, + {name:"Mean Sea Level",value:"15"}, + {name:"Mean Lower Low Water Springs",value:"19"}, + {name:"Lowest Astronomical Tide",value:"20"}, + {name:"Mean Higher High Water Springs",value:"24"}, + {name:"Highest High Water",value:"28"}, + {name:"Indian Spring High Water",value:"30"}, + {name:"Lowest Low Water",value:"90"}, + {name:"Other",value:"999"} + ] + }, + {name:"BA000_VDR",desc:"Water Line : Sounding Datum Name",optional:"R",type:"String",length:"80",defValue:"noInformation"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"DOF",desc:"Direction of Flow",optional:"R",type:"Real",length:"8",defValue:"-999999"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"GOT",desc:"Geothermal Outlet Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Fissure",value:"1"}, + {name:"Fumarole",value:"2"}, + {name:"Hot Spring",value:"3"}, + {name:"Sulphur Spring",value:"4"}, + {name:"Geyser",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC2",desc:"Structural Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC3",desc:"Structural Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"OHC",desc:"Overhead Clearance",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFH",desc:"Predominant Feature Height",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"RKF",desc:"Rock Formation Structure",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Columnar",value:"1"}, + {name:"Needle",value:"2"}, + {name:"Pinnacle",value:"3"}, + {name:"Fossilized Forest",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VGT",desc:"Volcano Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Cone",value:"1"}, + {name:"Cinder Cone",value:"2"}, + {name:"Shield",value:"3"}, + {name:"Caldera",value:"4"}, + {name:"Composite",value:"5"} + ] + }, + {name:"VOA",desc:"Volcanic Activity",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Active",value:"1"}, + {name:"Dormant",value:"2"}, + {name:"Inactive or Extinct",value:"3"} + ] + }, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI071_FFN",desc:"Cave Information : Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Warehousing and Storage",value:"530"}, + {name:"Residence",value:"563"}, + {name:"Defence Activities",value:"835"}, + {name:"Religious Activities",value:"930"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI071_FFN2",desc:"Cave Information : Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Warehousing and Storage",value:"530"}, + {name:"Residence",value:"563"}, + {name:"Defence Activities",value:"835"}, + {name:"Religious Activities",value:"930"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI071_FFN3",desc:"Cave Information : Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Warehousing and Storage",value:"530"}, + {name:"Residence",value:"563"}, + {name:"Defence Activities",value:"835"}, + {name:"Religious Activities",value:"930"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI071_UAO",desc:"Cave Information : Underground Access Orientation",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Horizontal",value:"1"}, + {name:"Slopes Downward",value:"2"}, + {name:"Vertical Down",value:"3"}, + {name:"Slopes Upward",value:"4"}, + {name:"Vertical Up",value:"5"} + ] + }, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"PhysiographySrf",fcode:"",desc:"PhysiographySurfaces",geom:"Area",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"BA000_VDC",desc:"Water Line : Sounding Datum",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Indian Spring Low Water",value:"4"}, + {name:"Mean High Water",value:"7"}, + {name:"Mean High Water Springs",value:"9"}, + {name:"Mean Higher High Water",value:"10"}, + {name:"Mean Low Water",value:"11"}, + {name:"Mean Low Water Springs",value:"13"}, + {name:"Mean Lower Low Water",value:"14"}, + {name:"Mean Sea Level",value:"15"}, + {name:"Mean Lower Low Water Springs",value:"19"}, + {name:"Lowest Astronomical Tide",value:"20"}, + {name:"Mean Higher High Water Springs",value:"24"}, + {name:"Highest High Water",value:"28"}, + {name:"Indian Spring High Water",value:"30"}, + {name:"Lowest Low Water",value:"90"}, + {name:"Other",value:"999"} + ] + }, + {name:"BA000_VDR",desc:"Water Line : Sounding Datum Name",optional:"R",type:"String",length:"80",defValue:"noInformation"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CET",desc:"Grading Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"One Side",value:"1"}, + {name:"Two Sides",value:"2"}, + {name:"Many Sides",value:"3"}, + {name:"No Sides",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"DOF",desc:"Direction of Flow",optional:"R",type:"Real",length:"8",defValue:"-999999"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FIC",desc:"Embankment Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mound",value:"1"}, + {name:"Fill",value:"2"}, + {name:"Dyke",value:"3"}, + {name:"Levee",value:"5"}, + {name:"Divider",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"GOT",desc:"Geothermal Outlet Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Fissure",value:"1"}, + {name:"Fumarole",value:"2"}, + {name:"Hot Spring",value:"3"}, + {name:"Sulphur Spring",value:"4"}, + {name:"Geyser",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC2",desc:"Structural Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC3",desc:"Structural Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFD",desc:"Predominant Feature Depth",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"PFH",desc:"Predominant Feature Height",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"RKF",desc:"Rock Formation Structure",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Columnar",value:"1"}, + {name:"Needle",value:"2"}, + {name:"Pinnacle",value:"3"}, + {name:"Fossilized Forest",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"SAD",desc:"Sand Dune Stabilized",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"SDO",desc:"Sand Dune Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"SDT",desc:"Sand Dune Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Crescent",value:"1"}, + {name:"Dome",value:"2"}, + {name:"Transverse",value:"3"}, + {name:"Linear",value:"4"}, + {name:"Parabolic",value:"5"}, + {name:"Ripple",value:"6"}, + {name:"Star",value:"7"}, + {name:"Dome and Transverse",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"SGCC",desc:"Surface Slope ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_SGCC}, + {name:"SGCL",desc:"Surface Slope ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"SGCU",desc:"Surface Slope ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"SIC",desc:"Frozen Cover Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Snowfield",value:"1"}, + {name:"Ice-field",value:"2"} + ] + }, + {name:"SRD",desc:"Terrain Morphology",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"No Effect",value:"1"}, + {name:"Landslide Potential",value:"2"}, + {name:"Numerous Cobbles and Boulders",value:"11"}, + {name:"Stony Areas",value:"12"}, + {name:"Stony Soil with Surface Rock",value:"13"}, + {name:"Stony Soil with scattered Boulders",value:"14"}, + {name:"Stony Soil with numerous Boulders",value:"15"}, + {name:"Numerous Boulders",value:"16"}, + {name:"Numerous Rock Outcrops",value:"17"}, + {name:"Scattered Boulders",value:"18"}, + {name:"Talus",value:"19"}, + {name:"Boulder Field",value:"20"}, + {name:"Highly Fractured Rock",value:"31"}, + {name:"Weathered Lava",value:"32"}, + {name:"Unweathered Lava",value:"33"}, + {name:"Stony Soil with numerous Rock Outcrops",value:"34"}, + {name:"Irregular with deep Foliation Fractures",value:"35"}, + {name:"Rugged with numerous Rock Outcrops",value:"36"}, + {name:"Rugged Bedrock",value:"37"}, + {name:"Highly Distorted with sharp Rocky Ridges",value:"43"}, + {name:"Stony Soil with numerous Gullies",value:"51"}, + {name:"Moderately Dissected",value:"52"}, + {name:"Moderately Dissected with scattered Rock Outcrops",value:"53"}, + {name:"Dissected Floodplain",value:"54"}, + {name:"Highly Dissected",value:"55"}, + {name:"Deep Erosional Gullies",value:"56"}, + {name:"Steep Rugged Dissected with narrow Gullies",value:"57"}, + {name:"Karst with numerous Sinkholes and Solution Valleys",value:"58"}, + {name:"Karst with numerous Sinkholes",value:"59"}, + {name:"Hummocky Karst with Large Hills",value:"60"}, + {name:"Hummocky Karst with Low Mounds",value:"61"}, + {name:"Playa",value:"63"}, + {name:"Meander Scars and Lakes",value:"64"}, + {name:"Solifluction Lobes and Frost Scars",value:"65"}, + {name:"Hummocky with Frost Heaves",value:"66"}, + {name:"Frost Polygons",value:"67"}, + {name:"Numerous Small Lakes and Ponds",value:"69"}, + {name:"Numerous Crevasses",value:"70"}, + {name:"Numerous Terraces",value:"81"}, + {name:"Mine Tailing(s)",value:"86"}, + {name:"Numerous Dykes",value:"88"}, + {name:"Numerous Dyked Fields",value:"89"}, + {name:"Numerous Fences",value:"90"}, + {name:"Numerous Stone Walls",value:"91"}, + {name:"Numerous Man-made Drainage",value:"92"}, + {name:"Numerous Terraced Fields",value:"93"}, + {name:"Parallel Earthen Rows",value:"94"}, + {name:"Numerous Hedgerows",value:"95"}, + {name:"Other",value:"999"} + ] + }, + {name:"STP",desc:"Soil Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"GW: Well-graded Gravel",value:"1"}, + {name:"GP: Poorly-graded Gravel",value:"2"}, + {name:"GM: Silty Gravel Sand",value:"3"}, + {name:"GC: Clayey Gravel",value:"4"}, + {name:"SW: Well-graded Sand",value:"5"}, + {name:"SP: Poorly-graded Sand",value:"6"}, + {name:"SM: Silty Sand",value:"7"}, + {name:"SC: Clayey Sand",value:"8"}, + {name:"ML: Silt and Fine Sand",value:"9"}, + {name:"CL: Lean Clay",value:"10"}, + {name:"OL: Organic Silt and Clay",value:"11"}, + {name:"CH: Fat Clay",value:"12"}, + {name:"MH: Micraceous",value:"13"}, + {name:"OH: Organic Clay",value:"14"}, + {name:"PT: Peat",value:"15"}, + {name:"ML-CL: Silt, Fine Sand and Lean Clay",value:"17"}, + {name:"Evaporite",value:"18"}, + {name:"Not Evaluated",value:"99"}, + {name:"Other",value:"999"} + ] + }, + {name:"SWC",desc:"Soil Wetness Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Normally Dry",value:"1"}, + {name:"Normally Moist",value:"2"}, + {name:"Normally Wet",value:"3"}, + {name:"Normally Frozen",value:"4"} + ] + }, + {name:"TRS",desc:"Transportation System Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS2",desc:"Transportation System Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS3",desc:"Transportation System Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TSM",desc:"Terrain Surface Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Asphalt",value:"1"}, + {name:"Bedrock",value:"2"}, + {name:"Boulders",value:"3"}, + {name:"Concrete",value:"4"}, + {name:"Evaporite",value:"5"}, + {name:"Frozen Water",value:"6"}, + {name:"Gravel",value:"7"}, + {name:"Lava Flow",value:"8"}, + {name:"Loess",value:"9"}, + {name:"Mud",value:"10"}, + {name:"Paved",value:"11"}, + {name:"Rock",value:"12"}, + {name:"Sand",value:"13"}, + {name:"Soil",value:"14"}, + {name:"Other",value:"999"} + ] + }, + {name:"TSM2",desc:"Terrain Surface Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Asphalt",value:"1"}, + {name:"Bedrock",value:"2"}, + {name:"Boulders",value:"3"}, + {name:"Concrete",value:"4"}, + {name:"Evaporite",value:"5"}, + {name:"Frozen Water",value:"6"}, + {name:"Gravel",value:"7"}, + {name:"Lava Flow",value:"8"}, + {name:"Loess",value:"9"}, + {name:"Mud",value:"10"}, + {name:"Paved",value:"11"}, + {name:"Rock",value:"12"}, + {name:"Sand",value:"13"}, + {name:"Soil",value:"14"}, + {name:"Other",value:"999"} + ] + }, + {name:"TSM3",desc:"Terrain Surface Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Asphalt",value:"1"}, + {name:"Bedrock",value:"2"}, + {name:"Boulders",value:"3"}, + {name:"Concrete",value:"4"}, + {name:"Evaporite",value:"5"}, + {name:"Frozen Water",value:"6"}, + {name:"Gravel",value:"7"}, + {name:"Lava Flow",value:"8"}, + {name:"Loess",value:"9"}, + {name:"Mud",value:"10"}, + {name:"Paved",value:"11"}, + {name:"Rock",value:"12"}, + {name:"Sand",value:"13"}, + {name:"Soil",value:"14"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VGT",desc:"Volcano Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Cone",value:"1"}, + {name:"Cinder Cone",value:"2"}, + {name:"Shield",value:"3"}, + {name:"Caldera",value:"4"}, + {name:"Composite",value:"5"} + ] + }, + {name:"VOA",desc:"Volcanic Activity",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Active",value:"1"}, + {name:"Dormant",value:"2"}, + {name:"Inactive or Extinct",value:"3"} + ] + }, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WLE",desc:"Water Level Effect",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Always Dry",value:"2"}, + {name:"Covers and Uncovers",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"PointofChangePnt",fcode:"",desc:"PointofChangePoints",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"PolarIceSrf",fcode:"",desc:"PolarIceSurfaces",geom:"Area",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PFH",desc:"Predominant Feature Height",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SSE",desc:"Seasonal Ice Limit",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"PortHarbourCrv",fcode:"",desc:"PortHarbourCurves",geom:"Line",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FAC",desc:"Solid Maritime Construction",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FLO",desc:"Floating",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC2",desc:"Structural Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC3",desc:"Structural Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PWC",desc:"Shoreline Construction Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pier",value:"1"}, + {name:"Wharf",value:"2"}, + {name:"Quay",value:"3"}, + {name:"Breakwater",value:"4"}, + {name:"Groin",value:"5"}, + {name:"Mole",value:"6"}, + {name:"Recreational Pier",value:"7"}, + {name:"Training Wall",value:"8"}, + {name:"Riprap",value:"9"}, + {name:"Revetment (Marine)",value:"10"}, + {name:"Seawall",value:"11"}, + {name:"Promenade",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"SGCC",desc:"Surface Slope ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_SGCC}, + {name:"SGCL",desc:"Surface Slope ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"SGCU",desc:"Surface Slope ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"SLR",desc:"Shoreline Ramp Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Log Ramp",value:"1"}, + {name:"Marine Ramp",value:"2"}, + {name:"Slipway",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WLE",desc:"Water Level Effect",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Always Dry",value:"2"}, + {name:"Covers and Uncovers",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"PortHarbourPnt",fcode:"",desc:"PortHarbourPoints",geom:"Point",fdname:"TDS", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC2",desc:"Structural Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC3",desc:"Structural Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"TID",desc:"Tide Influenced",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WPI",desc:"World Port Index Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI014_PBY",desc:"Manufacturing Information : By-product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PBY2",desc:"Manufacturing Information : By-product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PBY3",desc:"Manufacturing Information : By-product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO",desc:"Manufacturing Information : Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO2",desc:"Manufacturing Information : Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO3",desc:"Manufacturing Information : Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW",desc:"Manufacturing Information : Raw Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW2",desc:"Manufacturing Information : Raw Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW3",desc:"Manufacturing Information : Raw Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI025_WLE",desc:"Hydrographic Vertical Positioning Information : Water Level Effect",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Partly Submerged",value:"1"}, + {name:"Always Dry",value:"2"}, + {name:"Always Submerged",value:"3"}, + {name:"Covers and Uncovers",value:"4"}, + {name:"Awash at Low Water",value:"5"}, + {name:"Awash at Chart Datum",value:"9"} + ] + }, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"PortHarbourSrf",fcode:"",desc:"PortHarbourSurfaces",geom:"Area",fdname:"TDS", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FAC",desc:"Solid Maritime Construction",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FHC",desc:"Harbour Facility Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ro-Ro Terminal",value:"1"}, + {name:"Timber-yard",value:"2"}, + {name:"Ferry Terminal",value:"3"}, + {name:"Fishing Harbour",value:"4"}, + {name:"Marina",value:"5"}, + {name:"Naval Base",value:"6"}, + {name:"Tanker Terminal",value:"7"}, + {name:"Passenger Terminal",value:"8"}, + {name:"Shipyard",value:"9"}, + {name:"Container Terminal",value:"10"}, + {name:"Bulk Terminal",value:"11"}, + {name:"Other",value:"999"} + ] + }, + {name:"FHC2",desc:"Harbour Facility Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ro-Ro Terminal",value:"1"}, + {name:"Timber-yard",value:"2"}, + {name:"Ferry Terminal",value:"3"}, + {name:"Fishing Harbour",value:"4"}, + {name:"Marina",value:"5"}, + {name:"Naval Base",value:"6"}, + {name:"Tanker Terminal",value:"7"}, + {name:"Passenger Terminal",value:"8"}, + {name:"Shipyard",value:"9"}, + {name:"Container Terminal",value:"10"}, + {name:"Bulk Terminal",value:"11"}, + {name:"Other",value:"999"} + ] + }, + {name:"FHC3",desc:"Harbour Facility Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ro-Ro Terminal",value:"1"}, + {name:"Timber-yard",value:"2"}, + {name:"Ferry Terminal",value:"3"}, + {name:"Fishing Harbour",value:"4"}, + {name:"Marina",value:"5"}, + {name:"Naval Base",value:"6"}, + {name:"Tanker Terminal",value:"7"}, + {name:"Passenger Terminal",value:"8"}, + {name:"Shipyard",value:"9"}, + {name:"Container Terminal",value:"10"}, + {name:"Bulk Terminal",value:"11"}, + {name:"Other",value:"999"} + ] + }, + {name:"FLO",desc:"Floating",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC2",desc:"Structural Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC3",desc:"Structural Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PWC",desc:"Shoreline Construction Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pier",value:"1"}, + {name:"Wharf",value:"2"}, + {name:"Quay",value:"3"}, + {name:"Breakwater",value:"4"}, + {name:"Groin",value:"5"}, + {name:"Mole",value:"6"}, + {name:"Recreational Pier",value:"7"}, + {name:"Training Wall",value:"8"}, + {name:"Riprap",value:"9"}, + {name:"Revetment (Marine)",value:"10"}, + {name:"Seawall",value:"11"}, + {name:"Promenade",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"SGCC",desc:"Surface Slope ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_SGCC}, + {name:"SGCL",desc:"Surface Slope ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"SGCU",desc:"Surface Slope ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"SLR",desc:"Shoreline Ramp Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Log Ramp",value:"1"}, + {name:"Marine Ramp",value:"2"}, + {name:"Slipway",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"TID",desc:"Tide Influenced",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WLE",desc:"Water Level Effect",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Always Dry",value:"2"}, + {name:"Covers and Uncovers",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"WPI",desc:"World Port Index Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI014_PBY",desc:"Manufacturing Information : By-product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PBY2",desc:"Manufacturing Information : By-product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PBY3",desc:"Manufacturing Information : By-product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO",desc:"Manufacturing Information : Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO2",desc:"Manufacturing Information : Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO3",desc:"Manufacturing Information : Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW",desc:"Manufacturing Information : Raw Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW2",desc:"Manufacturing Information : Raw Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW3",desc:"Manufacturing Information : Raw Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI025_WLE",desc:"Hydrographic Vertical Positioning Information : Water Level Effect",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Partly Submerged",value:"1"}, + {name:"Always Dry",value:"2"}, + {name:"Always Submerged",value:"3"}, + {name:"Covers and Uncovers",value:"4"}, + {name:"Awash at Low Water",value:"5"}, + {name:"Awash at Chart Datum",value:"9"} + ] + }, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"PublicSquarePnt",fcode:"",desc:"PublicSquarePoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"RaceTrackPnt",fcode:"",desc:"RaceTrackPoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"RecreationCrv",fcode:"",desc:"RecreationCurves",geom:"Line",fdname:"TDS", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AMA",desc:"Amusement Attraction Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Artificial Mountain",value:"1"}, + {name:"Ferris Wheel",value:"2"}, + {name:"Roller-coaster",value:"3"}, + {name:"Spherical",value:"4"}, + {name:"Water Attraction",value:"5"}, + {name:"Vertical Ride",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"RecreationPnt",fcode:"",desc:"RecreationPoints",geom:"Point",fdname:"TDS", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AMA",desc:"Amusement Attraction Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Artificial Mountain",value:"1"}, + {name:"Ferris Wheel",value:"2"}, + {name:"Roller-coaster",value:"3"}, + {name:"Spherical",value:"4"}, + {name:"Water Attraction",value:"5"}, + {name:"Vertical Ride",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CCT",desc:"Cover Closure Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Open",value:"1"}, + {name:"Partial",value:"2"}, + {name:"Moveable",value:"3"}, + {name:"Complete",value:"4"} + ] + }, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"THI",desc:"Thickness",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"RecreationSrf",fcode:"",desc:"RecreationSurfaces",geom:"Area",fdname:"TDS", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AMA",desc:"Amusement Attraction Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Artificial Mountain",value:"1"}, + {name:"Ferris Wheel",value:"2"}, + {name:"Roller-coaster",value:"3"}, + {name:"Spherical",value:"4"}, + {name:"Water Attraction",value:"5"}, + {name:"Vertical Ride",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CCT",desc:"Cover Closure Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Open",value:"1"}, + {name:"Partial",value:"2"}, + {name:"Moveable",value:"3"}, + {name:"Complete",value:"4"} + ] + }, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"RecyclingSitePnt",fcode:"",desc:"RecyclingSitePoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"ReefCrv",fcode:"",desc:"ReefCurves",geom:"Line",fdname:"TDS_CARTO", + columns:[ + {name:"ACC",desc:"Horizontal Accuracy Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Accurate",value:"1"}, + {name:"Approximate",value:"2"} + ] + }, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI025_WLE",desc:"Hydrographic Vertical Positioning Information : Water Level Effect",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Partly Submerged",value:"1"}, + {name:"Always Dry",value:"2"}, + {name:"Always Submerged",value:"3"}, + {name:"Covers and Uncovers",value:"4"}, + {name:"Awash at Low Water",value:"5"}, + {name:"Awash at Chart Datum",value:"9"} + ] + }, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"ReefPnt",fcode:"",desc:"ReefPoints",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"ACC",desc:"Horizontal Accuracy Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Accurate",value:"1"}, + {name:"Approximate",value:"2"} + ] + }, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI025_WLE",desc:"Hydrographic Vertical Positioning Information : Water Level Effect",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Partly Submerged",value:"1"}, + {name:"Always Dry",value:"2"}, + {name:"Always Submerged",value:"3"}, + {name:"Covers and Uncovers",value:"4"}, + {name:"Awash at Low Water",value:"5"}, + {name:"Awash at Chart Datum",value:"9"} + ] + }, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"ReefSrf",fcode:"",desc:"ReefSurfaces",geom:"Area",fdname:"TDS_CARTO", + columns:[ + {name:"ACC",desc:"Horizontal Accuracy Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Accurate",value:"1"}, + {name:"Approximate",value:"2"} + ] + }, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI025_WLE",desc:"Hydrographic Vertical Positioning Information : Water Level Effect",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Partly Submerged",value:"1"}, + {name:"Always Dry",value:"2"}, + {name:"Always Submerged",value:"3"}, + {name:"Covers and Uncovers",value:"4"}, + {name:"Awash at Low Water",value:"5"}, + {name:"Awash at Chart Datum",value:"9"} + ] + }, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"ResourceSrf",fcode:"",desc:"ResourceSurfaces",geom:"Area",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AVA",desc:"Absolute Vertical Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CID",desc:"Cell Identifier",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"CPS",desc:"Cell Partition Scheme",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_CPS}, + {name:"DQS",desc:"Data Quality Statement",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ETS",desc:"Extraction Specification",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ETS}, + {name:"ETZ",desc:"Extraction Specification Version",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"EVA",desc:"Elevation Vertical Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HVA",desc:"Height Vertical Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"HZD",desc:"Geodetic Datum",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_HZD}, + {name:"MDE",desc:"Maintenance Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"MEM",desc:"Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"RCG",desc:"Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"U.S. Army",value:"1"}, + {name:"U.S. Navy",value:"2"}, + {name:"U.S. Air Force",value:"3"}, + {name:"U.S. Marine Corps",value:"4"}, + {name:"U.S. Coast Guard",value:"5"}, + {name:"U.S. Africa Command (USAFRICOM)",value:"6"}, + {name:"U.S. Central Command (USCENTCOM)",value:"7"}, + {name:"U.S. European Command (USEUCOM)",value:"8"}, + {name:"U.S. Joint Forces Command (USJFCOM)",value:"9"}, + {name:"U.S. Northern Command (USNORTHCOM)",value:"10"}, + {name:"U.S. Pacific Command (PACOM)",value:"11"}, + {name:"U.S. Special Operations Command (USSOCOM)",value:"12"}, + {name:"U.S. Southern Command (USSOUTHCOM)",value:"13"}, + {name:"U.S. Strategic Command (USSTRATCOM)",value:"14"}, + {name:"U.S. Transportation Command (USTRANSCOM)",value:"15"}, + {name:"U.S. Central Intelligence Agency (CIA)",value:"16"}, + {name:"U.S. Defense Intelligence Agency (DIA)",value:"17"}, + {name:"U.S. National Security Agency (NSA)",value:"18"}, + {name:"U.S. National Geospatial-Intelligence Agency (NGA)",value:"19"}, + {name:"U.S. National Reconnaissance Office (NRO)",value:"20"}, + {name:"U.S. Department of State",value:"21"}, + {name:"U.S. Department of Homeland Security (DHS)",value:"22"}, + {name:"U.S. Department of Energy (DOE)",value:"23"}, + {name:"U.S. Federal Bureau of Investigation (FBI)",value:"24"}, + {name:"U.S. Geological Survey (USGS)",value:"25"}, + {name:"U.S. National Civil Applications Program (NCAP)",value:"26"}, + {name:"U.S. National Oceanic and Atmospheric Administration",value:"27"}, + {name:"Australian Geospatial-Intelligence Organization (Australia)",value:"28"}, + {name:"Geographic Service (Belgium)",value:"29"}, + {name:"Military Topographic Service (Bulgaria)",value:"30"}, + {name:"Mapping and Charting Establishment (Canada)",value:"31"}, + {name:"Geographic Service of the Czech Armed Forces (Czech Republic)",value:"32"}, + {name:"Defence Acquisition and Logistics Organization (Denmark)",value:"33"}, + {name:"Military Geographic Group (Estonia)",value:"34"}, + {name:"Topographic Service (Finland)",value:"35"}, + {name:"Bureau Geographie, Hydrographie, Oceanographie et Meteorologie (France)",value:"36"}, + {name:"Bundeswehr Geoinformation Office (Germany)",value:"37"}, + {name:"Hellenic Military Geographic Service (Greece)",value:"38"}, + {name:"Geoinformation Service of the Hungarian Defence Forces (Hungary)",value:"39"}, + {name:"Defense Information Security (Italy)",value:"40"}, + {name:"Geospatial Information Agency (Latvia)",value:"41"}, + {name:"Military Mapping Centre (Lithuania)",value:"42"}, + {name:"National Army Topographic Service (Moldova)",value:"43"}, + {name:"Army Geographic Agency (Netherlands)",value:"44"}, + {name:"GEOINT New Zealand (New Zealand)",value:"45"}, + {name:"Military Geographic Service (Norway)",value:"46"}, + {name:"Military Geography Division (Poland)",value:"47"}, + {name:"Army Geographic Institute (Portugal)",value:"48"}, + {name:"Military Topographic Directorate (Romania)",value:"49"}, + {name:"Topographic Institute (Slovakia)",value:"50"}, + {name:"Army Geographic Centre (Spain)",value:"51"}, + {name:"Swedish Armed Forces (Sweden)",value:"52"}, + {name:"General Command of Mapping (Turkey)",value:"53"}, + {name:"Defence Geographic Centre Intelligence Collection Group (United Kingdom)",value:"54"}, + {name:"U.S. Army Geospatial Center (AGC)",value:"55"}, + {name:"Army (Australia)",value:"56"}, + {name:"Military Geographic Division (Croatia)",value:"57"}, + {name:"Directorate Geospatial Information (South Africa)",value:"58"}, + {name:"Korean Defense Intelligence Agency (South Korea)",value:"59"}, + {name:"National Intelligence Service (South Korea)",value:"60"}, + {name:"Imagery Support Group (Singapore)",value:"61"}, + {name:"National Security Bureau (Taiwan)",value:"62"}, + {name:"Materiel Production Center (Taiwan)",value:"63"}, + {name:"Ministry of Defense of Japan (Japan)",value:"64"}, + {name:"Ministry of Construction and Urban Development (Mongolia)",value:"65"}, + {name:"National Mapping and Resource Information Authority (Philippines)",value:"66"}, + {name:"Royal Jordanian Geographic Centre (Jordan)",value:"67"}, + {name:"National Survey Authority (Oman)",value:"68"}, + {name:"Armed Forces General Headquarters (Qatar)",value:"69"}, + {name:"Ministry of Defense of Saudi Arabia (Saudi Arabia)",value:"70"}, + {name:"Directorate of Survey (Kuwait)",value:"71"}, + {name:"Military Survey Department (United Arab Emirates)",value:"72"}, + {name:"Information Network Security Agency (Ethiopia)",value:"73"}, + {name:"Ministry of State for Defense (Kenya)",value:"74"}, + {name:"El Instituto Nacional de Estadistica y Geografia (Mexico)",value:"75"}, + {name:"Instituto Geográfico Militar (Chile)",value:"76"}, + {name:"Servicio Geográfico Militar (Uruguay)",value:"77"}, + {name:"Dirección del Servicio Geográfico Military (Paraguay)",value:"78"}, + {name:"Instituto Geográfico Nacional (Peru)",value:"79"}, + {name:"Instituto Geográfico Agustín Codazzi (Colombia)",value:"80"}, + {name:"Instituto Geográfico y del Catastro Nacional (El Salvador)",value:"81"}, + {name:"Instituto Geográfico Nacional (Guatemala)",value:"82"}, + {name:"Servicio Geográfico Militar (Guatemala)",value:"83"}, + {name:"Instituto Cartográfico Militar (Dominican Republic)",value:"84"}, + {name:"Instituto Nicaragüense de Estudios Terretoriales (Nicaragua)",value:"85"}, + {name:"Dirección General de Registros, Catastro, y Geografía (Honduras)",value:"86"}, + {name:"Instituto Geográfico Militar (Ecuador)",value:"87"}, + {name:"Instituto Geográfico Nacional Tommy Guardia (Panama)",value:"88"}, + {name:"Instituto Geográfico Nacional (Argentina)",value:"89"}, + {name:"Diretoria de Serviço Geográfico (Brazil)",value:"90"}, + {name:"Not Applicable",value:"998"}, + {name:"Other",value:"999"} + ] + }, + {name:"RTL",desc:"Resource Title",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"URI",desc:"Unique Resource Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VDT",desc:"Vertical Datum",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_VDT}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI020_GE42",desc:"Location Country Designation : GENC Short URN-based Identifier second",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI020_GE43",desc:"Location Country Designation : GENC Short URN-based Identifier third",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI020_GE44",desc:"Location Country Designation : GENC Short URN-based Identifier fourth",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"RoadMarkerPnt",fcode:"",desc:"RoadMarkerPoints",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"RunwayCrv",fcode:"",desc:"RunwayCurve",geom:"Line",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AXS",desc:"Aerodrome Surface Status",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Closed",value:"1"}, + {name:"Open",value:"2"}, + {name:"Work in Progress",value:"3"}, + {name:"Parked or Disabled Aircraft",value:"4"} + ] + }, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"DEV",desc:"Deck Level",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GB052_RIDH",desc:"Runway Direction : Runway Designator (high end)",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"GB052_RIDL",desc:"Runway Direction : Runway Designator (low end)",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"GSGCHC",desc:"Runway Direction : Surface Slope (high end) ",optional:"R",type:"enumeration",defValue:"5", + enumerations:[ + {name:"Open Interval",value:"2"}, + {name:"Greater-than-or-equal to Less-than Interval",value:"3"}, + {name:"Greater-than to Less-than-or-equal Interval",value:"4"}, + {name:"Closed Interval",value:"5"}, + {name:"Greater-than Semi-interval",value:"6"}, + {name:"Greater-than or Equal Semi-interval",value:"7"}, + {name:"Less-than Semi-interval",value:"8"}, + {name:"Less-than or Equal Semi-interval",value:"9"} + ] + }, + {name:"GSGCHL",desc:"Runway Direction : Surface Slope (high end) ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"GSGCHU",desc:"Runway Direction : Surface Slope (high end) ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"GSGCLC",desc:"Runway Direction : Surface Slope (low end) ",optional:"R",type:"enumeration",defValue:"5", + enumerations:[ + {name:"Open Interval",value:"2"}, + {name:"Greater-than-or-equal to Less-than Interval",value:"3"}, + {name:"Greater-than to Less-than-or-equal Interval",value:"4"}, + {name:"Closed Interval",value:"5"}, + {name:"Greater-than Semi-interval",value:"6"}, + {name:"Greater-than or Equal Semi-interval",value:"7"}, + {name:"Less-than Semi-interval",value:"8"}, + {name:"Less-than or Equal Semi-interval",value:"9"} + ] + }, + {name:"GSGCLL",desc:"Runway Direction : Surface Slope (low end) ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"GSGCLU",desc:"Runway Direction : Surface Slope (low end) ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SBB",desc:"Supported by Bridge Span",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI019_ASP",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Preparation Method",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aggregate Seal Coat",value:"1"}, + {name:"Graded",value:"2"}, + {name:"Grass",value:"3"}, + {name:"Grooved",value:"4"}, + {name:"Oiled",value:"5"}, + {name:"Porous Friction Course",value:"6"}, + {name:"Rolled",value:"7"}, + {name:"Rubberized Seal Coat",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASP2",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Preparation Method [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aggregate Seal Coat",value:"1"}, + {name:"Graded",value:"2"}, + {name:"Grass",value:"3"}, + {name:"Grooved",value:"4"}, + {name:"Oiled",value:"5"}, + {name:"Porous Friction Course",value:"6"}, + {name:"Rolled",value:"7"}, + {name:"Rubberized Seal Coat",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASP3",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Preparation Method [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aggregate Seal Coat",value:"1"}, + {name:"Graded",value:"2"}, + {name:"Grass",value:"3"}, + {name:"Grooved",value:"4"}, + {name:"Oiled",value:"5"}, + {name:"Porous Friction Course",value:"6"}, + {name:"Rolled",value:"7"}, + {name:"Rubberized Seal Coat",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASU",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Composition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Asphalt",value:"1"}, + {name:"Bituminous Mix",value:"2"}, + {name:"Brick",value:"3"}, + {name:"Clay",value:"4"}, + {name:"Concrete",value:"5"}, + {name:"Coral",value:"6"}, + {name:"Earthen",value:"7"}, + {name:"Gravel",value:"8"}, + {name:"Ice",value:"9"}, + {name:"Landing Mat",value:"10"}, + {name:"Laterite",value:"11"}, + {name:"Macadam",value:"12"}, + {name:"Membrane",value:"13"}, + {name:"Non-bituminous Mix",value:"14"}, + {name:"Pierced Steel Planking",value:"15"}, + {name:"Sand",value:"16"}, + {name:"Snow",value:"17"}, + {name:"Stone",value:"18"}, + {name:"Water",value:"19"}, + {name:"Wood",value:"20"}, + {name:"Asphalt Over Concrete",value:"21"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASU2",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Composition [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Asphalt",value:"1"}, + {name:"Bituminous Mix",value:"2"}, + {name:"Brick",value:"3"}, + {name:"Clay",value:"4"}, + {name:"Concrete",value:"5"}, + {name:"Coral",value:"6"}, + {name:"Earthen",value:"7"}, + {name:"Gravel",value:"8"}, + {name:"Ice",value:"9"}, + {name:"Landing Mat",value:"10"}, + {name:"Laterite",value:"11"}, + {name:"Macadam",value:"12"}, + {name:"Membrane",value:"13"}, + {name:"Non-bituminous Mix",value:"14"}, + {name:"Pierced Steel Planking",value:"15"}, + {name:"Sand",value:"16"}, + {name:"Snow",value:"17"}, + {name:"Stone",value:"18"}, + {name:"Water",value:"19"}, + {name:"Wood",value:"20"}, + {name:"Asphalt Over Concrete",value:"21"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASU3",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Composition [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Asphalt",value:"1"}, + {name:"Bituminous Mix",value:"2"}, + {name:"Brick",value:"3"}, + {name:"Clay",value:"4"}, + {name:"Concrete",value:"5"}, + {name:"Coral",value:"6"}, + {name:"Earthen",value:"7"}, + {name:"Gravel",value:"8"}, + {name:"Ice",value:"9"}, + {name:"Landing Mat",value:"10"}, + {name:"Laterite",value:"11"}, + {name:"Macadam",value:"12"}, + {name:"Membrane",value:"13"}, + {name:"Non-bituminous Mix",value:"14"}, + {name:"Pierced Steel Planking",value:"15"}, + {name:"Sand",value:"16"}, + {name:"Snow",value:"17"}, + {name:"Stone",value:"18"}, + {name:"Water",value:"19"}, + {name:"Wood",value:"20"}, + {name:"Asphalt Over Concrete",value:"21"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASX",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Completely Paved",value:"1"}, + {name:"Mostly Paved",value:"2"}, + {name:"Unprepared",value:"3"}, + {name:"Partially Paved",value:"4"}, + {name:"Unpaved",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_SFS",desc:"Aerodrome Pavement Information : Aerodrome Pavement Functional Status",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Fair",value:"1"}, + {name:"Fair Estimated",value:"2"}, + {name:"Good",value:"3"}, + {name:"Good Estimated",value:"4"}, + {name:"Poor",value:"5"}, + {name:"Poor Estimated",value:"6"}, + {name:"Under Construction",value:"7"}, + {name:"Unserviceable",value:"8"}, + {name:"Excellent",value:"9"} + ] + }, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"RunwayPnt",fcode:"",desc:"RunwayPoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AXS",desc:"Aerodrome Surface Status",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Closed",value:"1"}, + {name:"Open",value:"2"}, + {name:"Work in Progress",value:"3"}, + {name:"Parked or Disabled Aircraft",value:"4"} + ] + }, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"DEV",desc:"Deck Level",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GB052_RIDH",desc:"Runway Direction : Runway Designator (high end)",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"GB052_RIDL",desc:"Runway Direction : Runway Designator (low end)",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"GSGCHC",desc:"Runway Direction : Surface Slope (high end) ",optional:"R",type:"enumeration",defValue:"5", + enumerations:[ + {name:"Open Interval",value:"2"}, + {name:"Greater-than-or-equal to Less-than Interval",value:"3"}, + {name:"Greater-than to Less-than-or-equal Interval",value:"4"}, + {name:"Closed Interval",value:"5"}, + {name:"Greater-than Semi-interval",value:"6"}, + {name:"Greater-than or Equal Semi-interval",value:"7"}, + {name:"Less-than Semi-interval",value:"8"}, + {name:"Less-than or Equal Semi-interval",value:"9"} + ] + }, + {name:"GSGCHL",desc:"Runway Direction : Surface Slope (high end) ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"GSGCHU",desc:"Runway Direction : Surface Slope (high end) ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"GSGCLC",desc:"Runway Direction : Surface Slope (low end) ",optional:"R",type:"enumeration",defValue:"5", + enumerations:[ + {name:"Open Interval",value:"2"}, + {name:"Greater-than-or-equal to Less-than Interval",value:"3"}, + {name:"Greater-than to Less-than-or-equal Interval",value:"4"}, + {name:"Closed Interval",value:"5"}, + {name:"Greater-than Semi-interval",value:"6"}, + {name:"Greater-than or Equal Semi-interval",value:"7"}, + {name:"Less-than Semi-interval",value:"8"}, + {name:"Less-than or Equal Semi-interval",value:"9"} + ] + }, + {name:"GSGCLL",desc:"Runway Direction : Surface Slope (low end) ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"GSGCLU",desc:"Runway Direction : Surface Slope (low end) ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SBB",desc:"Supported by Bridge Span",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI019_ASP",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Preparation Method",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aggregate Seal Coat",value:"1"}, + {name:"Graded",value:"2"}, + {name:"Grass",value:"3"}, + {name:"Grooved",value:"4"}, + {name:"Oiled",value:"5"}, + {name:"Porous Friction Course",value:"6"}, + {name:"Rolled",value:"7"}, + {name:"Rubberized Seal Coat",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASP2",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Preparation Method [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aggregate Seal Coat",value:"1"}, + {name:"Graded",value:"2"}, + {name:"Grass",value:"3"}, + {name:"Grooved",value:"4"}, + {name:"Oiled",value:"5"}, + {name:"Porous Friction Course",value:"6"}, + {name:"Rolled",value:"7"}, + {name:"Rubberized Seal Coat",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASP3",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Preparation Method [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aggregate Seal Coat",value:"1"}, + {name:"Graded",value:"2"}, + {name:"Grass",value:"3"}, + {name:"Grooved",value:"4"}, + {name:"Oiled",value:"5"}, + {name:"Porous Friction Course",value:"6"}, + {name:"Rolled",value:"7"}, + {name:"Rubberized Seal Coat",value:"8"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASU",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Composition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Asphalt",value:"1"}, + {name:"Bituminous Mix",value:"2"}, + {name:"Brick",value:"3"}, + {name:"Clay",value:"4"}, + {name:"Concrete",value:"5"}, + {name:"Coral",value:"6"}, + {name:"Earthen",value:"7"}, + {name:"Gravel",value:"8"}, + {name:"Ice",value:"9"}, + {name:"Landing Mat",value:"10"}, + {name:"Laterite",value:"11"}, + {name:"Macadam",value:"12"}, + {name:"Membrane",value:"13"}, + {name:"Non-bituminous Mix",value:"14"}, + {name:"Pierced Steel Planking",value:"15"}, + {name:"Sand",value:"16"}, + {name:"Snow",value:"17"}, + {name:"Stone",value:"18"}, + {name:"Water",value:"19"}, + {name:"Wood",value:"20"}, + {name:"Asphalt Over Concrete",value:"21"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASU2",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Composition [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Asphalt",value:"1"}, + {name:"Bituminous Mix",value:"2"}, + {name:"Brick",value:"3"}, + {name:"Clay",value:"4"}, + {name:"Concrete",value:"5"}, + {name:"Coral",value:"6"}, + {name:"Earthen",value:"7"}, + {name:"Gravel",value:"8"}, + {name:"Ice",value:"9"}, + {name:"Landing Mat",value:"10"}, + {name:"Laterite",value:"11"}, + {name:"Macadam",value:"12"}, + {name:"Membrane",value:"13"}, + {name:"Non-bituminous Mix",value:"14"}, + {name:"Pierced Steel Planking",value:"15"}, + {name:"Sand",value:"16"}, + {name:"Snow",value:"17"}, + {name:"Stone",value:"18"}, + {name:"Water",value:"19"}, + {name:"Wood",value:"20"}, + {name:"Asphalt Over Concrete",value:"21"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASU3",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Composition [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Asphalt",value:"1"}, + {name:"Bituminous Mix",value:"2"}, + {name:"Brick",value:"3"}, + {name:"Clay",value:"4"}, + {name:"Concrete",value:"5"}, + {name:"Coral",value:"6"}, + {name:"Earthen",value:"7"}, + {name:"Gravel",value:"8"}, + {name:"Ice",value:"9"}, + {name:"Landing Mat",value:"10"}, + {name:"Laterite",value:"11"}, + {name:"Macadam",value:"12"}, + {name:"Membrane",value:"13"}, + {name:"Non-bituminous Mix",value:"14"}, + {name:"Pierced Steel Planking",value:"15"}, + {name:"Sand",value:"16"}, + {name:"Snow",value:"17"}, + {name:"Stone",value:"18"}, + {name:"Water",value:"19"}, + {name:"Wood",value:"20"}, + {name:"Asphalt Over Concrete",value:"21"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_ASX",desc:"Aerodrome Pavement Information : Aerodrome Movement Area Surface Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Completely Paved",value:"1"}, + {name:"Mostly Paved",value:"2"}, + {name:"Unprepared",value:"3"}, + {name:"Partially Paved",value:"4"}, + {name:"Unpaved",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI019_SFS",desc:"Aerodrome Pavement Information : Aerodrome Pavement Functional Status",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Fair",value:"1"}, + {name:"Fair Estimated",value:"2"}, + {name:"Good",value:"3"}, + {name:"Good Estimated",value:"4"}, + {name:"Poor",value:"5"}, + {name:"Poor Estimated",value:"6"}, + {name:"Under Construction",value:"7"}, + {name:"Unserviceable",value:"8"}, + {name:"Excellent",value:"9"} + ] + }, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"SettlementPnt",fcode:"",desc:"SettlementPoints",geom:"Point",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"BAC",desc:"Built-up Area Density Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Sparse",value:"1"}, + {name:"Dense",value:"2"}, + {name:"Moderate",value:"3"} + ] + }, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WPI",desc:"World Port Index Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_FNA2",desc:"Geographic Name Information : Full Name (second)",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI005_NFN2",desc:"Geographic Name Information : Name Identifier (second)",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"SettlementSrf",fcode:"",desc:"SettlementSurfaces",geom:"Area",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"BAC",desc:"Built-up Area Density Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Sparse",value:"1"}, + {name:"Dense",value:"2"}, + {name:"Moderate",value:"3"} + ] + }, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WPI",desc:"World Port Index Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_FNA2",desc:"Geographic Name Information : Full Name (second)",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI005_NFN2",desc:"Geographic Name Information : Name Identifier (second)",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"ShantyTownPnt",fcode:"",desc:"ShantyTownPoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"SnagPnt",fcode:"",desc:"SnagPoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"SnagSrf",fcode:"",desc:"SnagSurface",geom:"Area",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"StoragePnt",fcode:"",desc:"StoragePoints",geom:"Point",fdname:"TDS", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CBP",desc:"Containment Berm Present",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LUN",desc:"Located Underground",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PPO",desc:"Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO2",desc:"Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO3",desc:"Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"SPT",desc:"Supported",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"SSC",desc:"Structure Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pyramidal",value:"12"}, + {name:"Spherical",value:"17"}, + {name:"Arched",value:"77"}, + {name:"Multiple Arched",value:"78"}, + {name:"Columnar",value:"95"}, + {name:"Plaque",value:"96"}, + {name:"Statue",value:"97"}, + {name:"Cross",value:"98"}, + {name:"Obelisk",value:"109"}, + {name:"Statue on Pedestal",value:"112"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"YWQ",desc:"Water Potability",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Potable",value:"1"}, + {name:"Treatable",value:"2"}, + {name:"Contaminated",value:"3"}, + {name:"Nonpotable",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"StorageSrf",fcode:"",desc:"StorageSurfaces",geom:"Area",fdname:"TDS", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CBP",desc:"Containment Berm Present",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LUN",desc:"Located Underground",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PPO",desc:"Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO2",desc:"Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO3",desc:"Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"SPT",desc:"Supported",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"SSC",desc:"Structure Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pyramidal",value:"12"}, + {name:"Spherical",value:"17"}, + {name:"Arched",value:"77"}, + {name:"Multiple Arched",value:"78"}, + {name:"Columnar",value:"95"}, + {name:"Plaque",value:"96"}, + {name:"Statue",value:"97"}, + {name:"Cross",value:"98"}, + {name:"Obelisk",value:"109"}, + {name:"Statue on Pedestal",value:"112"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"YWQ",desc:"Water Potability",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Potable",value:"1"}, + {name:"Treatable",value:"2"}, + {name:"Contaminated",value:"3"}, + {name:"Nonpotable",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"StructureCrv",fcode:"",desc:"StructureCurves",geom:"Line",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"BAT",desc:"Barrier Top Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Barbed Wire",value:"1"}, + {name:"Chain-link",value:"2"}, + {name:"Concertina Wire",value:"3"}, + {name:"Electrified Wire",value:"4"}, + {name:"Spiked",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"BSU",desc:"Building Superstructure Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Chimney",value:"1"}, + {name:"Elevator Machine Room",value:"2"}, + {name:"HVAC Equipment",value:"3"}, + {name:"Lightning Rod",value:"4"}, + {name:"Minaret",value:"5"}, + {name:"Ornamental Element",value:"6"}, + {name:"Parapet",value:"7"}, + {name:"Roof Deck",value:"8"}, + {name:"Roof Garden",value:"9"}, + {name:"Signage",value:"10"}, + {name:"Skylight",value:"11"}, + {name:"Tower",value:"13"}, + {name:"Cupola",value:"14"}, + {name:"Steeple",value:"15"}, + {name:"Turret",value:"16"}, + {name:"Dome",value:"17"}, + {name:"Solar Panels",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FTI",desc:"Fence Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Metal",value:"1"}, + {name:"Wood",value:"2"}, + {name:"Barbed Wire",value:"5"}, + {name:"Chain-link",value:"6"}, + {name:"Electrified Wire",value:"7"}, + {name:"Geotextile",value:"8"}, + {name:"Netting",value:"9"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC2",desc:"Structural Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC3",desc:"Structural Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"THI",desc:"Thickness",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WTI",desc:"Wall Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Free-standing",value:"1"}, + {name:"Retaining",value:"2"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI018_WIT",desc:"Wireless Telecommunication Information : Wireless Telecommunication Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Cellular Phone",value:"1"}, + {name:"Microwave Radio Relay",value:"2"}, + {name:"Mobile Phone",value:"3"}, + {name:"Radio Broadcast",value:"4"}, + {name:"Radio Telephone",value:"5"}, + {name:"Radio-telegraph",value:"6"}, + {name:"Television (TV)",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"StructurePnt",fcode:"",desc:"StructurePoints",geom:"Point",fdname:"TDS", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"BNF",desc:"Floor Count",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"BSU",desc:"Building Superstructure Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Chimney",value:"1"}, + {name:"Elevator Machine Room",value:"2"}, + {name:"HVAC Equipment",value:"3"}, + {name:"Lightning Rod",value:"4"}, + {name:"Minaret",value:"5"}, + {name:"Ornamental Element",value:"6"}, + {name:"Parapet",value:"7"}, + {name:"Roof Deck",value:"8"}, + {name:"Roof Garden",value:"9"}, + {name:"Signage",value:"10"}, + {name:"Skylight",value:"11"}, + {name:"Tower",value:"13"}, + {name:"Cupola",value:"14"}, + {name:"Steeple",value:"15"}, + {name:"Turret",value:"16"}, + {name:"Dome",value:"17"}, + {name:"Solar Panels",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CRM",desc:"Crane Mobility Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Fixed",value:"1"}, + {name:"Travelling",value:"2"}, + {name:"Floating",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"GUG",desc:"Guyed",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PYC",desc:"Pylon Configuration",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"'A'",value:"1"}, + {name:"'H'",value:"2"}, + {name:"'I'",value:"3"}, + {name:"'Y'",value:"4"}, + {name:"'T'",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"PYM",desc:"Pylon Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Concrete",value:"3"}, + {name:"Masonry",value:"4"}, + {name:"Metal",value:"5"}, + {name:"Wood",value:"7"}, + {name:"Steel",value:"8"}, + {name:"Fibreglass",value:"9"}, + {name:"Iron",value:"10"}, + {name:"Other",value:"999"} + ] + }, + {name:"RLE",desc:"Relative Level",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Raised",value:"1"}, + {name:"Level",value:"2"}, + {name:"Depressed",value:"3"} + ] + }, + {name:"SPT",desc:"Supported",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"TEL",desc:"Telescope Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Optical",value:"1"}, + {name:"Parabolic Radio Aerial",value:"2"}, + {name:"Radio Aerial Array",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"TOS",desc:"Tower Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mast",value:"6"}, + {name:"Tripod",value:"11"}, + {name:"Truss",value:"12"}, + {name:"Tubular",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TTC",desc:"Tower Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Observation Tower",value:"2"}, + {name:"Lookout Tower",value:"10"}, + {name:"Fire Tower",value:"12"}, + {name:"Telecommunication Tower",value:"20"}, + {name:"Guard Tower",value:"21"}, + {name:"Industrial Tower",value:"22"}, + {name:"Drop Tower",value:"23"}, + {name:"Solar Power Tower",value:"24"}, + {name:"Other",value:"999"} + ] + }, + {name:"TTC2",desc:"Tower Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Observation Tower",value:"2"}, + {name:"Lookout Tower",value:"10"}, + {name:"Fire Tower",value:"12"}, + {name:"Telecommunication Tower",value:"20"}, + {name:"Guard Tower",value:"21"}, + {name:"Industrial Tower",value:"22"}, + {name:"Drop Tower",value:"23"}, + {name:"Solar Power Tower",value:"24"}, + {name:"Other",value:"999"} + ] + }, + {name:"TTC3",desc:"Tower Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Observation Tower",value:"2"}, + {name:"Lookout Tower",value:"10"}, + {name:"Fire Tower",value:"12"}, + {name:"Telecommunication Tower",value:"20"}, + {name:"Guard Tower",value:"21"}, + {name:"Industrial Tower",value:"22"}, + {name:"Drop Tower",value:"23"}, + {name:"Solar Power Tower",value:"24"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI014_PBY",desc:"Manufacturing Information : By-product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PBY2",desc:"Manufacturing Information : By-product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PBY3",desc:"Manufacturing Information : By-product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO",desc:"Manufacturing Information : Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO2",desc:"Manufacturing Information : Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO3",desc:"Manufacturing Information : Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW",desc:"Manufacturing Information : Raw Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW2",desc:"Manufacturing Information : Raw Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW3",desc:"Manufacturing Information : Raw Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI018_WIT",desc:"Wireless Telecommunication Information : Wireless Telecommunication Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Cellular Phone",value:"1"}, + {name:"Microwave Radio Relay",value:"2"}, + {name:"Mobile Phone",value:"3"}, + {name:"Radio Broadcast",value:"4"}, + {name:"Radio Telephone",value:"5"}, + {name:"Radio-telegraph",value:"6"}, + {name:"Television (TV)",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI037_REL",desc:"Religious Information : Religious Designation",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Buddhism",value:"1"}, + {name:"Islam",value:"2"}, + {name:"Roman Catholic",value:"3"}, + {name:"Christian",value:"4"}, + {name:"Judaism",value:"5"}, + {name:"Orthodox",value:"6"}, + {name:"Protestant",value:"7"}, + {name:"Shinto",value:"8"}, + {name:"Hinduism",value:"9"}, + {name:"Shia",value:"10"}, + {name:"Sunni",value:"11"}, + {name:"Nestorian",value:"12"}, + {name:"Chaldean",value:"13"}, + {name:"Mixed and/or No Designation",value:"14"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI037_RFA",desc:"Religious Information : Religious Facility Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Cathedral",value:"1"}, + {name:"Chapel",value:"2"}, + {name:"Church",value:"3"}, + {name:"Marabout",value:"4"}, + {name:"Minaret",value:"5"}, + {name:"Mission",value:"6"}, + {name:"Mosque",value:"7"}, + {name:"Pagoda",value:"8"}, + {name:"Religious Community",value:"9"}, + {name:"Seminary",value:"10"}, + {name:"Shrine",value:"11"}, + {name:"Stupa",value:"12"}, + {name:"Synagogue",value:"13"}, + {name:"Tabernacle",value:"14"}, + {name:"Temple",value:"15"}, + {name:"Convent",value:"18"}, + {name:"Monastery",value:"19"}, + {name:"Noviciate",value:"20"}, + {name:"Hermitage",value:"21"}, + {name:"Retreat",value:"22"}, + {name:"Islamic Prayer Hall",value:"25"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"StructureSrf",fcode:"",desc:"StructureSurfaces",geom:"Area",fdname:"TDS", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"BNF",desc:"Floor Count",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"BSU",desc:"Building Superstructure Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Chimney",value:"1"}, + {name:"Elevator Machine Room",value:"2"}, + {name:"HVAC Equipment",value:"3"}, + {name:"Lightning Rod",value:"4"}, + {name:"Minaret",value:"5"}, + {name:"Ornamental Element",value:"6"}, + {name:"Parapet",value:"7"}, + {name:"Roof Deck",value:"8"}, + {name:"Roof Garden",value:"9"}, + {name:"Signage",value:"10"}, + {name:"Skylight",value:"11"}, + {name:"Tower",value:"13"}, + {name:"Cupola",value:"14"}, + {name:"Steeple",value:"15"}, + {name:"Turret",value:"16"}, + {name:"Dome",value:"17"}, + {name:"Solar Panels",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"GUG",desc:"Guyed",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PYC",desc:"Pylon Configuration",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"'A'",value:"1"}, + {name:"'H'",value:"2"}, + {name:"'I'",value:"3"}, + {name:"'Y'",value:"4"}, + {name:"'T'",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"PYM",desc:"Pylon Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Concrete",value:"3"}, + {name:"Masonry",value:"4"}, + {name:"Metal",value:"5"}, + {name:"Wood",value:"7"}, + {name:"Steel",value:"8"}, + {name:"Fibreglass",value:"9"}, + {name:"Iron",value:"10"}, + {name:"Other",value:"999"} + ] + }, + {name:"RLE",desc:"Relative Level",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Raised",value:"1"}, + {name:"Level",value:"2"}, + {name:"Depressed",value:"3"} + ] + }, + {name:"SPT",desc:"Supported",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"TEL",desc:"Telescope Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Optical",value:"1"}, + {name:"Parabolic Radio Aerial",value:"2"}, + {name:"Radio Aerial Array",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"TOS",desc:"Tower Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mast",value:"6"}, + {name:"Tripod",value:"11"}, + {name:"Truss",value:"12"}, + {name:"Tubular",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TTC",desc:"Tower Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Observation Tower",value:"2"}, + {name:"Lookout Tower",value:"10"}, + {name:"Fire Tower",value:"12"}, + {name:"Telecommunication Tower",value:"20"}, + {name:"Guard Tower",value:"21"}, + {name:"Industrial Tower",value:"22"}, + {name:"Drop Tower",value:"23"}, + {name:"Solar Power Tower",value:"24"}, + {name:"Other",value:"999"} + ] + }, + {name:"TTC2",desc:"Tower Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Observation Tower",value:"2"}, + {name:"Lookout Tower",value:"10"}, + {name:"Fire Tower",value:"12"}, + {name:"Telecommunication Tower",value:"20"}, + {name:"Guard Tower",value:"21"}, + {name:"Industrial Tower",value:"22"}, + {name:"Drop Tower",value:"23"}, + {name:"Solar Power Tower",value:"24"}, + {name:"Other",value:"999"} + ] + }, + {name:"TTC3",desc:"Tower Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Observation Tower",value:"2"}, + {name:"Lookout Tower",value:"10"}, + {name:"Fire Tower",value:"12"}, + {name:"Telecommunication Tower",value:"20"}, + {name:"Guard Tower",value:"21"}, + {name:"Industrial Tower",value:"22"}, + {name:"Drop Tower",value:"23"}, + {name:"Solar Power Tower",value:"24"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI014_PBY",desc:"Manufacturing Information : By-product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PBY2",desc:"Manufacturing Information : By-product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PBY3",desc:"Manufacturing Information : By-product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Ash",value:"1"}, + {name:"Cinders",value:"2"}, + {name:"No Byproduct",value:"6"}, + {name:"Radioactive Material",value:"7"}, + {name:"Refuse",value:"8"}, + {name:"Scrap-metal",value:"12"}, + {name:"Sewage",value:"13"}, + {name:"Slag",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO",desc:"Manufacturing Information : Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO2",desc:"Manufacturing Information : Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PPO3",desc:"Manufacturing Information : Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Coffee",value:"20"}, + {name:"Consumer Goods",value:"25"}, + {name:"Cotton",value:"28"}, + {name:"Desalinated Water",value:"32"}, + {name:"Fish",value:"39"}, + {name:"Food",value:"41"}, + {name:"Fruit",value:"44"}, + {name:"Lumber",value:"63"}, + {name:"Milk",value:"70"}, + {name:"No Product",value:"73"}, + {name:"Rice",value:"92"}, + {name:"Rubber",value:"94"}, + {name:"Salt",value:"95"}, + {name:"Sugar",value:"111"}, + {name:"Textile",value:"114"}, + {name:"Tobacco",value:"117"}, + {name:"Vegetation Product",value:"121"}, + {name:"Wine",value:"123"}, + {name:"Olive Oil",value:"155"}, + {name:"Milled Grain",value:"160"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW",desc:"Manufacturing Information : Raw Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW2",desc:"Manufacturing Information : Raw Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI014_PRW3",desc:"Manufacturing Information : Raw Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Asphalt",value:"2"}, + {name:"Bauxite",value:"5"}, + {name:"Cement",value:"9"}, + {name:"Chemical",value:"10"}, + {name:"Clay",value:"11"}, + {name:"Coal",value:"12"}, + {name:"Coke",value:"14"}, + {name:"Copper",value:"16"}, + {name:"Cotton",value:"18"}, + {name:"Gas",value:"27"}, + {name:"Glass",value:"28"}, + {name:"Gold",value:"29"}, + {name:"Plant Material",value:"33"}, + {name:"Ice",value:"38"}, + {name:"Iron",value:"39"}, + {name:"Lead",value:"41"}, + {name:"Lumber",value:"45"}, + {name:"Manganese",value:"46"}, + {name:"Metal",value:"48"}, + {name:"No Raw Material",value:"50"}, + {name:"Oil",value:"52"}, + {name:"Ore",value:"54"}, + {name:"Paper",value:"57"}, + {name:"Plastic",value:"60"}, + {name:"Radioactive Material",value:"64"}, + {name:"Rubber",value:"66"}, + {name:"Sewage",value:"75"}, + {name:"Silver",value:"78"}, + {name:"Snow",value:"79"}, + {name:"Steel",value:"83"}, + {name:"Sugar",value:"85"}, + {name:"Textile",value:"87"}, + {name:"Tobacco",value:"90"}, + {name:"Uranium",value:"93"}, + {name:"Vegetation",value:"94"}, + {name:"Water",value:"96"}, + {name:"Wood",value:"97"}, + {name:"Zinc",value:"99"}, + {name:"Petroleum and/or Natural Gas",value:"118"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI018_WIT",desc:"Wireless Telecommunication Information : Wireless Telecommunication Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Cellular Phone",value:"1"}, + {name:"Microwave Radio Relay",value:"2"}, + {name:"Mobile Phone",value:"3"}, + {name:"Radio Broadcast",value:"4"}, + {name:"Radio Telephone",value:"5"}, + {name:"Radio-telegraph",value:"6"}, + {name:"Television (TV)",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI037_REL",desc:"Religious Information : Religious Designation",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Buddhism",value:"1"}, + {name:"Islam",value:"2"}, + {name:"Roman Catholic",value:"3"}, + {name:"Christian",value:"4"}, + {name:"Judaism",value:"5"}, + {name:"Orthodox",value:"6"}, + {name:"Protestant",value:"7"}, + {name:"Shinto",value:"8"}, + {name:"Hinduism",value:"9"}, + {name:"Shia",value:"10"}, + {name:"Sunni",value:"11"}, + {name:"Nestorian",value:"12"}, + {name:"Chaldean",value:"13"}, + {name:"Mixed and/or No Designation",value:"14"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI037_RFA",desc:"Religious Information : Religious Facility Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Cathedral",value:"1"}, + {name:"Chapel",value:"2"}, + {name:"Church",value:"3"}, + {name:"Marabout",value:"4"}, + {name:"Minaret",value:"5"}, + {name:"Mission",value:"6"}, + {name:"Mosque",value:"7"}, + {name:"Pagoda",value:"8"}, + {name:"Religious Community",value:"9"}, + {name:"Seminary",value:"10"}, + {name:"Shrine",value:"11"}, + {name:"Stupa",value:"12"}, + {name:"Synagogue",value:"13"}, + {name:"Tabernacle",value:"14"}, + {name:"Temple",value:"15"}, + {name:"Convent",value:"18"}, + {name:"Monastery",value:"19"}, + {name:"Noviciate",value:"20"}, + {name:"Hermitage",value:"21"}, + {name:"Retreat",value:"22"}, + {name:"Islamic Prayer Hall",value:"25"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"TacticalAirNavAidBeaconPnt",fcode:"",desc:"TacticalAirNavigationAidBeaconPoints",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GA032_NSX",desc:"Aeronautical Radio Navigation Service Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"TAC",desc:"Tactical Air Navigation Channel Code",optional:"R",type:"String",length:"4",defValue:"NULL"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"TransportationGroundCrv",fcode:"",desc:"TransportationGroundCurves",geom:"Line",fdname:"TDS", + columns:[ + {name:"ACC",desc:"Horizontal Accuracy Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Accurate",value:"1"}, + {name:"Approximate",value:"2"} + ] + }, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"BCC",desc:"Bypass Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Easy",value:"1"}, + {name:"Difficult",value:"2"}, + {name:"Impossible",value:"3"} + ] + }, + {name:"BOT",desc:"Bridge Opening Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Bascule",value:"4"}, + {name:"Swing-bridge",value:"10"}, + {name:"Lift-bridge",value:"11"}, + {name:"Retractable",value:"12"}, + {name:"Submersible",value:"14"}, + {name:"Drawbridge",value:"15"}, + {name:"Opening",value:"16"}, + {name:"Fixed",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"BRN",desc:"Bridge Reference Number",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"BSC",desc:"Bridge Structure Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Open Spandrel Arch",value:"1"}, + {name:"Cantilever",value:"2"}, + {name:"Floating",value:"5"}, + {name:"Girder",value:"6"}, + {name:"Tower Suspension",value:"7"}, + {name:"Truss",value:"8"}, + {name:"Suspension",value:"9"}, + {name:"Transporter",value:"12"}, + {name:"Slab",value:"15"}, + {name:"Stringer Beam",value:"16"}, + {name:"Bowstring-bridge",value:"19"}, + {name:"Closed Spandrel Arch",value:"26"}, + {name:"Cable Stayed",value:"27"}, + {name:"Arch",value:"31"}, + {name:"Trestle",value:"32"}, + {name:"Other",value:"999"} + ] + }, + {name:"BSC2",desc:"Bridge Structure Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Open Spandrel Arch",value:"1"}, + {name:"Cantilever",value:"2"}, + {name:"Floating",value:"5"}, + {name:"Girder",value:"6"}, + {name:"Tower Suspension",value:"7"}, + {name:"Truss",value:"8"}, + {name:"Suspension",value:"9"}, + {name:"Transporter",value:"12"}, + {name:"Slab",value:"15"}, + {name:"Stringer Beam",value:"16"}, + {name:"Bowstring-bridge",value:"19"}, + {name:"Closed Spandrel Arch",value:"26"}, + {name:"Cable Stayed",value:"27"}, + {name:"Arch",value:"31"}, + {name:"Trestle",value:"32"}, + {name:"Other",value:"999"} + ] + }, + {name:"BSC3",desc:"Bridge Structure Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Open Spandrel Arch",value:"1"}, + {name:"Cantilever",value:"2"}, + {name:"Floating",value:"5"}, + {name:"Girder",value:"6"}, + {name:"Tower Suspension",value:"7"}, + {name:"Truss",value:"8"}, + {name:"Suspension",value:"9"}, + {name:"Transporter",value:"12"}, + {name:"Slab",value:"15"}, + {name:"Stringer Beam",value:"16"}, + {name:"Bowstring-bridge",value:"19"}, + {name:"Closed Spandrel Arch",value:"26"}, + {name:"Cable Stayed",value:"27"}, + {name:"Arch",value:"31"}, + {name:"Trestle",value:"32"}, + {name:"Other",value:"999"} + ] + }, + {name:"BSM",desc:"Mobile Bridge Span",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CAT",desc:"Cableway Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Chair-lift",value:"2"}, + {name:"Ski Tow",value:"3"}, + {name:"Aerial Tramway",value:"5"}, + {name:"Gondola Lift",value:"6"}, + {name:"T-bar Lift",value:"7"}, + {name:"Industrial Ropeway",value:"8"}, + {name:"Material Tramway",value:"9"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CIW",desc:"Closed in Winter",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"CTC",desc:"Culvert Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Regular with Soil",value:"1"}, + {name:"Box with Soil",value:"2"}, + {name:"Box with Load",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"CTL",desc:"Cumulative Track Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CWT",desc:"Contained within Tunnel",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"DEV",desc:"Deck Level",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"DZC",desc:"Deck Count",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"FCO",desc:"Feature Configuration",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Divided Same",value:"5"}, + {name:"Divided Different",value:"6"}, + {name:"Non-divided",value:"7"} + ] + }, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FSC",desc:"Flight Strip Capable",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"GTC",desc:"Gate Use",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Toll-gate",value:"1"}, + {name:"Crossing",value:"2"}, + {name:"Entrance",value:"3"}, + {name:"Border Crossing",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"HCA",desc:"Horizontal Clearance",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LC1",desc:"Load Class Type 1",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"LC2",desc:"Load Class Type 2",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"LC3",desc:"Load Class Type 3",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"LC4",desc:"Load Class Type 4",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LOC",desc:"Vertical Relative Location",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Completely Below Ground Surface",value:"40"}, + {name:"On Surface",value:"44"}, + {name:"Above Surface",value:"45"} + ] + }, + {name:"LTN",desc:"Track or Lane Count",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC2",desc:"Structural Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC3",desc:"Structural Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MES",desc:"Median Present",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"MWG",desc:"Centerline Spacing",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"NOS",desc:"Span Count",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"OHC",desc:"Overhead Clearance",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ONE",desc:"One-way",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"OOC",desc:"Overhead Obstruction Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Frame Bridge Span",value:"1"}, + {name:"Arch Bridge Span",value:"2"}, + {name:"Roof",value:"3"}, + {name:"Railway Power Line",value:"4"}, + {name:"Bridge Superstructure",value:"6"}, + {name:"Building",value:"7"}, + {name:"Bridge Span",value:"8"}, + {name:"Gantry",value:"9"}, + {name:"Scaffold",value:"10"}, + {name:"Arcade",value:"11"}, + {name:"Building Overhang",value:"12"}, + {name:"Cable",value:"13"}, + {name:"Cableway",value:"14"}, + {name:"Conveyor",value:"15"}, + {name:"Entrance and/or Exit",value:"16"}, + {name:"Memorial Monument",value:"17"}, + {name:"Non-building Structure",value:"18"}, + {name:"Overhead Walkway",value:"19"}, + {name:"Parking Garage",value:"20"}, + {name:"Pipeline",value:"21"}, + {name:"Pipeline Crossing Point",value:"22"}, + {name:"Route-related Structure",value:"23"}, + {name:"Transportation Block",value:"24"}, + {name:"Transportation Route Protection Structure",value:"25"}, + {name:"Tunnel",value:"26"}, + {name:"Traffic Sign",value:"27"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"OWO",desc:"Waterbody Overhead Obstruction",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFH",desc:"Predominant Feature Height",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"RFD",desc:"Roofed",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"RIN_ROI",desc:"Route Identification ",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"International",value:"1"}, + {name:"National Motorway",value:"2"}, + {name:"National",value:"3"}, + {name:"Secondary",value:"4"}, + {name:"Local",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"RIN_ROI2",desc:"Route Identification [2] ",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"International",value:"1"}, + {name:"National Motorway",value:"2"}, + {name:"National",value:"3"}, + {name:"Secondary",value:"4"}, + {name:"Local",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"RIN_ROI3",desc:"Route Identification [3] ",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"International",value:"1"}, + {name:"National Motorway",value:"2"}, + {name:"National",value:"3"}, + {name:"Secondary",value:"4"}, + {name:"Local",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"RIN_RTN",desc:"Route Identification ",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"RIN_RTN2",desc:"Route Identification [2] ",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"RIN_RTN3",desc:"Route Identification [3] ",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"RLE",desc:"Relative Level",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Raised",value:"1"}, + {name:"Level",value:"2"}, + {name:"Depressed",value:"3"} + ] + }, + {name:"RMWC",desc:"Route Median Width ",optional:"R",type:"enumeration",defValue:"5", + enumerations:[ + {name:"Open Interval",value:"2"}, + {name:"Greater-than-or-equal to Less-than Interval",value:"3"}, + {name:"Greater-than to Less-than-or-equal Interval",value:"4"}, + {name:"Closed Interval",value:"5"}, + {name:"Greater-than Semi-interval",value:"6"}, + {name:"Greater-than or Equal Semi-interval",value:"7"}, + {name:"Less-than Semi-interval",value:"8"}, + {name:"Less-than or Equal Semi-interval",value:"9"} + ] + }, + {name:"RMWL",desc:"Route Median Width ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"RMWU",desc:"Route Median Width ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ROR",desc:"Road Interchange Ramp",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"RRC",desc:"Railway Use",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Carline",value:"2"}, + {name:"Underground Railway",value:"6"}, + {name:"Logging",value:"8"}, + {name:"Rail Rapid Transit",value:"11"}, + {name:"Marine Railway",value:"13"}, + {name:"Tramway",value:"14"}, + {name:"Funicular",value:"15"}, + {name:"Museum",value:"24"}, + {name:"Automated Transit System",value:"32"}, + {name:"Long-haul",value:"33"}, + {name:"Other",value:"999"} + ] + }, + {name:"RRC2",desc:"Railway Use [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Carline",value:"2"}, + {name:"Underground Railway",value:"6"}, + {name:"Logging",value:"8"}, + {name:"Rail Rapid Transit",value:"11"}, + {name:"Marine Railway",value:"13"}, + {name:"Tramway",value:"14"}, + {name:"Funicular",value:"15"}, + {name:"Museum",value:"24"}, + {name:"Automated Transit System",value:"32"}, + {name:"Long-haul",value:"33"}, + {name:"Other",value:"999"} + ] + }, + {name:"RRC3",desc:"Railway Use [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Carline",value:"2"}, + {name:"Underground Railway",value:"6"}, + {name:"Logging",value:"8"}, + {name:"Rail Rapid Transit",value:"11"}, + {name:"Marine Railway",value:"13"}, + {name:"Tramway",value:"14"}, + {name:"Funicular",value:"15"}, + {name:"Museum",value:"24"}, + {name:"Automated Transit System",value:"32"}, + {name:"Long-haul",value:"33"}, + {name:"Other",value:"999"} + ] + }, + {name:"RSA",desc:"Branch Railway Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Spur",value:"1"}, + {name:"Siding",value:"2"}, + {name:"Passing",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"RTA",desc:"Linear Feature Arrangement",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Single Arrangement",value:"1"}, + {name:"Double Arrangement",value:"2"}, + {name:"Multiple Arrangements",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"RTY",desc:"Roadway Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motorway",value:"1"}, + {name:"Limited Access Motorway",value:"2"}, + {name:"Road",value:"3"}, + {name:"Street",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"RWC",desc:"Railway Class",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"High Speed Rail",value:"1"}, + {name:"Main Line",value:"2"}, + {name:"Branch-line",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"SBB",desc:"Supported by Bridge Span",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"SEP",desc:"Divided",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"SGCC",desc:"Surface Slope ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_SGCC}, + {name:"SGCL",desc:"Surface Slope ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"SGCU",desc:"Surface Slope ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"SPM",desc:"Speed Limit (KPH)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"TCS",desc:"Cross-sectional Profile",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Arch",value:"1"}, + {name:"Box",value:"2"}, + {name:"Semicircular",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"THI",desc:"Thickness",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"THR",desc:"Through Route",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"TRA",desc:"Pedestrian Traversable",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"TRP",desc:"Transportation Route Protection Structure Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Gallery",value:"1"}, + {name:"Rock Protection Shed",value:"2"}, + {name:"Snow Protection Shed",value:"3"}, + {name:"Protection Shed",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS",desc:"Transportation System Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS2",desc:"Transportation System Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS3",desc:"Transportation System Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TST",desc:"Cable Suspended Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Symmetric Catenary",value:"1"}, + {name:"Mountain Catenary",value:"2"}, + {name:"Overwater Catenary",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"UBC",desc:"Underbridge Clearance",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCS",desc:"Vertical Clearance, Safe",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WBD",desc:"Waterbody Depth",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WD2",desc:"Route Total Usable Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WLE",desc:"Water Level Effect",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Always Dry",value:"2"}, + {name:"Covers and Uncovers",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"WT2",desc:"Width of Second Travelled Way",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI016_ROC",desc:"Route Pavement Information : Route Surface Composition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Unimproved",value:"1"}, + {name:"Stabilized Earth",value:"2"}, + {name:"Flexible Pavement",value:"3"}, + {name:"Aggregate",value:"4"}, + {name:"Macadam",value:"5"}, + {name:"Bound Surface",value:"6"}, + {name:"Rigid Pavement",value:"7"}, + {name:"Concrete",value:"8"}, + {name:"Asphalt",value:"9"}, + {name:"Asphalt over Concrete",value:"10"}, + {name:"Cobble-stone",value:"11"}, + {name:"Brick",value:"12"}, + {name:"Metal",value:"13"}, + {name:"Wood",value:"14"}, + {name:"Corduroy",value:"15"}, + {name:"Wood Plank",value:"16"}, + {name:"Ice",value:"17"}, + {name:"Snow",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI016_WD1",desc:"Route Pavement Information : Route Minimum Travelled Way Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI016_WTC",desc:"Route Pavement Information : Road Weather Restriction",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"All-weather",value:"1"}, + {name:"Fair-weather",value:"2"}, + {name:"Winter Only",value:"3"}, + {name:"Limited All-weather",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI017_GAW",desc:"Track Information : Railway Gauge",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI017_RGC",desc:"Track Information : Railway Gauge Classification",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Broad",value:"1"}, + {name:"Narrow",value:"2"}, + {name:"Standard",value:"3"} + ] + }, + {name:"ZI017_RIR",desc:"Track Information : Railway in Road",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI017_RRA",desc:"Track Information : Railway Power Method",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Electrified Track",value:"1"}, + {name:"Overhead Electrified",value:"3"}, + {name:"Non-electrified",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI017_TRT",desc:"Track Information : Track Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Crane Track",value:"1"}, + {name:"Drill Track",value:"2"}, + {name:"House Track",value:"3"}, + {name:"Joint Track",value:"4"}, + {name:"Ladder Track",value:"5"}, + {name:"Paired Track",value:"6"}, + {name:"Rip Track",value:"7"}, + {name:"Stub Track",value:"9"}, + {name:"Team Track",value:"10"}, + {name:"Monorail",value:"12"}, + {name:"Maglev",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_SUR",desc:"Feature Metadata : Survey Coverage Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Surveyed",value:"1"}, + {name:"Inadequately Surveyed",value:"2"}, + {name:"Unsurveyed",value:"3"} + ] + }, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"TransportationGroundPnt",fcode:"",desc:"TransportationGroundPoints",geom:"Point",fdname:"TDS", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"BCC",desc:"Bypass Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Easy",value:"1"}, + {name:"Difficult",value:"2"}, + {name:"Impossible",value:"3"} + ] + }, + {name:"BOT",desc:"Bridge Opening Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Bascule",value:"4"}, + {name:"Swing-bridge",value:"10"}, + {name:"Lift-bridge",value:"11"}, + {name:"Retractable",value:"12"}, + {name:"Submersible",value:"14"}, + {name:"Drawbridge",value:"15"}, + {name:"Opening",value:"16"}, + {name:"Fixed",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"BRN",desc:"Bridge Reference Number",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"BSC",desc:"Bridge Structure Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Open Spandrel Arch",value:"1"}, + {name:"Cantilever",value:"2"}, + {name:"Floating",value:"5"}, + {name:"Girder",value:"6"}, + {name:"Tower Suspension",value:"7"}, + {name:"Truss",value:"8"}, + {name:"Suspension",value:"9"}, + {name:"Transporter",value:"12"}, + {name:"Slab",value:"15"}, + {name:"Stringer Beam",value:"16"}, + {name:"Bowstring-bridge",value:"19"}, + {name:"Closed Spandrel Arch",value:"26"}, + {name:"Cable Stayed",value:"27"}, + {name:"Arch",value:"31"}, + {name:"Trestle",value:"32"}, + {name:"Other",value:"999"} + ] + }, + {name:"BSC2",desc:"Bridge Structure Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Open Spandrel Arch",value:"1"}, + {name:"Cantilever",value:"2"}, + {name:"Floating",value:"5"}, + {name:"Girder",value:"6"}, + {name:"Tower Suspension",value:"7"}, + {name:"Truss",value:"8"}, + {name:"Suspension",value:"9"}, + {name:"Transporter",value:"12"}, + {name:"Slab",value:"15"}, + {name:"Stringer Beam",value:"16"}, + {name:"Bowstring-bridge",value:"19"}, + {name:"Closed Spandrel Arch",value:"26"}, + {name:"Cable Stayed",value:"27"}, + {name:"Arch",value:"31"}, + {name:"Trestle",value:"32"}, + {name:"Other",value:"999"} + ] + }, + {name:"BSC3",desc:"Bridge Structure Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Open Spandrel Arch",value:"1"}, + {name:"Cantilever",value:"2"}, + {name:"Floating",value:"5"}, + {name:"Girder",value:"6"}, + {name:"Tower Suspension",value:"7"}, + {name:"Truss",value:"8"}, + {name:"Suspension",value:"9"}, + {name:"Transporter",value:"12"}, + {name:"Slab",value:"15"}, + {name:"Stringer Beam",value:"16"}, + {name:"Bowstring-bridge",value:"19"}, + {name:"Closed Spandrel Arch",value:"26"}, + {name:"Cable Stayed",value:"27"}, + {name:"Arch",value:"31"}, + {name:"Trestle",value:"32"}, + {name:"Other",value:"999"} + ] + }, + {name:"BSM",desc:"Mobile Bridge Span",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CIW",desc:"Closed in Winter",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"CTC",desc:"Culvert Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Regular with Soil",value:"1"}, + {name:"Box with Soil",value:"2"}, + {name:"Box with Load",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"CWT",desc:"Contained within Tunnel",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"DEV",desc:"Deck Level",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"DGC",desc:"Transportation Block Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Drop Gate",value:"1"}, + {name:"Rolling Block",value:"2"}, + {name:"Other",value:"999"} + ] + }, + {name:"DZC",desc:"Deck Count",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"GTC",desc:"Gate Use",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Toll-gate",value:"1"}, + {name:"Crossing",value:"2"}, + {name:"Entrance",value:"3"}, + {name:"Border Crossing",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"HCA",desc:"Horizontal Clearance",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LC1",desc:"Load Class Type 1",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"LC2",desc:"Load Class Type 2",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"LC3",desc:"Load Class Type 3",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"LC4",desc:"Load Class Type 4",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LUN",desc:"Located Underground",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC2",desc:"Structural Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC3",desc:"Structural Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MES",desc:"Median Present",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"NOS",desc:"Span Count",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"OHC",desc:"Overhead Clearance",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OOC",desc:"Overhead Obstruction Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Frame Bridge Span",value:"1"}, + {name:"Arch Bridge Span",value:"2"}, + {name:"Roof",value:"3"}, + {name:"Railway Power Line",value:"4"}, + {name:"Bridge Superstructure",value:"6"}, + {name:"Building",value:"7"}, + {name:"Bridge Span",value:"8"}, + {name:"Gantry",value:"9"}, + {name:"Scaffold",value:"10"}, + {name:"Arcade",value:"11"}, + {name:"Building Overhang",value:"12"}, + {name:"Cable",value:"13"}, + {name:"Cableway",value:"14"}, + {name:"Conveyor",value:"15"}, + {name:"Entrance and/or Exit",value:"16"}, + {name:"Memorial Monument",value:"17"}, + {name:"Non-building Structure",value:"18"}, + {name:"Overhead Walkway",value:"19"}, + {name:"Parking Garage",value:"20"}, + {name:"Pipeline",value:"21"}, + {name:"Pipeline Crossing Point",value:"22"}, + {name:"Route-related Structure",value:"23"}, + {name:"Transportation Block",value:"24"}, + {name:"Transportation Route Protection Structure",value:"25"}, + {name:"Tunnel",value:"26"}, + {name:"Traffic Sign",value:"27"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PYM",desc:"Pylon Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Concrete",value:"3"}, + {name:"Masonry",value:"4"}, + {name:"Metal",value:"5"}, + {name:"Wood",value:"7"}, + {name:"Steel",value:"8"}, + {name:"Fibreglass",value:"9"}, + {name:"Iron",value:"10"}, + {name:"Other",value:"999"} + ] + }, + {name:"RAD",desc:"Curve Radius",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"RFD",desc:"Roofed",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"RIN_ROI",desc:"Route Identification ",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"International",value:"1"}, + {name:"National Motorway",value:"2"}, + {name:"National",value:"3"}, + {name:"Secondary",value:"4"}, + {name:"Local",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"RIN_ROI2",desc:"Route Identification [2] ",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"International",value:"1"}, + {name:"National Motorway",value:"2"}, + {name:"National",value:"3"}, + {name:"Secondary",value:"4"}, + {name:"Local",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"RIN_ROI3",desc:"Route Identification [3] ",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"International",value:"1"}, + {name:"National Motorway",value:"2"}, + {name:"National",value:"3"}, + {name:"Secondary",value:"4"}, + {name:"Local",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"RIN_RTN",desc:"Route Identification ",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"RIN_RTN2",desc:"Route Identification [2] ",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"RIN_RTN3",desc:"Route Identification [3] ",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"RIT",desc:"Road Interchange Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Cloverleaf",value:"1"}, + {name:"Diamond",value:"2"}, + {name:"Fork",value:"3"}, + {name:"Rotary",value:"4"}, + {name:"Staggered Ramps",value:"5"}, + {name:"Standard Ramps",value:"6"}, + {name:"Symmetrical Ramps",value:"7"}, + {name:"Trumpet",value:"8"}, + {name:"Turban",value:"9"}, + {name:"Wye",value:"10"}, + {name:"Other",value:"999"} + ] + }, + {name:"SPT",desc:"Supported",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"TCS",desc:"Cross-sectional Profile",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Arch",value:"1"}, + {name:"Box",value:"2"}, + {name:"Semicircular",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"THI",desc:"Thickness",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"TRP",desc:"Transportation Route Protection Structure Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Gallery",value:"1"}, + {name:"Rock Protection Shed",value:"2"}, + {name:"Snow Protection Shed",value:"3"}, + {name:"Protection Shed",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS",desc:"Transportation System Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS2",desc:"Transportation System Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS3",desc:"Transportation System Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"UBC",desc:"Underbridge Clearance",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCS",desc:"Vertical Clearance, Safe",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WBD",desc:"Waterbody Depth",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI016_ROC",desc:"Route Pavement Information : Route Surface Composition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Unimproved",value:"1"}, + {name:"Stabilized Earth",value:"2"}, + {name:"Flexible Pavement",value:"3"}, + {name:"Aggregate",value:"4"}, + {name:"Macadam",value:"5"}, + {name:"Bound Surface",value:"6"}, + {name:"Rigid Pavement",value:"7"}, + {name:"Concrete",value:"8"}, + {name:"Asphalt",value:"9"}, + {name:"Asphalt over Concrete",value:"10"}, + {name:"Cobble-stone",value:"11"}, + {name:"Brick",value:"12"}, + {name:"Metal",value:"13"}, + {name:"Wood",value:"14"}, + {name:"Corduroy",value:"15"}, + {name:"Wood Plank",value:"16"}, + {name:"Ice",value:"17"}, + {name:"Snow",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI016_WTC",desc:"Route Pavement Information : Road Weather Restriction",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"All-weather",value:"1"}, + {name:"Fair-weather",value:"2"}, + {name:"Winter Only",value:"3"}, + {name:"Limited All-weather",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI017_GAW",desc:"Track Information : Railway Gauge",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI017_RGC",desc:"Track Information : Railway Gauge Classification",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Broad",value:"1"}, + {name:"Narrow",value:"2"}, + {name:"Standard",value:"3"} + ] + }, + {name:"ZI017_RRA",desc:"Track Information : Railway Power Method",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Electrified Track",value:"1"}, + {name:"Overhead Electrified",value:"3"}, + {name:"Non-electrified",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI017_TRT",desc:"Track Information : Track Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Crane Track",value:"1"}, + {name:"Drill Track",value:"2"}, + {name:"House Track",value:"3"}, + {name:"Joint Track",value:"4"}, + {name:"Ladder Track",value:"5"}, + {name:"Paired Track",value:"6"}, + {name:"Rip Track",value:"7"}, + {name:"Stub Track",value:"9"}, + {name:"Team Track",value:"10"}, + {name:"Monorail",value:"12"}, + {name:"Maglev",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"TransportationGroundSrf",fcode:"",desc:"TransportationGroundSurfaces",geom:"Area",fdname:"TDS", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"BCC",desc:"Bypass Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Easy",value:"1"}, + {name:"Difficult",value:"2"}, + {name:"Impossible",value:"3"} + ] + }, + {name:"BOT",desc:"Bridge Opening Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Bascule",value:"4"}, + {name:"Swing-bridge",value:"10"}, + {name:"Lift-bridge",value:"11"}, + {name:"Retractable",value:"12"}, + {name:"Submersible",value:"14"}, + {name:"Drawbridge",value:"15"}, + {name:"Opening",value:"16"}, + {name:"Fixed",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"BRN",desc:"Bridge Reference Number",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"BSC",desc:"Bridge Structure Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Open Spandrel Arch",value:"1"}, + {name:"Cantilever",value:"2"}, + {name:"Floating",value:"5"}, + {name:"Girder",value:"6"}, + {name:"Tower Suspension",value:"7"}, + {name:"Truss",value:"8"}, + {name:"Suspension",value:"9"}, + {name:"Transporter",value:"12"}, + {name:"Slab",value:"15"}, + {name:"Stringer Beam",value:"16"}, + {name:"Bowstring-bridge",value:"19"}, + {name:"Closed Spandrel Arch",value:"26"}, + {name:"Cable Stayed",value:"27"}, + {name:"Arch",value:"31"}, + {name:"Trestle",value:"32"}, + {name:"Other",value:"999"} + ] + }, + {name:"BSC2",desc:"Bridge Structure Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Open Spandrel Arch",value:"1"}, + {name:"Cantilever",value:"2"}, + {name:"Floating",value:"5"}, + {name:"Girder",value:"6"}, + {name:"Tower Suspension",value:"7"}, + {name:"Truss",value:"8"}, + {name:"Suspension",value:"9"}, + {name:"Transporter",value:"12"}, + {name:"Slab",value:"15"}, + {name:"Stringer Beam",value:"16"}, + {name:"Bowstring-bridge",value:"19"}, + {name:"Closed Spandrel Arch",value:"26"}, + {name:"Cable Stayed",value:"27"}, + {name:"Arch",value:"31"}, + {name:"Trestle",value:"32"}, + {name:"Other",value:"999"} + ] + }, + {name:"BSC3",desc:"Bridge Structure Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Open Spandrel Arch",value:"1"}, + {name:"Cantilever",value:"2"}, + {name:"Floating",value:"5"}, + {name:"Girder",value:"6"}, + {name:"Tower Suspension",value:"7"}, + {name:"Truss",value:"8"}, + {name:"Suspension",value:"9"}, + {name:"Transporter",value:"12"}, + {name:"Slab",value:"15"}, + {name:"Stringer Beam",value:"16"}, + {name:"Bowstring-bridge",value:"19"}, + {name:"Closed Spandrel Arch",value:"26"}, + {name:"Cable Stayed",value:"27"}, + {name:"Arch",value:"31"}, + {name:"Trestle",value:"32"}, + {name:"Other",value:"999"} + ] + }, + {name:"BSM",desc:"Mobile Bridge Span",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CTL",desc:"Cumulative Track Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"DGC",desc:"Transportation Block Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Drop Gate",value:"1"}, + {name:"Rolling Block",value:"2"}, + {name:"Other",value:"999"} + ] + }, + {name:"DZC",desc:"Deck Count",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HCA",desc:"Horizontal Clearance",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LC1",desc:"Load Class Type 1",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"LC2",desc:"Load Class Type 2",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"LC3",desc:"Load Class Type 3",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"LC4",desc:"Load Class Type 4",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LTN",desc:"Track or Lane Count",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"LUN",desc:"Located Underground",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC2",desc:"Structural Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC3",desc:"Structural Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"NOS",desc:"Span Count",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"OHC",desc:"Overhead Clearance",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"RFD",desc:"Roofed",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"SGCC",desc:"Surface Slope ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_SGCC}, + {name:"SGCL",desc:"Surface Slope ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"SGCU",desc:"Surface Slope ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"SPT",desc:"Supported",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRA",desc:"Pedestrian Traversable",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"TRP",desc:"Transportation Route Protection Structure Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Gallery",value:"1"}, + {name:"Rock Protection Shed",value:"2"}, + {name:"Snow Protection Shed",value:"3"}, + {name:"Protection Shed",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS",desc:"Transportation System Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS2",desc:"Transportation System Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS3",desc:"Transportation System Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"UBC",desc:"Underbridge Clearance",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCS",desc:"Vertical Clearance, Safe",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"VET",desc:"Vehicle Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Automobile",value:"2"}, + {name:"Barge",value:"3"}, + {name:"Bicycle",value:"4"}, + {name:"Boat",value:"5"}, + {name:"Bus",value:"6"}, + {name:"Caravanette",value:"7"}, + {name:"Caravan",value:"8"}, + {name:"Motorcycle",value:"9"}, + {name:"Ship",value:"10"}, + {name:"Other",value:"999"} + ] + }, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WLE",desc:"Water Level Effect",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Always Dry",value:"2"}, + {name:"Covers and Uncovers",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI016_ROC",desc:"Route Pavement Information : Route Surface Composition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Unimproved",value:"1"}, + {name:"Stabilized Earth",value:"2"}, + {name:"Flexible Pavement",value:"3"}, + {name:"Aggregate",value:"4"}, + {name:"Macadam",value:"5"}, + {name:"Bound Surface",value:"6"}, + {name:"Rigid Pavement",value:"7"}, + {name:"Concrete",value:"8"}, + {name:"Asphalt",value:"9"}, + {name:"Asphalt over Concrete",value:"10"}, + {name:"Cobble-stone",value:"11"}, + {name:"Brick",value:"12"}, + {name:"Metal",value:"13"}, + {name:"Wood",value:"14"}, + {name:"Corduroy",value:"15"}, + {name:"Wood Plank",value:"16"}, + {name:"Ice",value:"17"}, + {name:"Snow",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI017_GAW",desc:"Track Information : Railway Gauge",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI017_RGC",desc:"Track Information : Railway Gauge Classification",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Broad",value:"1"}, + {name:"Narrow",value:"2"}, + {name:"Standard",value:"3"} + ] + }, + {name:"ZI017_RRA",desc:"Track Information : Railway Power Method",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Electrified Track",value:"1"}, + {name:"Overhead Electrified",value:"3"}, + {name:"Non-electrified",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI017_TRT",desc:"Track Information : Track Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Crane Track",value:"1"}, + {name:"Drill Track",value:"2"}, + {name:"House Track",value:"3"}, + {name:"Joint Track",value:"4"}, + {name:"Ladder Track",value:"5"}, + {name:"Paired Track",value:"6"}, + {name:"Rip Track",value:"7"}, + {name:"Stub Track",value:"9"}, + {name:"Team Track",value:"10"}, + {name:"Monorail",value:"12"}, + {name:"Maglev",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"TransportationWaterCrv",fcode:"",desc:"TransportationWaterCurves",geom:"Line",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"BGT",desc:"Basin Gate Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Caisson",value:"1"}, + {name:"Lock Gate",value:"2"}, + {name:"Tide Lock",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"BH141_SLTA",desc:"Inland Waterbody Bank : Shoreline Type (first bank)",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mangrove",value:"6"}, + {name:"Marshy",value:"8"}, + {name:"Stony",value:"10"}, + {name:"Building Rubble",value:"11"}, + {name:"Erosion Rubble",value:"12"}, + {name:"Sandy",value:"13"}, + {name:"Shingly",value:"14"}, + {name:"Ice",value:"17"}, + {name:"Mud",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"BH141_SLTB",desc:"Inland Waterbody Bank : Shoreline Type (second bank)",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mangrove",value:"6"}, + {name:"Marshy",value:"8"}, + {name:"Stony",value:"10"}, + {name:"Building Rubble",value:"11"}, + {name:"Erosion Rubble",value:"12"}, + {name:"Sandy",value:"13"}, + {name:"Shingly",value:"14"}, + {name:"Ice",value:"17"}, + {name:"Mud",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"BMC",desc:"Bottom Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Clay and Silt",value:"1"}, + {name:"Silty Sands",value:"2"}, + {name:"Sand and Gravel",value:"3"}, + {name:"Gravel and Cobble",value:"4"}, + {name:"Rocks and Boulders",value:"5"}, + {name:"Bedrock",value:"6"}, + {name:"Peat",value:"8"}, + {name:"Sand over Mud",value:"9"}, + {name:"Sand",value:"14"}, + {name:"Soil",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"BMC2",desc:"Bottom Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Clay and Silt",value:"1"}, + {name:"Silty Sands",value:"2"}, + {name:"Sand and Gravel",value:"3"}, + {name:"Gravel and Cobble",value:"4"}, + {name:"Rocks and Boulders",value:"5"}, + {name:"Bedrock",value:"6"}, + {name:"Peat",value:"8"}, + {name:"Sand over Mud",value:"9"}, + {name:"Sand",value:"14"}, + {name:"Soil",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"BMC3",desc:"Bottom Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Clay and Silt",value:"1"}, + {name:"Silty Sands",value:"2"}, + {name:"Sand and Gravel",value:"3"}, + {name:"Gravel and Cobble",value:"4"}, + {name:"Rocks and Boulders",value:"5"}, + {name:"Bedrock",value:"6"}, + {name:"Peat",value:"8"}, + {name:"Sand over Mud",value:"9"}, + {name:"Sand",value:"14"}, + {name:"Soil",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDA",desc:"Covered Drain",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CWT",desc:"Contained within Tunnel",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"DEV",desc:"Deck Level",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FER",desc:"Ferry Crossing Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Cable",value:"1"}, + {name:"Free-moving",value:"2"}, + {name:"Ice",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HEI",desc:"Height of Object",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LOC",desc:"Vertical Relative Location",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Completely Below Ground Surface",value:"40"}, + {name:"On Surface",value:"44"}, + {name:"Above Surface",value:"45"} + ] + }, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC2",desc:"Structural Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC3",desc:"Structural Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCX",desc:"Motorized Crossing",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"NVS",desc:"Navigability Information",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Navigable and Operational",value:"1"}, + {name:"Navigable but Abandoned",value:"2"}, + {name:"Navigable",value:"3"}, + {name:"Navigable with Periodic Restrictions",value:"4"}, + {name:"Not Navigable",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"OPT",desc:"Operating Cycle",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Daytime",value:"1"}, + {name:"Night-time",value:"2"}, + {name:"Continuously Operating",value:"3"}, + {name:"Summer Season",value:"4"}, + {name:"Winter Season",value:"5"}, + {name:"Restricted",value:"6"}, + {name:"Never Operating",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PWA",desc:"Predominant Water Depth",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"RIN_ROI",desc:"Route Identification ",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"International",value:"1"}, + {name:"National Motorway",value:"2"}, + {name:"National",value:"3"}, + {name:"Secondary",value:"4"}, + {name:"Local",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"RIN_ROI2",desc:"Route Identification [2] ",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"International",value:"1"}, + {name:"National Motorway",value:"2"}, + {name:"National",value:"3"}, + {name:"Secondary",value:"4"}, + {name:"Local",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"RIN_ROI3",desc:"Route Identification [3] ",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"International",value:"1"}, + {name:"National Motorway",value:"2"}, + {name:"National",value:"3"}, + {name:"Secondary",value:"4"}, + {name:"Local",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"RIN_RTN",desc:"Route Identification ",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"RIN_RTN2",desc:"Route Identification [2] ",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"RIN_RTN3",desc:"Route Identification [3] ",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"RLE",desc:"Relative Level",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Raised",value:"1"}, + {name:"Level",value:"2"}, + {name:"Depressed",value:"3"} + ] + }, + {name:"SBB",desc:"Supported by Bridge Span",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"THI",desc:"Thickness",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"TRS",desc:"Transportation System Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS2",desc:"Transportation System Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS3",desc:"Transportation System Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WD3",desc:"Terrain Gap Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WDU",desc:"Usable Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI024_HYP",desc:"Water Resource Information : Hydrologic Persistence",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Perennial",value:"1"}, + {name:"Intermittent",value:"2"}, + {name:"Dry",value:"4"} + ] + }, + {name:"ZI024_YWQ",desc:"Water Resource Information : Water Potability",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Potable",value:"1"}, + {name:"Treatable",value:"2"}, + {name:"Contaminated",value:"3"}, + {name:"Nonpotable",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"TransportationWaterPnt",fcode:"",desc:"TransportationWaterPoints",geom:"Point",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"BGT",desc:"Basin Gate Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Caisson",value:"1"}, + {name:"Lock Gate",value:"2"}, + {name:"Tide Lock",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HEI",desc:"Height of Object",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC2",desc:"Structural Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC3",desc:"Structural Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"THI",desc:"Thickness",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"TRS",desc:"Transportation System Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS2",desc:"Transportation System Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS3",desc:"Transportation System Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WDU",desc:"Usable Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"TransportationWaterSrf",fcode:"",desc:"TransportationWaterSurfaces",geom:"Area",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"BH141_SLTA",desc:"Inland Waterbody Bank : Shoreline Type (first bank)",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mangrove",value:"6"}, + {name:"Marshy",value:"8"}, + {name:"Stony",value:"10"}, + {name:"Building Rubble",value:"11"}, + {name:"Erosion Rubble",value:"12"}, + {name:"Sandy",value:"13"}, + {name:"Shingly",value:"14"}, + {name:"Ice",value:"17"}, + {name:"Mud",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"BH141_SLTB",desc:"Inland Waterbody Bank : Shoreline Type (second bank)",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mangrove",value:"6"}, + {name:"Marshy",value:"8"}, + {name:"Stony",value:"10"}, + {name:"Building Rubble",value:"11"}, + {name:"Erosion Rubble",value:"12"}, + {name:"Sandy",value:"13"}, + {name:"Shingly",value:"14"}, + {name:"Ice",value:"17"}, + {name:"Mud",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"BMC",desc:"Bottom Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Clay and Silt",value:"1"}, + {name:"Silty Sands",value:"2"}, + {name:"Sand and Gravel",value:"3"}, + {name:"Gravel and Cobble",value:"4"}, + {name:"Rocks and Boulders",value:"5"}, + {name:"Bedrock",value:"6"}, + {name:"Peat",value:"8"}, + {name:"Sand over Mud",value:"9"}, + {name:"Sand",value:"14"}, + {name:"Soil",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"BMC2",desc:"Bottom Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Clay and Silt",value:"1"}, + {name:"Silty Sands",value:"2"}, + {name:"Sand and Gravel",value:"3"}, + {name:"Gravel and Cobble",value:"4"}, + {name:"Rocks and Boulders",value:"5"}, + {name:"Bedrock",value:"6"}, + {name:"Peat",value:"8"}, + {name:"Sand over Mud",value:"9"}, + {name:"Sand",value:"14"}, + {name:"Soil",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"BMC3",desc:"Bottom Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Clay and Silt",value:"1"}, + {name:"Silty Sands",value:"2"}, + {name:"Sand and Gravel",value:"3"}, + {name:"Gravel and Cobble",value:"4"}, + {name:"Rocks and Boulders",value:"5"}, + {name:"Bedrock",value:"6"}, + {name:"Peat",value:"8"}, + {name:"Sand over Mud",value:"9"}, + {name:"Sand",value:"14"}, + {name:"Soil",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDA",desc:"Covered Drain",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CWT",desc:"Contained within Tunnel",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"DEV",desc:"Deck Level",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LOC",desc:"Vertical Relative Location",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Completely Below Ground Surface",value:"40"}, + {name:"On Surface",value:"44"}, + {name:"Above Surface",value:"45"} + ] + }, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC2",desc:"Structural Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC3",desc:"Structural Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"NVS",desc:"Navigability Information",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Navigable and Operational",value:"1"}, + {name:"Navigable but Abandoned",value:"2"}, + {name:"Navigable",value:"3"}, + {name:"Navigable with Periodic Restrictions",value:"4"}, + {name:"Not Navigable",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PWA",desc:"Predominant Water Depth",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"RLE",desc:"Relative Level",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Raised",value:"1"}, + {name:"Level",value:"2"}, + {name:"Depressed",value:"3"} + ] + }, + {name:"SBB",desc:"Supported by Bridge Span",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"SSR",desc:"Roof Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR2",desc:"Roof Shape [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"SSR3",desc:"Roof Shape [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Conical",value:"6"}, + {name:"Pyramidal",value:"7"}, + {name:"Semi-cylindrical",value:"38"}, + {name:"Domed",value:"40"}, + {name:"Flat",value:"41"}, + {name:"Pitched",value:"42"}, + {name:"Sawtoothed",value:"47"}, + {name:"With Clerestory",value:"50"}, + {name:"Flat with Clerestory",value:"55"}, + {name:"Pitched with Clerestory",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS",desc:"Transportation System Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS2",desc:"Transportation System Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"TRS3",desc:"Transportation System Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Pedestrian",value:"9"}, + {name:"Railway",value:"12"}, + {name:"Road",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WD3",desc:"Terrain Gap Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WDU",desc:"Usable Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI024_HYP",desc:"Water Resource Information : Hydrologic Persistence",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Perennial",value:"1"}, + {name:"Intermittent",value:"2"}, + {name:"Dry",value:"4"} + ] + }, + {name:"ZI024_YWQ",desc:"Water Resource Information : Water Potability",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Potable",value:"1"}, + {name:"Treatable",value:"2"}, + {name:"Contaminated",value:"3"}, + {name:"Nonpotable",value:"4"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"UNESCOWPnt",fcode:"",desc:"UNESCOWPoints",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"UtilityInfrastructureCrv",fcode:"",desc:"UtilityInfrastructureCurves",geom:"Line",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CAB",desc:"Cable Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Power Distribution Line",value:"2"}, + {name:"Telephone",value:"3"}, + {name:"Telegraph",value:"4"}, + {name:"Power Transmission Line",value:"6"}, + {name:"Digital Communication Line",value:"7"}, + {name:"Communication Line",value:"8"}, + {name:"Fibre-optic",value:"9"}, + {name:"Tethering",value:"10"}, + {name:"Load Bearing",value:"11"}, + {name:"Guide",value:"12"}, + {name:"Barrier",value:"13"}, + {name:"Restraining",value:"14"}, + {name:"Towing",value:"15"}, + {name:"Cableway",value:"19"}, + {name:"Other",value:"999"} + ] + }, + {name:"CAB2",desc:"Cable Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Power Distribution Line",value:"2"}, + {name:"Telephone",value:"3"}, + {name:"Telegraph",value:"4"}, + {name:"Power Transmission Line",value:"6"}, + {name:"Digital Communication Line",value:"7"}, + {name:"Communication Line",value:"8"}, + {name:"Fibre-optic",value:"9"}, + {name:"Tethering",value:"10"}, + {name:"Load Bearing",value:"11"}, + {name:"Guide",value:"12"}, + {name:"Barrier",value:"13"}, + {name:"Restraining",value:"14"}, + {name:"Towing",value:"15"}, + {name:"Cableway",value:"19"}, + {name:"Other",value:"999"} + ] + }, + {name:"CAB3",desc:"Cable Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Power Distribution Line",value:"2"}, + {name:"Telephone",value:"3"}, + {name:"Telegraph",value:"4"}, + {name:"Power Transmission Line",value:"6"}, + {name:"Digital Communication Line",value:"7"}, + {name:"Communication Line",value:"8"}, + {name:"Fibre-optic",value:"9"}, + {name:"Tethering",value:"10"}, + {name:"Load Bearing",value:"11"}, + {name:"Guide",value:"12"}, + {name:"Barrier",value:"13"}, + {name:"Restraining",value:"14"}, + {name:"Towing",value:"15"}, + {name:"Cableway",value:"19"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CST",desc:"Contained within Service Tunnel",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"CWT",desc:"Contained within Tunnel",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"DEV",desc:"Deck Level",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"DIM",desc:"Diameter",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FLO",desc:"Floating",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"KVA",desc:"Power Line Maximum Voltage",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LOC",desc:"Vertical Relative Location",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Completely Below Ground Surface",value:"40"}, + {name:"On Surface",value:"44"}, + {name:"Above Surface",value:"45"} + ] + }, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"NPL",desc:"Parallel Line Count",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"OHC",desc:"Overhead Clearance",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"OWO",desc:"Waterbody Overhead Obstruction",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFH",desc:"Predominant Feature Height",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PLT",desc:"Pipeline Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Transport Pipe",value:"1"}, + {name:"Outfall Pipe",value:"2"}, + {name:"Intake Pipe",value:"3"}, + {name:"Sewer",value:"4"}, + {name:"Pipeline Valve",value:"5"}, + {name:"Bubbler System",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"PLT2",desc:"Pipeline Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Transport Pipe",value:"1"}, + {name:"Outfall Pipe",value:"2"}, + {name:"Intake Pipe",value:"3"}, + {name:"Sewer",value:"4"}, + {name:"Pipeline Valve",value:"5"}, + {name:"Bubbler System",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"PLT3",desc:"Pipeline Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Transport Pipe",value:"1"}, + {name:"Outfall Pipe",value:"2"}, + {name:"Intake Pipe",value:"3"}, + {name:"Sewer",value:"4"}, + {name:"Pipeline Valve",value:"5"}, + {name:"Bubbler System",value:"7"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO",desc:"Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO2",desc:"Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO3",desc:"Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"RLE",desc:"Relative Level",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Raised",value:"1"}, + {name:"Level",value:"2"}, + {name:"Depressed",value:"3"} + ] + }, + {name:"RTA",desc:"Linear Feature Arrangement",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Single Arrangement",value:"1"}, + {name:"Double Arrangement",value:"2"}, + {name:"Multiple Arrangements",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"SBB",desc:"Supported by Bridge Span",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"SPT",desc:"Supported",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"TST",desc:"Cable Suspended Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Symmetric Catenary",value:"1"}, + {name:"Mountain Catenary",value:"2"}, + {name:"Overwater Catenary",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI025_WLE",desc:"Hydrographic Vertical Positioning Information : Water Level Effect",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Partly Submerged",value:"1"}, + {name:"Always Dry",value:"2"}, + {name:"Always Submerged",value:"3"}, + {name:"Covers and Uncovers",value:"4"}, + {name:"Awash at Low Water",value:"5"}, + {name:"Awash at Chart Datum",value:"9"} + ] + }, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"UtilityInfrastructurePnt",fcode:"",desc:"UtilityInfrastructurePoints",geom:"Point",fdname:"TDS", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AT005_CAB",desc:"Cable : Cable Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Power Distribution Line",value:"2"}, + {name:"Telephone",value:"3"}, + {name:"Telegraph",value:"4"}, + {name:"Power Transmission Line",value:"6"}, + {name:"Digital Communication Line",value:"7"}, + {name:"Communication Line",value:"8"}, + {name:"Fibre-optic",value:"9"}, + {name:"Tethering",value:"10"}, + {name:"Load Bearing",value:"11"}, + {name:"Guide",value:"12"}, + {name:"Barrier",value:"13"}, + {name:"Restraining",value:"14"}, + {name:"Towing",value:"15"}, + {name:"Cableway",value:"19"}, + {name:"Other",value:"999"} + ] + }, + {name:"AT005_CAB2",desc:"Cable : Cable Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Power Distribution Line",value:"2"}, + {name:"Telephone",value:"3"}, + {name:"Telegraph",value:"4"}, + {name:"Power Transmission Line",value:"6"}, + {name:"Digital Communication Line",value:"7"}, + {name:"Communication Line",value:"8"}, + {name:"Fibre-optic",value:"9"}, + {name:"Tethering",value:"10"}, + {name:"Load Bearing",value:"11"}, + {name:"Guide",value:"12"}, + {name:"Barrier",value:"13"}, + {name:"Restraining",value:"14"}, + {name:"Towing",value:"15"}, + {name:"Cableway",value:"19"}, + {name:"Other",value:"999"} + ] + }, + {name:"AT005_CAB3",desc:"Cable : Cable Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Power Distribution Line",value:"2"}, + {name:"Telephone",value:"3"}, + {name:"Telegraph",value:"4"}, + {name:"Power Transmission Line",value:"6"}, + {name:"Digital Communication Line",value:"7"}, + {name:"Communication Line",value:"8"}, + {name:"Fibre-optic",value:"9"}, + {name:"Tethering",value:"10"}, + {name:"Load Bearing",value:"11"}, + {name:"Guide",value:"12"}, + {name:"Barrier",value:"13"}, + {name:"Restraining",value:"14"}, + {name:"Towing",value:"15"}, + {name:"Cableway",value:"19"}, + {name:"Other",value:"999"} + ] + }, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"DIM",desc:"Diameter",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"EPW",desc:"Electrical Power Generation Capacity",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"GUG",desc:"Guyed",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"MCC",desc:"Structural Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC2",desc:"Structural Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"MCC3",desc:"Structural Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Rock/Rocky",value:"84"}, + {name:"Sand",value:"88"}, + {name:"Frozen Water",value:"103"}, + {name:"Soil",value:"104"}, + {name:"Other",value:"999"} + ] + }, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"POS",desc:"Power Source",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Geothermal",value:"1"}, + {name:"Hydro-electric",value:"2"}, + {name:"Nuclear",value:"3"}, + {name:"Thermal",value:"4"}, + {name:"Tidal",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"POS2",desc:"Power Source [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Geothermal",value:"1"}, + {name:"Hydro-electric",value:"2"}, + {name:"Nuclear",value:"3"}, + {name:"Thermal",value:"4"}, + {name:"Tidal",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"POS3",desc:"Power Source [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Geothermal",value:"1"}, + {name:"Hydro-electric",value:"2"}, + {name:"Nuclear",value:"3"}, + {name:"Thermal",value:"4"}, + {name:"Tidal",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO",desc:"Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO2",desc:"Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO3",desc:"Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"SBT",desc:"Substation Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Switched Substation",value:"1"}, + {name:"Transformer Substation",value:"2"}, + {name:"Converter Substation",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"SBT2",desc:"Substation Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Switched Substation",value:"1"}, + {name:"Transformer Substation",value:"2"}, + {name:"Converter Substation",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"SBT3",desc:"Substation Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Switched Substation",value:"1"}, + {name:"Transformer Substation",value:"2"}, + {name:"Converter Substation",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"SRL",desc:"Location Referenced to Shoreline",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Offshore",value:"1"}, + {name:"Inland",value:"2"}, + {name:"At Shoreline",value:"3"} + ] + }, + {name:"TOS",desc:"Tower Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mast",value:"6"}, + {name:"Tripod",value:"11"}, + {name:"Truss",value:"12"}, + {name:"Tubular",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI032_GUG",desc:"Pylon Information : Guyed",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI032_PYC",desc:"Pylon Information : Pylon Configuration",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"'A'",value:"1"}, + {name:"'H'",value:"2"}, + {name:"'I'",value:"3"}, + {name:"'Y'",value:"4"}, + {name:"'T'",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI032_PYM",desc:"Pylon Information : Pylon Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aluminum",value:"1"}, + {name:"Concrete",value:"3"}, + {name:"Masonry",value:"4"}, + {name:"Metal",value:"5"}, + {name:"Wood",value:"7"}, + {name:"Steel",value:"8"}, + {name:"Fibreglass",value:"9"}, + {name:"Iron",value:"10"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI032_TOS",desc:"Pylon Information : Tower Shape",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mast",value:"6"}, + {name:"Pole",value:"8"}, + {name:"Tripod",value:"11"}, + {name:"Truss",value:"12"}, + {name:"Tubular",value:"13"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"UtilityInfrastructureSrf",fcode:"",desc:"UtilityInfrastructureSurfaces",geom:"Area",fdname:"TDS", + columns:[ + {name:"ADR",desc:"Address",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CAA",desc:"Controlling Authority",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Private",value:"3"}, + {name:"Military",value:"5"}, + {name:"Joint Military and Civilian",value:"7"}, + {name:"Civilian",value:"16"}, + {name:"Public",value:"17"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"EPW",desc:"Electrical Power Generation Capacity",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PCF",desc:"Physical Condition",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Construction",value:"1"}, + {name:"Intact",value:"2"}, + {name:"Unmaintained",value:"3"}, + {name:"Damaged",value:"4"}, + {name:"Dismantled",value:"5"}, + {name:"Destroyed",value:"6"} + ] + }, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"POS",desc:"Power Source",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Geothermal",value:"1"}, + {name:"Hydro-electric",value:"2"}, + {name:"Nuclear",value:"3"}, + {name:"Thermal",value:"4"}, + {name:"Tidal",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"POS2",desc:"Power Source [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Geothermal",value:"1"}, + {name:"Hydro-electric",value:"2"}, + {name:"Nuclear",value:"3"}, + {name:"Thermal",value:"4"}, + {name:"Tidal",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"POS3",desc:"Power Source [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Geothermal",value:"1"}, + {name:"Hydro-electric",value:"2"}, + {name:"Nuclear",value:"3"}, + {name:"Thermal",value:"4"}, + {name:"Tidal",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO",desc:"Product",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO2",desc:"Product [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"PPO3",desc:"Product [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Aircraft",value:"1"}, + {name:"Ammunition",value:"3"}, + {name:"Chemical",value:"16"}, + {name:"Coal",value:"18"}, + {name:"Cobbles",value:"19"}, + {name:"Coke",value:"21"}, + {name:"Explosive",value:"38"}, + {name:"Gas",value:"45"}, + {name:"Petrol",value:"46"}, + {name:"Gravel",value:"53"}, + {name:"Lumber",value:"63"}, + {name:"Petroleum",value:"83"}, + {name:"Radioactive Material",value:"90"}, + {name:"Salt",value:"95"}, + {name:"Sand",value:"96"}, + {name:"Stone",value:"110"}, + {name:"Timber",value:"116"}, + {name:"Tobacco",value:"117"}, + {name:"Uranium",value:"120"}, + {name:"Water",value:"122"}, + {name:"Biodiesel",value:"214"}, + {name:"Other",value:"999"} + ] + }, + {name:"SBT",desc:"Substation Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Switched Substation",value:"1"}, + {name:"Transformer Substation",value:"2"}, + {name:"Converter Substation",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"SBT2",desc:"Substation Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Switched Substation",value:"1"}, + {name:"Transformer Substation",value:"2"}, + {name:"Converter Substation",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"SBT3",desc:"Substation Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Switched Substation",value:"1"}, + {name:"Transformer Substation",value:"2"}, + {name:"Converter Substation",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VCM",desc:"Vertical Construction Material",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM2",desc:"Vertical Construction Material [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VCM3",desc:"Vertical Construction Material [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Concrete",value:"4"}, + {name:"Masonry",value:"8"}, + {name:"Metal",value:"9"}, + {name:"Steel",value:"15"}, + {name:"Other",value:"999"} + ] + }, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"VegetationCrv",fcode:"",desc:"VegetationCurves",geom:"Line",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"DMT",desc:"Canopy Cover",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PVH",desc:"Predominant Vegetation Height",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"SBC",desc:"Shelter Belt",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"TRE",desc:"Foliage Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Deciduous",value:"1"}, + {name:"Evergreen",value:"2"}, + {name:"Mixed",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VTI",desc:"Vegetation Trafficability Impact",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"VegetationPnt",fcode:"",desc:"VegetationPoints",geom:"Point",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"TRE",desc:"Foliage Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Deciduous",value:"1"}, + {name:"Evergreen",value:"2"}, + {name:"Mixed",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"VegetationSrf",fcode:"",desc:"VegetationSurfaces",geom:"Area",fdname:"TDS", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"AOO",desc:"Angle of Orientation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"BMC",desc:"Bottom Material Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Clay and Silt",value:"1"}, + {name:"Silty Sands",value:"2"}, + {name:"Sand and Gravel",value:"3"}, + {name:"Gravel and Cobble",value:"4"}, + {name:"Rocks and Boulders",value:"5"}, + {name:"Bedrock",value:"6"}, + {name:"Peat",value:"8"}, + {name:"Sand over Mud",value:"9"}, + {name:"Sand",value:"14"}, + {name:"Soil",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"BMC2",desc:"Bottom Material Type [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Clay and Silt",value:"1"}, + {name:"Silty Sands",value:"2"}, + {name:"Sand and Gravel",value:"3"}, + {name:"Gravel and Cobble",value:"4"}, + {name:"Rocks and Boulders",value:"5"}, + {name:"Bedrock",value:"6"}, + {name:"Peat",value:"8"}, + {name:"Sand over Mud",value:"9"}, + {name:"Sand",value:"14"}, + {name:"Soil",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"BMC3",desc:"Bottom Material Type [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Clay and Silt",value:"1"}, + {name:"Silty Sands",value:"2"}, + {name:"Sand and Gravel",value:"3"}, + {name:"Gravel and Cobble",value:"4"}, + {name:"Rocks and Boulders",value:"5"}, + {name:"Bedrock",value:"6"}, + {name:"Peat",value:"8"}, + {name:"Sand over Mud",value:"9"}, + {name:"Sand",value:"14"}, + {name:"Soil",value:"18"}, + {name:"Other",value:"999"} + ] + }, + {name:"BOC",desc:"Bog Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Palsa Bog",value:"1"}, + {name:"String Bog",value:"2"}, + {name:"Atlantic Plateau Bog",value:"3"}, + {name:"Basin Bog",value:"4"}, + {name:"Blanket Bog",value:"6"}, + {name:"Cranberry Bog",value:"7"}, + {name:"Domed Bog",value:"8"}, + {name:"Fen",value:"9"}, + {name:"Flat Bog",value:"10"}, + {name:"Horizontal Fen",value:"11"}, + {name:"Lowland Polygon Bog",value:"12"}, + {name:"Northern Ribbed Fen",value:"13"}, + {name:"Peat Bog",value:"14"}, + {name:"Peat Plateau Bog",value:"15"}, + {name:"Polygonal Peat Plateau Bog",value:"16"}, + {name:"Shore Fen",value:"17"}, + {name:"Slope Bog",value:"18"}, + {name:"Slope Fen",value:"19"}, + {name:"Veneer Bog",value:"20"}, + {name:"Other",value:"999"} + ] + }, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"DMT",desc:"Canopy Cover",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"FFN",desc:"Feature Function",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN2",desc:"Feature Function [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"FFN3",desc:"Feature Function [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Motor Vehicle Repair",value:"343"}, + {name:"Restroom",value:"382"}, + {name:"Convenience Store",value:"466"}, + {name:"Petrol Sale",value:"470"}, + {name:"Meeting Place",value:"970"}, + {name:"Other",value:"999"} + ] + }, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"PVH",desc:"Predominant Vegetation Height",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"SBC",desc:"Shelter Belt",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"TID",desc:"Tide Influenced",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"TRE",desc:"Foliage Type",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Deciduous",value:"1"}, + {name:"Evergreen",value:"2"}, + {name:"Mixed",value:"3"}, + {name:"Other",value:"999"} + ] + }, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VEG",desc:"Vegetation Characteristic",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Grassland",value:"8"}, + {name:"Grassland with Trees",value:"9"}, + {name:"Tropical Grass",value:"10"}, + {name:"Without Trees",value:"56"}, + {name:"Meadow",value:"83"}, + {name:"Other",value:"999"} + ] + }, + {name:"VSP",desc:"Vegetation Species",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mangrove",value:"19"}, + {name:"Nipa",value:"22"}, + {name:"Swamp Cypress",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"VSP2",desc:"Vegetation Species [2]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mangrove",value:"19"}, + {name:"Nipa",value:"22"}, + {name:"Swamp Cypress",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"VSP3",desc:"Vegetation Species [3]",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Mangrove",value:"19"}, + {name:"Nipa",value:"22"}, + {name:"Swamp Cypress",value:"64"}, + {name:"Other",value:"999"} + ] + }, + {name:"VTI",desc:"Vegetation Trafficability Impact",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI024_HYP",desc:"Water Resource Information : Hydrologic Persistence",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Perennial",value:"1"}, + {name:"Intermittent",value:"2"}, + {name:"Dry",value:"4"} + ] + }, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"VerticalObstructionPnt",fcode:"",desc:"VerticalObstructionPoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"VhfOmniRadioBeaconPnt",fcode:"",desc:"VHFOmnidirectionalRadioBeaconPoints",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"VolcanicDykeCrv",fcode:"",desc:"VolcanicDykeCurve",geom:"Line",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"SGCC",desc:"Surface Slope ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_SGCC}, + {name:"SGCL",desc:"Surface Slope ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"SGCU",desc:"Surface Slope ",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"WasteHeapPnt",fcode:"",desc:"WasteHeapPoint",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"WasteHeapSrf",fcode:"",desc:"WasteHeapSurface",geom:"Area",fdname:"TDS_CARTO", + columns:[ + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LMC",desc:"Navigation Landmark",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"VOI",desc:"Vertical Obstruction Identifier",optional:"R",type:"String",length:"14",defValue:"noInformation"}, + {name:"WID",desc:"Width",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI004_RCG",desc:"Feature Metadata : Process Step Information : Resource Content Originator",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI004_RCG}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI020_GE4",desc:"(Location Country) Designation : GENC Short URN-based Identifier",optional:"R",type:"String",length:"24",defValue:"noInformation"}, + {name:"ZI026_CTUC",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"enumeration",defValue:"5",enumerations: full_ZI026_CTUC}, + {name:"ZI026_CTUL",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZI026_CTUU",desc:"Feature Metadata : Cartographic Usability Range ",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"WaterMovementDataLocationPnt",fcode:"",desc:"WaterMovementDataLocationPoints",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"ACC",desc:"Horizontal Accuracy Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Accurate",value:"1"}, + {name:"Approximate",value:"2"} + ] + }, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CUR",desc:"Current Type Category",optional:"R",type:"enumeration",defValue:"4", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"River Flow",value:"4"}, + {name:"Ocean Current",value:"5"}, + {name:"Tidal Flow",value:"9"} + ] + }, + {name:"DOF",desc:"Direction of Flow",optional:"R",type:"Integer",length:"4",defValue:"-999999"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + }, + {name:"WreckPnt",fcode:"",desc:"WreckPoints",geom:"Point",fdname:"TDS_CARTO", + columns:[ + {name:"ACC",desc:"Horizontal Accuracy Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Accurate",value:"1"}, + {name:"Approximate",value:"2"} + ] + }, + {name:"AHA",desc:"Absolute Horizontal Accuracy (90%)",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"ARA",desc:"Area",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"CCN",desc:"Commercial Copyright Notice",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"CDR",desc:"Commercial Distribution Restriction",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"FCSUBTYPE",desc:"Feature Code Subtype",optional:"R",type:"Real",length:"4",defValue:""}, + {name:"F_CODE",desc:"Feature Code",optional:"R",type:"String",length:"5",defValue:""}, + {name:"GLOBALID",desc:"",optional:"R",type:"String",length:"38",defValue:""}, + {name:"HGT",desc:"Height Above Surface Level",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"LZN",desc:"Length",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"OTH",desc:"Specified Domain Value(s)",optional:"R",type:"String",length:"255",defValue:"noInformation"}, + {name:"PFI",desc:"Acquisition Platform Identifier",optional:"R",type:"String",length:"15",defValue:"noInformation"}, + {name:"UFI",desc:"Unique Entity Identifier",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"WLO",desc:"Wreck or Hulk Exposure",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Hull Showing",value:"1"}, + {name:"Masts Showing",value:"2"}, + {name:"Funnel Showing",value:"3"}, + {name:"Superstructure Showing",value:"4"}, + {name:"Masts and Funnel Showing",value:"5"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZHBH_TEC",desc:"Hydrographic Base Height : Sounding Metadata : Bathymetric Measurement Technique",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Area Swept by Wire-drag",value:"6"}, + {name:"Other",value:"999"}, + {name:"Depth Known by Other Than Wire Drag",value:"1001"} + ] + }, + {name:"ZI001_SDP",desc:"Source Information : Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI001_SDV",desc:"Source Information : Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_SPS",desc:"Source Information : Spatial Source",optional:"R",type:"enumeration",defValue:"-999999",enumerations: truefalse}, + {name:"ZI001_SRT",desc:"Source Information : Source Type",optional:"R",type:"enumeration",defValue:"-999999",enumerations: full_ZI001_SRT}, + {name:"ZI001_VSC",desc:"Source Information : Vertical Source Category",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"DTED 1",value:"1"}, + {name:"DTED 2",value:"2"}, + {name:"No Elevations",value:"3"}, + {name:"Reflective Surface",value:"4"}, + {name:"Stereoscopic Imagery",value:"5"}, + {name:"TIN Data",value:"6"}, + {name:"Other",value:"999"} + ] + }, + {name:"ZI001_VSD",desc:"Source Information : Vertical Source Date and Time",optional:"R",type:"String",length:"20",defValue:"noInformation"}, + {name:"ZI001_VSN",desc:"Source Information : Vertical Source Description",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI005_FNA",desc:"Geographic Name Information : Full Name",optional:"R",type:"String",length:"200",defValue:"noInformation"}, + {name:"ZI005_NFN",desc:"Geographic Name Information : Name Identifier",optional:"R",type:"String",length:"18",defValue:"noInformation"}, + {name:"ZI006_MEM",desc:"Note : Memorandum",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZI025_WLE",desc:"Hydrographic Vertical Positioning Information : Water Level Effect",optional:"R",type:"enumeration",defValue:"-999999", + enumerations:[ + {name:"noInformation",value:"-999999"}, + {name:"Partly Submerged",value:"1"}, + {name:"Always Dry",value:"2"}, + {name:"Always Submerged",value:"3"}, + {name:"Covers and Uncovers",value:"4"}, + {name:"Awash at Low Water",value:"5"}, + {name:"Awash at Chart Datum",value:"9"} + ] + }, + {name:"ZSAX_RS0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"14",defValue:"U"}, + {name:"ZSAX_RX0",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX3",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"ZSAX_RX4",desc:"Restriction Information : Security Attributes Group ",optional:"R",type:"String",length:"254",defValue:"USA"}, + {name:"ZVH",desc:"Highest Elevation",optional:"R",type:"Real",length:"8",defValue:"-999999.0"}, + {name:"early_date",desc:"Earliest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"image_id",desc:"Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_layer",desc:"Imagery Layer Name",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"img_mosaic",desc:"Image Mosaic",optional:"R",type:"String",length:"3",defValue:"no"}, + {name:"late_date",desc:"Latest image date in mosaic",optional:"R",type:"String",length:"254",defValue:"noInformation"}, + {name:"legacy_id",desc:"Legacy Image Id",optional:"R",type:"String",length:"254",defValue:"noInformation"} + ] + } +] // End of tds71.thematicSchema + + return thematicSchema; +} // End of getDbSchema +} // End of tds71.thematicSchema + +exports.getDbSchema = tds71.thematicSchema.getDbSchema; +