""" gps_template_coral8.py Coral8 template for GPS event """ def template(pretty = False): """ { 'Entity':'$entity_here$' ,'Latitude':$latitude_d_here$ ,'Longitude':$longitude_d_here$ ,'Course':$course_here$ ,'Speed':$speed_here$ ,'TimeUTC':'$time_stamp_here$' } """ return compress_template(template.__doc__) def compress_template(s): return ' '.join(s.split()) if __name__ == "__main__": print template()