I need to transform a shapefile from Deir ez Zor / Levant Stereographic (EPSG:22780) to UTM 36N using 7-parameters Helmet transformation on Python script.
In ArcGIS, I can achieve the following using this code:
GEOGTRAN["from levant to wgs",
GEOGCS["GCS_levant",
DATUM["D_levant",
SPHEROID["Clarke_1880_IGN",6378249.2,293.46602]],
PRIMEM["Greenwich",0.0],
UNIT["Degree",0.0174532925199433]],
GEOGCS["GCS_WGS_1984",
DATUM["D_WGS_1984",
SPHEROID["WGS_1984",6378137.0,298.257223563]],
PRIMEM["Greenwich",0.0],
UNIT["Degree",0.0174532925199433]],
METHOD["Position_Vector"],
PARAMETER["X_Axis_Translation",xxxxx],
PARAMETER["Y_Axis_Translation",xxxxx],
PARAMETER["Z_Axis_Translation",xxxxx],
PARAMETER["X_Axis_Rotation",xxxxx],
PARAMETER["Y_Axis_Rotation",xxxxx],
PARAMETER["Z_Axis_Rotation",xxxxx],
PARAMETER["Scale_Difference",xxxxx]]
I experimented with several commands such as shpproj with no luck.