1
1
using System ;
2
2
using System . Data ;
3
+ using System . IO ;
4
+ using GeoAPI . CoordinateSystems ;
5
+ using Newtonsoft . Json ;
6
+ using Newtonsoft . Json . Linq ;
3
7
using Npgsql ;
4
8
using NUnit . Framework ;
5
- using ProjNet . Converters . WellKnownText ;
6
9
using ProjNet . CoordinateSystems ;
7
10
8
11
namespace ProjNet . UnitTests . Converters . WKT
9
12
{
10
13
[ TestFixture ]
11
14
public class SpatialRefSysTableParser
12
15
{
13
- private const string ConnectionString =
14
- "Host=localhost;Port=5432;Database=postgis2;uid=postgres;pwd=1.Kennwort" ;
16
+ private static string _connectionString ;
15
17
16
- [ Test , Ignore ( "Run only if you have a PostGis server and have corrected the ConnectionString" ) ]
17
- public void Test ( )
18
+ private static readonly Lazy < ICoordinateSystemFactory > CoordinateSystemFactory =
19
+ new Lazy < ICoordinateSystemFactory > ( ( ) => new CoordinateSystemFactory ( ) ) ;
20
+
21
+ [ Test ]
22
+ public void TestParsePostgisDefinitions ( )
18
23
{
24
+ if ( string . IsNullOrWhiteSpace ( ConnectionString ) )
25
+ throw new IgnoreException ( "No Connection string provided or provided connection string invalid." ) ;
19
26
20
27
using ( NpgsqlConnection cn = new NpgsqlConnection ( ConnectionString ) )
21
28
{
@@ -26,19 +33,20 @@ public void Test()
26
33
int counted = 0 ;
27
34
int failed = 0 ;
28
35
int tested = 0 ;
29
- using ( NpgsqlDataReader r = cmd . ExecuteReader ( CommandBehavior . CloseConnection ) )
36
+ using ( var r = cmd . ExecuteReader ( CommandBehavior . CloseConnection ) )
30
37
{
31
38
if ( r != null )
32
39
{
33
40
while ( r . Read ( ) )
34
41
{
35
42
counted ++ ;
43
+ int srid = r . GetInt32 ( 0 ) ;
36
44
string srtext = r . GetString ( 1 ) ;
37
- if ( ! string . IsNullOrEmpty ( srtext ) )
38
- {
39
- tested ++ ;
40
- if ( ! TestParse ( r . GetInt32 ( 0 ) , srtext ) ) failed ++ ;
41
- }
45
+ if ( string . IsNullOrEmpty ( srtext ) ) continue ;
46
+ if ( srtext . StartsWith ( "COMPD_CS" ) ) continue ;
47
+
48
+ tested ++ ;
49
+ if ( ! TestParse ( srid , srtext ) ) failed ++ ;
42
50
}
43
51
}
44
52
}
@@ -49,12 +57,76 @@ public void Test()
49
57
50
58
}
51
59
60
+ [ Test ] //, Ignore("Only run this if you want a new SRID.csv file")]
61
+ public void TestCreateSridCsv ( )
62
+ {
63
+ if ( string . IsNullOrWhiteSpace ( ConnectionString ) )
64
+ throw new IgnoreException ( "No Connection string provided or provided connection string invalid." ) ;
65
+
66
+ if ( File . Exists ( "SRID.csv" ) ) File . Delete ( "SRID.csv" ) ;
67
+
68
+ using ( var sw = new StreamWriter ( File . OpenWrite ( "SRID.csv" ) ) )
69
+ using ( var cn = new NpgsqlConnection ( ConnectionString ) )
70
+ {
71
+ cn . Open ( ) ;
72
+ var cm = cn . CreateCommand ( ) ;
73
+ cm . CommandText = "SELECT \" srid\" , \" srtext\" FROM \" public\" .\" spatial_ref_sys\" ORDER BY srid;" ;
74
+ using ( var dr = cm . ExecuteReader ( CommandBehavior . SequentialAccess ) )
75
+ {
76
+ while ( dr . Read ( ) )
77
+ {
78
+ int srid = dr . GetInt32 ( 0 ) ;
79
+ string srtext = dr . GetString ( 1 ) ;
80
+ switch ( srtext . Substring ( 0 , srtext . IndexOf ( "[" ) ) )
81
+ {
82
+ case "PROJCS" :
83
+ case "GEOGCS" :
84
+ case "GEOCCS" :
85
+ sw . WriteLine ( $ "{ srid } ;{ srtext } ") ;
86
+ break ;
87
+ }
88
+ }
89
+ }
90
+ cm . Dispose ( ) ;
91
+ }
92
+ }
93
+
94
+ private static string ConnectionString
95
+ {
96
+ get
97
+ {
98
+ if ( ! string . IsNullOrWhiteSpace ( _connectionString ) )
99
+ return _connectionString ;
100
+
101
+ if ( ! File . Exists ( "appsettings.json" ) )
102
+ return null ;
103
+
104
+ JToken token = null ;
105
+ using ( var jtr = new Newtonsoft . Json . JsonTextReader ( new StreamReader ( "appsettings.json" ) ) )
106
+ token = JToken . ReadFrom ( jtr ) ;
107
+
108
+ var connectionString = ( string ) token [ "ConnectionString" ] ;
109
+ try
110
+ {
111
+ using ( var cn = new NpgsqlConnection ( connectionString ) )
112
+ cn . Open ( ) ;
113
+ }
114
+ catch ( Exception )
115
+ {
116
+ return null ;
117
+ }
118
+
119
+ _connectionString = connectionString ;
120
+ return _connectionString ;
121
+
122
+ }
123
+ }
124
+
52
125
private static bool TestParse ( int srid , string srtext )
53
126
{
54
127
try
55
128
{
56
- CoordinateSystemFactory factory = new CoordinateSystemFactory ( ) ;
57
- factory . CreateFromWkt ( srtext ) ;
129
+ CoordinateSystemFactory . Value . CreateFromWkt ( srtext ) ;
58
130
//CoordinateSystemWktReader.Parse(srtext);
59
131
return true ;
60
132
}
@@ -65,36 +137,6 @@ private static bool TestParse(int srid, string srtext)
65
137
}
66
138
}
67
139
68
- [ Test ]
69
- public void TestSrOrg ( )
70
- {
71
- Assert . IsTrue ( TestParse ( 1 ,
72
- "PROJCS[\" WGS 84 / Pseudo-Mercator\" ,GEOGCS[\" Popular Visualisation CRS\" ,DATUM[\" Popular_Visualisation_Datum\" ,SPHEROID[\" Popular Visualisation Sphere\" ,6378137,0,AUTHORITY[\" EPSG\" ,\" 7059\" ]],TOWGS84[0,0,0,0,0,0,0],AUTHORITY[\" EPSG\" ,\" 6055\" ]],PRIMEM[\" Greenwich\" ,0,AUTHORITY[\" EPSG\" ,\" 8901\" ]],UNIT[\" degree\" ,0.01745329251994328,AUTHORITY[\" EPSG\" ,\" 9122\" ]],AUTHORITY[\" EPSG\" ,\" 4055\" ]],UNIT[\" metre\" ,1,AUTHORITY[\" EPSG\" ,\" 9001\" ]],PROJECTION[\" Mercator_1SP\" ],PARAMETER[\" central_meridian\" ,0],PARAMETER[\" scale_factor\" ,1],PARAMETER[\" false_easting\" ,0],PARAMETER[\" false_northing\" ,0],AUTHORITY[\" EPSG\" ,\" 3785\" ],AXIS[\" X\" ,EAST],AXIS[\" Y\" ,NORTH]]" ) ) ;
73
- }
74
140
75
- [ Test ]
76
- public void TestProjNetIssues ( )
77
- {
78
- Assert . IsTrue ( TestParse ( 1 ,
79
- "PROJCS[\" International_Terrestrial_Reference_Frame_1992Lambert_Conformal_Conic_2SP\" ," +
80
- "GEOGCS[\" GCS_International_Terrestrial_Reference_Frame_1992\" ," +
81
- "DATUM[\" International_Terrestrial_Reference_Frame_1992\" ," +
82
- "SPHEROID[\" GRS_1980\" ,6378137,298.257222101]," +
83
- "TOWGS84[0,0,0,0,0,0,0]]," +
84
- "PRIMEM[\" Greenwich\" ,0]," +
85
- "UNIT[\" Degree\" ,0.0174532925199433]]," +
86
- "PROJECTION[\" Lambert_Conformal_Conic_2SP\" ,AUTHORITY[\" EPSG\" ,\" 9802\" ]]," +
87
- "PARAMETER[\" Central_Meridian\" ,-102]," +
88
- "PARAMETER[\" Latitude_Of_Origin\" ,12]," +
89
- "PARAMETER[\" False_Easting\" ,2500000]," +
90
- "PARAMETER[\" False_Northing\" ,0]," +
91
- "PARAMETER[\" Standard_Parallel_1\" ,17.5]," +
92
- "PARAMETER[\" Standard_Parallel_2\" ,29.5]," +
93
- "PARAMETER[\" Scale_Factor\" ,1]," +
94
- "UNIT[\" Meter\" ,1,AUTHORITY[\" EPSG\" ,\" 9001\" ]]]" ) ) ;
95
-
96
- Assert . IsTrue ( TestParse ( 2 ,
97
- "PROJCS[\" Google Maps Global Mercator\" ,GEOGCS[\" WGS 84\" ,DATUM[\" WGS_1984\" ,SPHEROID[\" WGS 84\" ,6378137,298.257223563,AUTHORITY[\" EPSG\" ,\" 7030\" ]],AUTHORITY[\" EPSG\" ,\" 6326\" ]],PRIMEM[\" Greenwich\" ,0,AUTHORITY[\" EPSG\" ,\" 8901\" ]],UNIT[\" degree\" ,0.01745329251994328,AUTHORITY[\" EPSG\" ,\" 9122\" ]],AUTHORITY[\" EPSG\" ,\" 4326\" ]],PROJECTION[\" Mercator_2SP\" ],PARAMETER[\" standard_parallel_1\" ,0],PARAMETER[\" latitude_of_origin\" ,0],PARAMETER[\" central_meridian\" ,0],PARAMETER[\" false_easting\" ,0],PARAMETER[\" false_northing\" ,0],UNIT[\" Meter\" ,1],EXTENSION[\" PROJ4\" ,\" +proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs\" ],AUTHORITY[\" EPSG\" ,\" 900913\" ]]" ) ) ;
98
- }
99
141
}
100
142
}
0 commit comments