Beispiel #1
0
 def test_proj4_str_dict_conversion(self):
     from pyresample import utils
     proj_str = "+proj=lcc +ellps=WGS84 +lon_0=-95 +no_defs"
     proj_dict = utils.proj4_str_to_dict(proj_str)
     proj_str2 = utils.proj4_dict_to_str(proj_dict)
     proj_dict2 = utils.proj4_str_to_dict(proj_str2)
     self.assertDictEqual(proj_dict, proj_dict2)
Beispiel #2
0
 def proj_str(self):
     return proj4_dict_to_str(self.proj_dict)