diff --git a/translations/GGDMv30.js b/translations/GGDMv30.js
index a058b74..839e935 100644
--- a/translations/GGDMv30.js
+++ b/translations/GGDMv30.js
@@ -39,24 +39,24 @@ hoot.require('fcode_common');
function initialize()
{
- // Set the schema type for the export
- hoot.Settings.set({"osm.map.writer.schema":"GGDMv30"});
- hoot.Settings.set({"ogr.esri.fdname":"GGDM_Composite"});
+ // Set the schema type for the export
+ hoot.Settings.set({'osm.map.writer.schema':'GGDMv30'});
+ hoot.Settings.set({'ogr.esri.fdname':'GGDM_Composite'});
}
// Layer name filter - Filter out all layers that match this regexp
function layerNameFilter()
{
- // Drop all of the "SRC_*", "o2s_*" and "extra_*" layers
- return "^(?!SRC_|extra_)";
+ // Drop all of the "SRC_*", "o2s_*" and "extra_*" layers
+ return '^(?!SRC_|extra_)';
}
// Create the output Schema
function getDbSchema()
{
- return ggdm30.getDbSchema();
+ return ggdm30.getDbSchema();
}
@@ -65,7 +65,7 @@ function getDbSchema()
// function translateAttributes(attrs, layerName, geometryType)
function translateToOsm(attrs, layerName, geometryType)
{
- return ggdm30.toOsm(attrs, layerName, geometryType);
+ return ggdm30.toOsm(attrs, layerName, geometryType);
} // End of Translate Attributes
@@ -74,7 +74,7 @@ function translateToOsm(attrs, layerName, geometryType)
// translateToOgr - takes 'tags' + geometry and returns 'attrs' + tableName
function translateToOgr(tags, elementType, geometryType)
{
- return ggdm30.toOgr(tags, elementType, geometryType)
+ return ggdm30.toOgr(tags, elementType, geometryType);
} // End of translateToOgr