11# =================================================================
22#
33# Authors: Just van den Broecke <justb4@gmail.com>
4+ # Tom Kralidis <tomkralidis@gmail.com>
45#
56# Copyright (c) 2023 Just van den Broecke
7+ # Copyright (c) 2026 Tom Kralidis
68#
79# Permission is hereby granted, free of charge, to any person
810# obtaining a copy of this software and associated documentation
@@ -50,7 +52,6 @@ def get_axis_order(coords):
5052def test_transforms ():
5153 version_num = int (gdal .VersionInfo ('VERSION_NUM' ))
5254 assert version_num > 3000000 , f'GDAL version={ version_num } must be > 3.0.0'
53- print (f'GDAL Version num = { version_num } ' )
5455
5556 pyproj .show_versions ()
5657 FORCE_LON_LAT = osr .OAMS_TRADITIONAL_GIS_ORDER
@@ -68,7 +69,6 @@ def test_transforms():
6869 }
6970
7071 for crs in CRS_DICT :
71- print (f'Testing CRS={ crs } ' )
7272 crs_entry = CRS_DICT [crs ]
7373 source = get_spatial_ref (28992 , AUTH_COMPLIANT )
7474 target = get_spatial_ref (crs_entry ['epsg' ], crs_entry ['mapping' ])
@@ -85,7 +85,6 @@ def test_transforms():
8585 axis_order = get_axis_order (result )
8686
8787 # Axis order should match that of CRS
88- print (f'Transform result={ result } Axis order={ axis_order } ' )
8988 crs_axis_order = crs_entry ['order' ]
9089 assert axis_order == crs_axis_order , f'Axis order for { crs } after Transform should be { crs_axis_order } result={ result } ' # noqa
9190
@@ -106,7 +105,6 @@ def test_transforms():
106105 # Determine Axis order after ExportToJson
107106 coords = json_feature ['geometry' ]['coordinates' ]
108107 axis_order = get_axis_order (coords )
109- print (f'ExportToJson result={ coords } Axis order={ axis_order } ' )
110108 assert axis_order == crs_axis_order , f'Axis order for { crs } after ExportToJson should be { crs_axis_order } coords={ coords } ' # noqa
111109
112110
0 commit comments