@mangosystem/ogc-schemas
Version:
Jsonix XML-JSON mappings for OGC Schemas.
29 lines • 684 B
JavaScript
var WCS_CRS_1_0_Module_Factory = function () {
var WCS_CRS_1_0 = {
n: 'WCS_CRS_1_0',
dens: 'http:\/\/www.opengis.net\/wcs\/crs\/1.0',
tis: [],
eis: [{
en: 'subsettingCrs'
}, {
en: 'supportedCrs'
}, {
en: 'outputCrs'
}]
};
return {
WCS_CRS_1_0: WCS_CRS_1_0
};
};
if (typeof define === 'function' && define.amd) {
define([], WCS_CRS_1_0_Module_Factory);
}
else {
var WCS_CRS_1_0_Module = WCS_CRS_1_0_Module_Factory();
if (typeof module !== 'undefined' && module.exports) {
module.exports.WCS_CRS_1_0 = WCS_CRS_1_0_Module.WCS_CRS_1_0;
}
else {
var WCS_CRS_1_0 = WCS_CRS_1_0_Module.WCS_CRS_1_0;
}
}