|
Have a look at the following piece of SQL code: --SQL INSERT INTO [mfd_meta] (Name, Property, Value) SELECT Name , 'FieldCoordSystem.Geom' AS [Property] , '{ "Accuracy": 0.5, "Axes": "XY", "Base": "Amersfoort (EPSG:4289)", "CenterLat": 52.15616055555555, "CenterLon": 5.38763888888889, "CenterX": 593.032, "CenterY": 26, "CenterZ": 478.741, "Eccentricity": 0.08169683122252751, "FalseEasting": 155000, "FalseNorthing": 463000, "MajorAxis": 6377397.155, "Name": "Amersfoort \/ RD New (EPSG:28992)", "Rect": [ 3.2, 50.75, 7.22, 53.7 ], "RotationCenterX": 3903453.148, "RotationCenterY": 368135.313, "RotationCenterZ": 5012970.306, "RotationX": 0.0001137206631775658, "RotationY": -0.00009991810989286426, "RotationZ": 0.0005190252778751589, "ScaleAdjustment": 4.0772, "ScaleX": 0.9999079, "ScaleY": 0.9999079, "System": "Oblique Stereographic", "Transform": "Molodensky-Badekas", "Unit": "Meter", "UnitScale": 1, "UnitShort": "m" }' AS [Value] FROM [mfd_root] WHERE [Type] = 'table' It creates a property for all tables in mfd_root. It assumes that the geometry field is called "Geom". In case you have already have a property the query will fail. Use update for these cases. Hope this helps. P.S. For Tiles the values are slightly different. Assign one manually and have a look at the mfd_meta table to find more details.
http://www.mppng.nl/manifold/pointlabeler |