Skip to content

Commit 4b5c070

Browse files
author
R Y
committed
Initial commit for RTK GPS lab
0 parents  commit 4b5c070

10 files changed

+840
-0
lines changed

.gitignore

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
devel/
2+
logs/
3+
build/
4+
bin/
5+
lib/
6+
msg_gen/
7+
srv_gen/
8+
msg/*Action.msg
9+
msg/*ActionFeedback.msg
10+
msg/*ActionGoal.msg
11+
msg/*ActionResult.msg
12+
msg/*Feedback.msg
13+
msg/*Goal.msg
14+
msg/*Result.msg
15+
msg/_*.py
16+
build_isolated/
17+
devel_isolated/
18+
19+
# Generated by dynamic reconfigure
20+
*.cfgc
21+
/cfg/cpp/
22+
/cfg/*.py
23+
24+
# Ignore generated docs
25+
*.dox
26+
*.wikidoc
27+
28+
# eclipse stuff
29+
.project
30+
.cproject
31+
32+
# qcreator stuff
33+
CMakeLists.txt.user
34+
35+
srv/_*.py
36+
*.pcd
37+
*.pyc
38+
qtcreator-*
39+
*.user
40+
41+
/planning/cfg
42+
/planning/docs
43+
/planning/src
44+
45+
*~
46+
47+
# Emacs
48+
.#*
49+
50+
# Catkin custom files
51+
CATKIN_IGNORE

CMakeLists.txt

+202
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,202 @@
1+
cmake_minimum_required(VERSION 2.8.3)
2+
project(rtk_gps_pkg)
3+
4+
## Compile as C++11, supported in ROS Kinetic and newer
5+
# add_compile_options(-std=c++11)
6+
7+
## Find catkin macros and libraries
8+
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
9+
## is used, also find other catkin packages
10+
find_package(catkin REQUIRED COMPONENTS
11+
rospy
12+
std_msgs
13+
message_generation
14+
)
15+
16+
## System dependencies are found with CMake's conventions
17+
# find_package(Boost REQUIRED COMPONENTS system)
18+
19+
20+
## Uncomment this if the package has a setup.py. This macro ensures
21+
## modules and global scripts declared therein get installed
22+
## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html
23+
catkin_python_setup()
24+
25+
################################################
26+
## Declare ROS messages, services and actions ##
27+
################################################
28+
29+
## To declare and build messages, services or actions from within this
30+
## package, follow these steps:
31+
## * Let MSG_DEP_SET be the set of packages whose message types you use in
32+
## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...).
33+
## * In the file package.xml:
34+
## * add a build_depend tag for "message_generation"
35+
## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET
36+
## * If MSG_DEP_SET isn't empty the following dependency has been pulled in
37+
## but can be declared for certainty nonetheless:
38+
## * add a exec_depend tag for "message_runtime"
39+
## * In this file (CMakeLists.txt):
40+
## * add "message_generation" and every package in MSG_DEP_SET to
41+
## find_package(catkin REQUIRED COMPONENTS ...)
42+
## * add "message_runtime" and every package in MSG_DEP_SET to
43+
## catkin_package(CATKIN_DEPENDS ...)
44+
## * uncomment the add_*_files sections below as needed
45+
## and list every .msg/.srv/.action file to be processed
46+
## * uncomment the generate_messages entry below
47+
## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...)
48+
49+
## Generate messages in the 'msg' folder
50+
add_message_files(
51+
FILES
52+
GNSS.msg
53+
)
54+
55+
## Generate services in the 'srv' folder
56+
# add_service_files(
57+
# FILES
58+
# Service1.srv
59+
# Service2.srv
60+
# )
61+
62+
## Generate actions in the 'action' folder
63+
# add_action_files(
64+
# FILES
65+
# Action1.action
66+
# Action2.action
67+
# )
68+
69+
## Generate added messages and services with any dependencies listed here
70+
generate_messages(
71+
DEPENDENCIES
72+
std_msgs
73+
)
74+
75+
################################################
76+
## Declare ROS dynamic reconfigure parameters ##
77+
################################################
78+
79+
## To declare and build dynamic reconfigure parameters within this
80+
## package, follow these steps:
81+
## * In the file package.xml:
82+
## * add a build_depend and a exec_depend tag for "dynamic_reconfigure"
83+
## * In this file (CMakeLists.txt):
84+
## * add "dynamic_reconfigure" to
85+
## find_package(catkin REQUIRED COMPONENTS ...)
86+
## * uncomment the "generate_dynamic_reconfigure_options" section below
87+
## and list every .cfg file to be processed
88+
89+
## Generate dynamic reconfigure parameters in the 'cfg' folder
90+
# generate_dynamic_reconfigure_options(
91+
# cfg/DynReconf1.cfg
92+
# cfg/DynReconf2.cfg
93+
# )
94+
95+
###################################
96+
## catkin specific configuration ##
97+
###################################
98+
## The catkin_package macro generates cmake config files for your package
99+
## Declare things to be passed to dependent projects
100+
## INCLUDE_DIRS: uncomment this if your package contains header files
101+
## LIBRARIES: libraries you create in this project that dependent projects also need
102+
## CATKIN_DEPENDS: catkin_packages dependent projects also need
103+
## DEPENDS: system dependencies of this project that dependent projects also need
104+
catkin_package(
105+
CATKIN_DEPENDS rospy std_msgs message_runtime
106+
)
107+
108+
###########
109+
## Build ##
110+
###########
111+
112+
## Specify additional locations of header files
113+
## Your package locations should be listed before other locations
114+
include_directories(
115+
# include
116+
${catkin_INCLUDE_DIRS}
117+
)
118+
119+
## Declare a C++ library
120+
# add_library(${PROJECT_NAME}
121+
# src/${PROJECT_NAME}/rtk_gps_pkg.cpp
122+
# )
123+
124+
## Add cmake target dependencies of the library
125+
## as an example, code may need to be generated before libraries
126+
## either from message generation or dynamic reconfigure
127+
# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
128+
129+
## Declare a C++ executable
130+
## With catkin_make all packages are built within a single CMake context
131+
## The recommended prefix ensures that target names across packages don't collide
132+
# add_executable(${PROJECT_NAME}_node src/rtk_gps_pkg_node.cpp)
133+
134+
## Rename C++ executable without prefix
135+
## The above recommended prefix causes long target names, the following renames the
136+
## target back to the shorter version for ease of user use
137+
## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node"
138+
# set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "")
139+
140+
## Add cmake target dependencies of the executable
141+
## same as for the library above
142+
# add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
143+
144+
## Specify libraries to link a library or executable target against
145+
# target_link_libraries(${PROJECT_NAME}_node
146+
# ${catkin_LIBRARIES}
147+
# )
148+
149+
#############
150+
## Install ##
151+
#############
152+
153+
# all install targets should use catkin DESTINATION variables
154+
# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html
155+
156+
## Mark executable scripts (Python etc.) for installation
157+
## in contrast to setup.py, you can choose the destination
158+
# install(PROGRAMS
159+
# scripts/my_python_script
160+
# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
161+
# )
162+
163+
## Mark executables for installation
164+
## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_executables.html
165+
# install(TARGETS ${PROJECT_NAME}_node
166+
# RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
167+
# )
168+
169+
## Mark libraries for installation
170+
## See http://docs.ros.org/melodic/api/catkin/html/howto/format1/building_libraries.html
171+
# install(TARGETS ${PROJECT_NAME}
172+
# ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
173+
# LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
174+
# RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION}
175+
# )
176+
177+
## Mark cpp header files for installation
178+
# install(DIRECTORY include/${PROJECT_NAME}/
179+
# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
180+
# FILES_MATCHING PATTERN "*.h"
181+
# PATTERN ".svn" EXCLUDE
182+
# )
183+
184+
## Mark other files for installation (e.g. launch and bag files, etc.)
185+
# install(FILES
186+
# # myfile1
187+
# # myfile2
188+
# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
189+
# )
190+
191+
#############
192+
## Testing ##
193+
#############
194+
195+
## Add gtest based cpp test target and link libraries
196+
# catkin_add_gtest(${PROJECT_NAME}-test test/test_rtk_gps_pkg.cpp)
197+
# if(TARGET ${PROJECT_NAME}-test)
198+
# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME})
199+
# endif()
200+
201+
## Add folders to be run by python nosetests
202+
# catkin_add_nosetests(test)

include/utm/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
from utm.conversion import to_latlon, from_latlon, latlon_to_zone_number, latitude_to_zone_letter, check_valid_zone
2+
from utm.error import OutOfRangeError

0 commit comments

Comments
 (0)