@@ -116,58 +116,58 @@ public function testPoint2d(): void
116116 {
117117 $ point = Literal::point2d (1 , 2 );
118118
119- $ this ->assertEquals (new Point (new PropertyMap (["x " => new Decimal (1 ), "y " => new Decimal (2 ), "crs " => new StringLiteral ("cartesian " ), " srid " => new Decimal ( 7203 ) ])), $ point );
119+ $ this ->assertEquals (new Point (new PropertyMap (["x " => new Decimal (1 ), "y " => new Decimal (2 ), "crs " => new StringLiteral ("cartesian " )])), $ point );
120120
121121 $ point = Literal::point2d (
122122 new Decimal (1 ),
123123 new Decimal (2 )
124124 );
125125
126- $ this ->assertEquals (new Point (new PropertyMap (["x " => new Decimal (1 ), "y " => new Decimal (2 ), "crs " => new StringLiteral ("cartesian " ), " srid " => new Decimal ( 7203 ) ])), $ point );
126+ $ this ->assertEquals (new Point (new PropertyMap (["x " => new Decimal (1 ), "y " => new Decimal (2 ), "crs " => new StringLiteral ("cartesian " )])), $ point );
127127 }
128128
129129 public function testPoint3d (): void
130130 {
131131 $ point = Literal::point3d (1 , 2 , 3 );
132132
133- $ this ->assertEquals (new Point (new PropertyMap (["x " => new Decimal (1 ), "y " => new Decimal (2 ), "z " => new Decimal (3 ), "crs " => new StringLiteral ("cartesian-3D " ), " srid " => new Decimal ( 9157 ) ])), $ point );
133+ $ this ->assertEquals (new Point (new PropertyMap (["x " => new Decimal (1 ), "y " => new Decimal (2 ), "z " => new Decimal (3 ), "crs " => new StringLiteral ("cartesian-3D " )])), $ point );
134134
135135 $ point = Literal::point3d (
136136 new Decimal (1 ),
137137 new Decimal (2 ),
138138 new Decimal (3 )
139139 );
140140
141- $ this ->assertEquals (new Point (new PropertyMap (["x " => new Decimal (1 ), "y " => new Decimal (2 ), "z " => new Decimal (3 ), "crs " => new StringLiteral ("cartesian-3D " ), " srid " => new Decimal ( 9157 ) ])), $ point );
141+ $ this ->assertEquals (new Point (new PropertyMap (["x " => new Decimal (1 ), "y " => new Decimal (2 ), "z " => new Decimal (3 ), "crs " => new StringLiteral ("cartesian-3D " )])), $ point );
142142 }
143143
144144 public function testPoint2dWGS84 (): void
145145 {
146146 $ point = Literal::point2dWGS84 (1 , 2 );
147147
148- $ this ->assertEquals (new Point (new PropertyMap (["longitude " => new Decimal (1 ), "latitude " => new Decimal (2 ), "crs " => new StringLiteral ("WGS-84 " ), " srid " => new Decimal ( 4326 ) ])), $ point );
148+ $ this ->assertEquals (new Point (new PropertyMap (["longitude " => new Decimal (1 ), "latitude " => new Decimal (2 ), "crs " => new StringLiteral ("WGS-84 " )])), $ point );
149149
150150 $ point = Literal::point2dWGS84 (
151151 new Decimal (1 ),
152152 new Decimal (2 )
153153 );
154154
155- $ this ->assertEquals (new Point (new PropertyMap (["longitude " => new Decimal (1 ), "latitude " => new Decimal (2 ), "crs " => new StringLiteral ("WGS-84 " ), " srid " => new Decimal ( 4326 ) ])), $ point );
155+ $ this ->assertEquals (new Point (new PropertyMap (["longitude " => new Decimal (1 ), "latitude " => new Decimal (2 ), "crs " => new StringLiteral ("WGS-84 " )])), $ point );
156156 }
157157
158158 public function testPoint3dWGS84 (): void
159159 {
160160 $ point = Literal::point3dWGS84 (1 , 2 , 3 );
161161
162- $ this ->assertEquals (new Point (new PropertyMap (["longitude " => new Decimal (1 ), "latitude " => new Decimal (2 ), "height " => new Decimal (3 ), "crs " => new StringLiteral ("WGS-84-3D " ), " srid " => new Decimal ( 4979 ) ])), $ point );
162+ $ this ->assertEquals (new Point (new PropertyMap (["longitude " => new Decimal (1 ), "latitude " => new Decimal (2 ), "height " => new Decimal (3 ), "crs " => new StringLiteral ("WGS-84-3D " )])), $ point );
163163
164164 $ point = Literal::point3dWGS84 (
165165 new Decimal (1 ),
166166 new Decimal (2 ),
167167 new Decimal (3 )
168168 );
169169
170- $ this ->assertEquals (new Point (new PropertyMap (["longitude " => new Decimal (1 ), "latitude " => new Decimal (2 ), "height " => new Decimal (3 ), "crs " => new StringLiteral ("WGS-84-3D " ), " srid " => new Decimal ( 4979 ) ])), $ point );
170+ $ this ->assertEquals (new Point (new PropertyMap (["longitude " => new Decimal (1 ), "latitude " => new Decimal (2 ), "height " => new Decimal (3 ), "crs " => new StringLiteral ("WGS-84-3D " )])), $ point );
171171 }
172172
173173 public function testDate (): void
0 commit comments