<div dir="ltr"><div><div><div>proj=utm zone=33 does not assume input data are in a WGS84 *reference frame* (datum).<br><br>But it picks up  the *WGS84 ellipsoid* as default from the proj_def.dat file,<br>if your PROJ_LIB environment variable points to the directory where it resides.<br>The error message you get could mean that this is not the case.<br><br>It has been proposed (and I happen to agree) that the proj_def.dat file creates<br></div>more problems than it solves. This is evidently one of them.<br><br></div><div>Also note that the proj=longlat steps in your pipelines are essentially no-ops.<br>So the entire roundtrip thing can be done using just one cct call:<br><br>
cct +proj=pipeline +step +proj=utm +zone=33 +ellps=GRS80 +step 
 +inv +proj=utm +zone=33 +ellps=GRS80<br><br>Which, due to the feature of &quot;pipeline global settings&quot; can even be abbreviated to:<br><br>cct +proj=pipeline +proj=utm +zone=33 +ellps=GRS80 +step +step +inv</div><br></div>/Thomas<br></div><div class="gmail_extra"><br><div class="gmail_quote">2018-02-28 11:33 GMT+01:00 Matthias Gabriel <span dir="ltr">&lt;<a href="mailto:matthias.gabriel@etit.tu-chemnitz.de" target="_blank">matthias.gabriel@etit.tu-chemnitz.de</a>&gt;</span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div>Hi Kristian,<br>
<br>
thank you for your answer..<br>
<br>
I run your command on my Windows Installation and unfortunately it produces:<span class=""><br>
<br>
echo 12 50 306 0 | cct.exe +proj=pipeline +step +inv +proj=lonlat +datum=WGS84 +ellps=WGS84 +step +proj=utm +zone=33 | cct.exe +proj=pipeline +step +inv +proj=utm +zone=33 +step +proj=lonlat +datum=WGS84 +ellps=WGS84<br></span>
cct.exe: Bad transformation arguments - (major axis or radius = 0 or not given)<br>
    &#39;cct.exe -h&#39; for help<br>
<br>
The error stems from the second pipeline. If I remove it I get the proper UTM coordinates, but the second part fails:<br>
<br>
echo 285015.7633 5542944.0186 306.0000 0.0000 | cct.exe +proj=pipeline +step +inv +proj=utm +zone=33 +step +proj=latlong +datum=WGS84<br>
cct.exe: Bad transformation arguments - (major axis or radius = 0 or not given)<br>
    &#39;cct.exe -h&#39; for help<br>
<br>
About the +datum modifier: I don&#39;t really understand, what are cs2cs modifiers and what not... Why is it implied that +proj=utm +zone=33 would assume &quot;WGS84&quot; long-lat coordinates as input? According to an earlier email I thought to have read that the assumption to be able to use WGS84 as an universal reference in proj4 is flawed and that this is the motivation for new API?!<br>
<br>
Thank you for your help, Regards,<br>
Matthias<br><br><div class="gmail_quote"><div><div class="h5">On 28 February 2018 09:58:15 CET, Kristian Evers &lt;<a href="mailto:kreve@sdfe.dk" target="_blank">kreve@sdfe.dk</a>&gt; wrote:</div></div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<pre class="m_-1914503853419179590k9mail"><div><div class="h5">Hi Matthias,<br><br>I just tried reproducing your problem:<br><br>echo 12 50 306 0 | cct.exe +proj=pipeline +step +inv +proj=lonlat +datum=WGS84 +ellps=WGS84 +step +proj=utm +zone=33 | cct.exe +proj=pipeline +step +inv +proj=utm +zone=33 +step +proj=lonlat +datum=WGS84 +ellps=WGS84<br> 12.0000000005   49.9999999996      306.0000        0.0000<br><br>Without any luck. This is on Windows, so I am not sure what is causing your problem. <br><br>Really though, what you are trying to do is not really recommended. Instead of writing a long explanation, I&#39;ll just link to what<br>Thomas wrote the other day about using cs2cs modifiers such as +datum in pipelines:<br><br>        <a href="http://lists.maptools.org/pipermail/proj/2018-February/008055.html" target="_blank">http://lists.maptools.org/<wbr>pipermail/proj/2018-February/<wbr>008055.html</a><br><br>TL;DR: Don&#39;t do that, unless invoked from a init-file.<br><br>In your specific case there&#39;s a much simpler solution:<br><br>        +proj=utm +zone=33<br><br>The reason being that &quot;+proj=lonlat +datum=WGS84 +ellps=WGS84&quot; in the context of pipelines is just a no operation that<br>passes through whatever comes in unchanged.  See for yourself:<br><br>        λ echo 12 55 0 0|cct.exe +proj=lonlat +datum=WGS84 +ellps=WGS84<br>         12.0000000000   55.0000000000        0.0000        0.0000<br><br>Hope that clears things up a bit.<br><br>/Kristian<br><br>PS. You don&#39;t need +ellps=WGS84 when setting +datum=WGS84 <br><br>-----Oprindelig meddelelse-----<br>Fra: <a href="mailto:proj-bounces@lists.maptools.org" target="_blank">proj-bounces@lists.maptools.<wbr>org</a> [mailto:<a href="mailto:proj-bounces@lists.maptools.org" target="_blank">proj-bounces@lists.<wbr>maptools.org</a>] På vegne af Matthias Gabriel<br>Sendt: 28. februar 2018 09:13<br>Til: <a href="mailto:proj@lists.maptools.org" target="_blank">proj@lists.maptools.org</a><br>Emne: Re: [Proj] PROJ 5.0.0RC6<br><br>Hi,<br><br>I still have a problem using proj4 RC6 on Windows... I try to calculate <br>the &quot;round-trip&quot; from WGS84 -&gt;  UTM -&gt; WGS84 using the following two <br>pipelines in a unit-test:<br><br>+proj=pipeline +step +inv<br>+proj=lonlat +datum=WGS84 +ellps=WGS84<br>+step<br>+proj=utm +zone=33<br><br>and its inverse:<br><br>+proj=pipeline +step +inv<br>+proj=utm +zone=33<br>+step<br>+proj=lonlat +datum=WGS84 +ellps=WGS84<br><br>My test-values are 12.0° 50.0° 306m - of course they are converted into <br>radians before. I apply the first projection, get an intermediate (UTM) <br>result and then immediately apply the second pipeline and get again <br>lonlat in WGS84. Then I compare both WGS84.<br><br>On Linux x64 and aarch64 that unit-test succeeds and the result of <br>applying both pipelines is again 12° and 50°. On Windows VS 15 2017 <br>amd64 its not the case. It seems that the second a application of the <br>pipeline has no effect, the PJ_COORD still contains the UTM coordinates. <br>Not even an error is raised (proj_errno equals 0 for the projection ptr) <br>and of course my unittest fails.<br><br>I&#39;m not an expert on projections but as this test succeeds on linux I <br>find it rather strange...<br><br>Regards,<br>Matthias<br><br><br><br>On 27/02/18 16:49, Bas Couwenberg wrote:<br></div></div><blockquote class="gmail_quote" style="margin:0pt 0pt 1ex 0.8ex;border-left:1px solid #729fcf;padding-left:1ex"><div><div class="h5"> On 2018-02-27 15:11, Greg Troxel wrote:<br><blockquote class="gmail_quote" style="margin:0pt 0pt 1ex 0.8ex;border-left:1px solid #ad7fa8;padding-left:1ex"> Kristian Evers &lt;<a href="mailto:kreve@sdfe.dk" target="_blank">kreve@sdfe.dk</a>&gt; writes:<br><br><blockquote class="gmail_quote" style="margin:0pt 0pt 1ex 0.8ex;border-left:1px solid #8ae234;padding-left:1ex"> Thanks for you feedback, Greg. It is very appreciated.<br><br> I think Bas has commented on most issues already so I&#39;ll skip that. I<br> have updated<br> the NEWS and README files to take your comments into account:<br><br> <a href="https://github.com/OSGeo/proj.4/pull/828" target="_blank">https://github.com/OSGeo/proj.<wbr>4/pull/828</a><br><br> Let me know if I&#39;ve missed something or described things in an unclear<br> way.<br></blockquote> Thanks - that almost entirely addresses things.<br><br><br> A further comment, and I don&#39;t mean to suggest that the release be held<br> up:<br><br> The text talks about how the regional ones are not essential but could<br> be useful.  That seems fair.  But, as a user, how do I find out what is<br> in them, or what I need, other than by downloading them and inspecting<br> them?<br></blockquote> Use the source, Luke. :-)<br><br>    <a href="https://github.com/OSGeo/proj-datumgrid" target="_blank">https://github.com/OSGeo/proj-<wbr>datumgrid</a><br><br> Specific subdirectories for the regional packages:<br><br>    <a href="https://github.com/OSGeo/proj-datumgrid/tree/master/europe" target="_blank">https://github.com/OSGeo/proj-<wbr>datumgrid/tree/master/europe</a><br>    <a href="https://github.com/OSGeo/proj-datumgrid/tree/master/north-america" target="_blank">https://github.com/OSGeo/proj-<wbr>datumgrid/tree/master/north-<wbr>america</a><br>    <a href="https://github.com/OSGeo/proj-datumgrid/tree/master/oceania" target="_blank">https://github.com/OSGeo/proj-<wbr>datumgrid/tree/master/oceania</a><br><br><blockquote class="gmail_quote" style="margin:0pt 0pt 1ex 0.8ex;border-left:1px solid #ad7fa8;padding-left:1ex"> As a packager, what should I do?  For now, I will include the main file<br> in the package, following tradition, and not worry about the new ones.<br> I am guessing that this means the grids for the important datums are<br> still in the main file, even if they are a North American Datum, and<br> the<br> north-america file contains only more obscure datums that were not<br> previously available.  I originally had the impression that all North<br> American grids were demoted from the main file to the regional file.<br></blockquote> proj-datumgrid-north-america includes grids for Greenland.<br><br> The &quot;old&quot; NAD grids for North America are still included in the core<br> proj-datumgrid package as they have been since pretty much forever.<br><br> The filename and content of the proj-datumgrid was explicitly kept the<br> same to not require any changes from packagers other than the version<br> number.<br><br> That is also why the .zip format was kept, and in addition a .tar.gz is<br> available as well.<br><br><blockquote class="gmail_quote" style="margin:0pt 0pt 1ex 0.8ex;border-left:1px solid #ad7fa8;padding-left:1ex"> I updated my draft 5.0.0 package to use proj-datumgrids-1.7RC2, and I<br> see that this added two files compared to 1.5 (which I should have<br> updated but didn&#39;t), and did not withdraw any.<br><br> So I have convinced myself that using the main file for the package,<br> and<br> deferring thinking about the new files is a good approach.<br><br><br> So it might help to add<br><br>    All grids that were in proj-datumgrids-1.6 remain in<br>    proj-datumgrids-1.7; the regional datumgrid files contain grids for<br>    datums not previously supported.<br></blockquote> Where do you suggest to add this?<br><br> Kind Regards,<br><br> Bas<br><hr><br></div></div><span class=""> Proj mailing list<br> <a href="mailto:Proj@lists.maptools.org" target="_blank">Proj@lists.maptools.org</a><br> <a href="http://lists.maptools.org/mailman/listinfo/proj" target="_blank">http://lists.maptools.org/<wbr>mailman/listinfo/proj</a><br></span></blockquote></pre></blockquote></div></div><br>______________________________<wbr>_________________<br>
Proj mailing list<br>
<a href="mailto:Proj@lists.maptools.org">Proj@lists.maptools.org</a><br>
<a href="http://lists.maptools.org/mailman/listinfo/proj" rel="noreferrer" target="_blank">http://lists.maptools.org/<wbr>mailman/listinfo/proj</a><br></blockquote></div><br></div>