Given the following CRS:
int crs ;
crs:grid_mapping_name = "latitude_longitude" ;
crs:long_name = "CRS definition" ;
crs:longitude_of_prime_meridian = 0. ;
crs:semi_major_axis = 6378137. ;
crs:inverse_flattening = 298.257222101 ;
crs:spatial_ref = "GEOGCS[\"NAD83\",DATUM[\"North_American_Datum_1983\",SPHEROID[\"GRS 1980\",6378137,298.257222101,AUTHORITY[\"EPSG\",\"7019\"]],TOWGS84[0,0,0,0,0,0,0],AUTHORITY[\"EPSG\",\"6269\"]],PRIMEM[\"Greenwich\",0,AUTHORITY[\"EPSG\",\"8901\"]],UNIT[\"degree\",0.0174532925199433,AUTHORITY[\"EPSG\",\"9122\"]],AUTHORITY[\"EPSG\",\"4269\"]]" ;
crs:GeoTransform = "-140.0041666666665 0.008333333332999999 0 61.9958333333325 0 -0.008333333332999999 " ;
crs:semi_minor_axis = 6356752.31424518 ;
this string is generated by proj4_string(), specifically the latitude_longitude function:
+proj=longlat +a=6378137.0 +rf=298.257222101 +b=6356752.31424518 +lon_0=0.0
which results in the PyCRS error:
Exception: Could not find the required +ellps element, nor a manual specification of the +a or +f elements.
I am unfamiliar with proj4, and not sure if this is a data error or a code error.
Given the following CRS:
this string is generated by
proj4_string(), specifically thelatitude_longitudefunction:+proj=longlat +a=6378137.0 +rf=298.257222101 +b=6356752.31424518 +lon_0=0.0which results in the PyCRS error:
Exception: Could not find the required +ellps element, nor a manual specification of the +a or +f elements.I am unfamiliar with proj4, and not sure if this is a data error or a code error.