-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build_rtkbase.sh does not contain all neccessary packages to build RTKBASE #33
Comments
Hi Thank you for the report, I think you are installing from a fresh image of raspbian, the script we have was based on a image with qtcreator already installed. We have to do a script for a fresh install on raspbian |
Hello, |
Hi, |
Hi Claudio |
For the linking with proj4, it's a good idea but I dont know how to do it, I will take a look on linking this week |
Proj.4 is a lib in common GIS software. Inside the lib there is a command line program which can convert data from one projection to another. It's very powerfull. Program name is cs2cs and usage is like that : Proj4 is available with this package under rpi : libgeo-proj4-perl and does not need rebuilding it. So usage is just to call cs2cs or use python-proj4 or use proj4js |
I see so Claudio want a tool to convert results in another projection (I thought it was the projection option in rtklib). cs2cs from proj4 could be integrated in rtkbase to do that and write the output to a file and the screen |
I did a few test with cs2cs and was able to use it as a cmd line in rtkbase to convert the post processing results from rnx2rtkp in ECEF. so I used this command line to convert to WGS 84: |
It's a bit more clear for me now after testing again cs2cs, so I will use this method forcss2cs : |
I made a update with cs2cs, in the save point option, you can choose Lambert93 and the CC42 to CC50, the converted coord will be added at end of saved point in pointfiles foldes. |
Hi Francklin, WGS84 is 4326 and not 4328. 4326 is more standard and it's the output of rtklib
Next step would be geoid correction ... |
Ok It's a bit more clear now, on our output both WGS84 and ECEF are available so that's why I took the ECEF (as EPSG 4328), I can change this and get the WGS84 as EPSG 4326 in the next update and keep WGS84 output as input for cs2cs. |
I've done a update, now we use the wgs84 coord (epseg 4326)from rtklib output as input for cs2cs . cmd line is now like this : cs2cs +init=epsg:4326 +to +init=epsg:2154. |
I add a new build script for RPI3B+ and Qt5 or test, it build but the post process part still not working (Qlist out of range) I put this in the dependencies / apt get part |
I done a update and found why it was not working on RPI3, the RNXCMP library (Hatanaka compress) in package were build for x86...I add a bin-arm and bin-x86 folder with compiled binaries. |
I added 2 scripts:
|
@kikislater and claudio033 |
The script build_rtkbase.sh does not contain all neccessary packages to be able to build RTKBASE.
I needed to additionally install qtcreator and qt4-dev-tools to be able to build.
If the needed packages are not installed qmake will fail and the user will not be notified. Also there is no information on where to find the log which contains the error. The success message could be based on the presence of the RTKBASE binary at the end of the script to prevent confusion.
The text was updated successfully, but these errors were encountered: