Top 5 Recent Articles
ARTICLES CATEGORIES
- Algorithms (22)
- All (399)
- Biography (1)
- Blog (44)
- Business Requirements (1)
- Commentary (1)
- Conversion (2)
- Customers (2)
- Data Models (1)
- Education (2)
- GeoRaptor (13)
- GPS (1)
- Image Processing (2)
- Import Export (8)
- Licensing (2)
- LiDAR (1)
- Linear Referencing (4)
- Manifold GIS (3)
- Mapping (1)
- MySQL Spatial (7)
- Networking and Routing (including Optimization) (5)
- Open Source (18)
- Oracle Spatial and Locator (194)
- Partitioning (1)
- PostGIS (36)
- Projections (1)
- Published Articles (1)
- qGIS (1)
- Recommendations (1)
- Services (1)
- Software Change Log (1)
- Source Code (37)
- Space Curves (9)
- Spatial Database Functions (109)
- Spatial DB comparison (1)
- Spatial XML Processing (11)
- SQL Server Spatial (92)
- Standards (3)
- Stored Procedure (17)
- Tessellation or Gridding (10)
- Tools (2)
- Topological Relationships (1)
- Training (2)
- Triangulation (2)
COGO: DD2DMS Formatting a latitude/longitude decimal degree value
Many years ago I had need to annotate the lines of a cadastral (land titles) polygon with the bearing and distance of each line. The bearings and distances need to be computed from the boundary of each land parcel. The annotation had to be formatted as DD^MM’SS.SS”. This was achieved with a function called DD2DMS which I have ported from PL/SQL (see my free COGO package) for use with SQL Server 2008 Spatial.
Note that I have a schema call cogo in which I create functions like this. You can use anything you like.
/** ---------------------------------------------------------------------------------------- * @function : DD2DMS * @precis : Function that takes a decimal latitude or longitude value and returns a formatted string. * @version : 1.0 * @usage : Function DD2DMS(@p_dDecDeg float, * @p_sDegreeSymbol NVarChar(1) = NULL, * @p_sMinuteSymbol NVarChar(1) = NULL, * @p_sSecondSymbol NVarChar(1) = NULL ) * RETURNS nvarchar(50) * eg select DD2DMS(45.5083333333333),'d','m','s') * @param : p_dDecDeg : Non-NULL value in decimal degrees * @paramType : p_dDecDeg : FLOAT * @param : p_sDegreeSymbol : Degree symbol, default is ^ * @param : p_sDegreeSymbol : NVarChar(1) * @param : p_sMinuteSymbol : Degree symbol, default is ' * @param : p_sMinuteSymbol : NVarChar(1) * @param : p_sSecondSymbol : Degree symbol, default is " * @param : p_sSecondSymbol : NVarChar(1) * @return : DMS String : Formatted String. * @returnType : DMS String : NVarChar(50). * @history : Simon Greener - Apr 2007 - Original coding. * @history : Simon Greener - May 2011 - Ported to TSQL * @copyright : Licensed under a Creative Commons Attribution-Share Alike 2.5 Australia License. * (http://creativecommons.org/licenses/by-sa/2.5/au/) **/ CREATE FUNCTION [cogo].[DD2DMS](@p_dDecDeg FLOAT, @p_sDegreeSymbol NVarChar(1) = NULL, @p_sMinuteSymbol NVarChar(1) = NULL, @p_sSecondSymbol NVarChar(1) = NULL ) RETURNS nvarchar(50) AS BEGIN DECLARE @iDeg INT, @iMin INT, @dSec FLOAT, @sDegSymbol NVARCHAR(1) = CASE WHEN @p_sDegreeSymbol IS NULL THEN '^' ELSE @p_sDegreeSymbol END, @sMinSymbol NVARCHAR(1) = CASE WHEN @p_sMinuteSymbol IS NULL THEN '''' ELSE @p_sMinuteSymbol END, @sSecSymbol NVARCHAR(1) = CASE WHEN @p_sSecondSymbol IS NULL THEN '"' ELSE @p_sSecondSymbol END; BEGIN SET @iDeg = CAST(@p_dDecDeg AS INT); SET @iMin = CAST(((Abs(@p_dDecDeg) - Abs(@iDeg)) * 60) AS INT); SET @dSec = Round((((Abs(@p_dDecDeg) - Abs(@iDeg)) * 60) - @iMin) * 60, 3); RETURN STR(@iDeg,4,0) + @sDegSymbol + STR(@iMin,2,1) + @sMinSymbol + STR(@dSec,5,3) + @sSecSymbol; END; END GO
Some test cases as examples.
SELECT DD2DMS(NULL,NULL,NULL,NULL) AS DMS UNION SELECT DD2DMS(45.5083333333333,NULL,NULL,NULL) AS DMS UNION SELECT DD2DMS(DMS2DD(-44,10,50),NULL,NULL,NULL) AS DMS UNION SELECT DD2DMS(DMS2DD(-44,10,50),'d','m','s') AS DMS;
Results
DMS |
---|
NULL |
45^30’30.00” |
-44^10’50.00” |
-44d10m50.00s |
I hope this is helpful to someone.
Documentation
- MySQL Spatial General Functions
- Oracle LRS Objects
- Oracle Spatial Exporter (Java + pl/SQL)
- Oracle Spatial Object Functions
- Oracle Spatial Object Functions (Multi Page)
- PostGIS pl/pgSQL Functions
- SC4O Oracle Java Topology Suite (Java + pl/SQL)
- SQL Server Spatial General TSQL Functions
- SQL Server Spatial LRS TSQL Functions