SlideShare a Scribd company logo
International Journal of Engineering Research and Development
e-ISSN: 2278-067X, p-ISSN: 2278-800X, www.ijerd.com
Volume 11, Issue 05 (May 2015), PP.64-68
64
Vehicle Tracking and Remote Data Acquisition System using
Very High Frequency operated devices
Rupesh Punjani1
, Janvi Adiecha2
, R.K. Dave3
, Raju Adiecha4
, Manoj Pandya5
1
MJRP University, Rajasthan, India
2
Atimya College, Rajkot, India
3
Head, Govt. Initiatives, ITRA, New Delhi
4
Rajen Electronics, Rajkot, India
5
Project Manager, BISAG, Gandhinagar, India.
Abstract:- Amateur radio or Ham radio [1] is a provider of supplemental communications for disaster relief and
disaster control agencies. Amateur radio can cover gamut of areas where conventional system fails to function.
For example, existing vehicle tracking system works on GSM or GPRS based network which cannot function in
remote geographical areas. This leads to construct alternate network using Amateur radio to establish audio
communication and support in data acquisition.
Keywords:- VHF, Vehicle Tracking, GPS, Amateur Radio, HAM Radio
I. INTRODUCTION
A vehicle tracking system [5] collects data of objects like latitude, longitude, altitude etc. for a comprehensive
picture of vehicle locations. Modern vehicle tracking systems commonly use Global positioning System (GPS)
or GLObal NAvigation Satellite System (GLONASS) technology for locating the vehicle. Vehicle tracking
system uses Global System for Mobile Communications (GSM) [10] or General packet radio service (GPRS) [8]
to transmit the acquired information to the central server. It works fine in urban region where the GSM network
coverage is rich. However, there are certain outskirts areas which face poor GSM network coverage or some
regions like coastal and boarder area suffer from unavailability of coverage. Boarder areas are geographically
isolated area and it is most sensitive terrain of the nation. Hence it is necessary to establish communication in
this region.
II. RATIONALE
Use of Amateur Radio [1] that operates on VHF is used in the proposed system; helps to track the vehicles in
remote places like desert, small interior villages where the GSM network is not available. Proposed model will
also be useful in marine region. The GPS receiver is set to send location information to the server after every 10
seconds. Google maps services are used as Application programming Interface for web map services (WMS).
System can locate the vehicle location on map and stores the route of the vehicle in the form of vertex points
array in database which is useful to guide the vehicle when it goes astray. The system indicates with red colour
and BEEP tone is generated by machine to draw the attention of the operator of the system. Once observed,
operator can communicate with VHF sets and can guide with voice. The system is designed to perform in any
kind of weather. Hence it can cover remote areas where GSM network based communication is not established.
Fig. 1 Block Diagram: Vehicle Tracking System using VHF
Vehicle Tracking and Remote Data Acquisition System using Very High Frequency operated devices
65
Figure 1 shows that vehicle tracker gets its position using GPS by communicating satellites. This information is
transmitted using Very High Frequency (VHF) [12] transceiver and sent to the workstation where VHF receiver
gets this information and translated by database engine. In this system, Microsoft Access is used as a Relational
Database Management System (RDBMS). Application manager can visualize this information on Google map
using spatial dimension and Google API.
A. ELEMENTS OF THE SYSTEM
Transducer: A device which converts one form of energy into another form of energy. The data collected by
sensors are attributed into meaningful information that can be interpreted and disseminated for further analysis.
RS232 Converter: It is a standard for serial communication transmission of data. It formally defines the signals
connecting between a computer terminal and a modem [7].
Radio Modem: Radio modems transfer data wirelessly across a range of up to tens of kilometres. Using radio
modems is a modern way to create Private Radio Networks (PRN) [9].
B. FUNCTIONALITY MECHANISM:
Send Data:
private static void SendSampleData()
{
// Instantiate the communication
// port with some basic settings
SerialPort port = new SerialPort(
"COM1", 9600, Parity.None, 8, StopBits.One);
// Open the port for communications
port.Open();
// Write a string
port.Write("Communication Established");
// Write a set of bytes
port.Write(new byte[] {0x0A, 0xE2, 0xFF}, 0, 3);
// Close the port
port.Close();
}
Fig 2: Schematic: Send & Receive Data for Vehicle Tracker
Vehicle Tracking and Remote Data Acquisition System using Very High Frequency operated devices
66
Receive Data from Port
private SerialPortProgram()
{
Console.WriteLine("Incoming Data:");
// Attach a method to be called when there
// is data waiting in the port's buffer
port.DataReceived += new
SerialDataReceivedEventHandler(port_DataReceived);
// Begin communications
port.Open();
// Enter an application loop to keep this thread alive
Application.Run();
}
private void port_DataReceived(object sender,
SerialDataReceivedEventArgs e)
{
// Show all the incoming data in the port's buffer
Console.WriteLine(port.ReadExisting());
}
Sending Files
Syntax for sending files in binary format is given here through the serial port. Of course, these are the
bare essentials and as always, you should check to make sure the port is open first.
private static void SendTextFile(
SerialPort port, string FileName)
{ port.Write(File.OpenText(FileName).ReadToEnd()); }
III. SYSTEM MECHANISM
Fig. 3: Interface while receiving data
Vehicle Tracking and Remote Data Acquisition System using Very High Frequency operated devices
67
As shown in the above figure 3, when radio modem sends data, the label control is changed to GREEN color
showing ON state.
Fig 4: Application form after receiving data
As shown in the above figure 4, when application finishes receiving data, the label control is changed
to RED colour showing OFF state. Once data is received by the system, it will project to Google map using
Google API.
A. Advantage of the proposed system:
Refusal to Interference:
Radio interference does not affect VHF nearly as much as HF. This proves especially beneficial for use
in vehicles. Many police forces switched to VHF in the past, due to interference problems on HF, according to
the Institute for Criminal Justice Education. The ICJE also indicates that VHF offers advantages in rural areas
because it can more easily transmit long distances, when compared to UHF (Ultra High Frequency). However, it
does not transmit so far that distant stations interfere with each other at night.
Superior Sound Reproduction:
VHF offers much better sound quality than HF bands like AM, shortwave and CB (Citizen's Band).
This explains why broadcasters use it to transmit high-quality audio on FM radio and some television stations. It
boosts intelligibility, which prevents misunderstandings and reduces the need to repeat oneself. The sound
quality usually remains uniform at all hours.
Use of easy and economical Antenna:
VHF receivers generally use the least expensive, most portable antennas. For example, many FM and
weather-band radios receive broadcasts with simple telescopic antennas that cost little to replace and retract into
the receivers when not in use, among other advantages. UHF and HF receivers often use loops, long wires and
other larger, more costly antennas. A radio operator can utilize the same VHF antenna for two-way
communications and reception of the weather band. A combined radio/television may use the same antenna to
pick up VHF TV stations and FM radio, but will require separate antennas for UHF and AM.
Marine Advantages:
VHF radios provide several important advantages for use on boats and ships. They offer much more
effective communication in marine emergencies than CB or FRS (Family Radio Service). Coast Guard units do
not monitor the CB emergency channel and FRS doesn't supply an emergency channel, according to the Boat
Owners Association of the United States. VHF proves more popular among boat operators than other bands, so
it's easier to communicate with a wide range of boaters.
Vehicle Tracking and Remote Data Acquisition System using Very High Frequency operated devices
68
IV. CONCLUSIONS
Proposed system is very useful in marine, army and in disaster mitigation. It is necessary to explore the
use of amateur radio as a provider of supplemental communications for disaster relief and disaster control
agencies [1] [4]. Amateur radio operators, or hams, are skilled communicators willing and able to volunteer their
time and equipment for emergencies. They also offer their skills and additional frequencies; thus, it makes sense
to plan for and include them in disaster training and preparation and to use them when disaster strikes. Hams can
work together with agencies to provide more effective communications during a disaster.
FUTURE SCOPE
There is always a scope for enhancements in any system, especially in the world of computers. The
“Vehicle Tracking and Data Acquisition System” software and hardware can also be modified according to the
future requirements like monitoring fuel levels, temperature, water level etc. That may lead to develop a
comprehensive fleet management system for remote area like marine.
ACKNOWLEDGMENT
Authors would like to thanks T. P. Singh, Director, Bhaskaracharya Institute for Space Applications & Geo-
informatics (Gandhinagar) and Dr. J. G. Pandya for constant encouragement to our research work.
REFERENCES
[1]. “HAM Radio”, Internet: http://www.giar.org/index.php?file=webpages/webpage&id=what-is-ham-
radio [5 May 2015]
[2]. Lynn Edwards, 1994, The utilization of amateur radio in disaster communications
[3]. “Role of Amateur Radio in Development Communication of Bangladesh”, Internet:
http://www.cimap.vt.edu/files/internet/Impression/ICT.pdf. [5 May 2015]
[4]. Ferguson, Richard, 1992, Packet Radio and Emergency Communications: Public Safety Enters the
Digital World. 73 Amateur Radio Today (October):42-45.
[5]. “Amateur Radio”, Internet:http://en.wikipedia.org/wiki/Amateur_radio [5 May 2015]
[6]. “Vehicle Tracking System”, Internet: http://en.wikipedia.org/wiki/Vehicle_tracking_system [10 May
2015]
[7]. “RS-232”, Internet: http://en.wikipedia.org/wiki/RS-232 [10 May 2015]
[8]. “General Packet Radio Service”, Internet: http://en.wikipedia.org/wiki/General_Packet_Radio_Service
[5 May 2015]
[9]. (2015) Radio Modem.[Online]. Available: http://en.wikipedia.org/wiki/Radio_modem
[10]. (2015) GSM. [Online]. Available: http://en.wikipedia.org/wiki/GSM
[11]. (2015) The Advantage of VHF. [Online]. Available: http://www.ehow.com/info_8152526_advantages-
vhf.html
[12]. (2015) Very High Frequency. [Online]. Available: http://en.wikipedia.org/wiki/Very_high_frequency

More Related Content

PDF
Carrier aggregation
PDF
PERFORMANCE ANALYSIS OF CARRIER AGGREGATION FOR VARIOUS MOBILE NETWORK IMPLEM...
PDF
What is lte ca carrier aggregation tutorial
PDF
Carrier Aggregation in LTE-Advanced
DOC
Carrier aggregation LTE
DOCX
ONGC_summer_rereport
PDF
SATELLITE COMMUNICATION SYSTEM
DOCX
3G NEWORK OPTIMIZATION DOCUMENT
Carrier aggregation
PERFORMANCE ANALYSIS OF CARRIER AGGREGATION FOR VARIOUS MOBILE NETWORK IMPLEM...
What is lte ca carrier aggregation tutorial
Carrier Aggregation in LTE-Advanced
Carrier aggregation LTE
ONGC_summer_rereport
SATELLITE COMMUNICATION SYSTEM
3G NEWORK OPTIMIZATION DOCUMENT

What's hot (20)

PDF
LTE-Advanced Carrier Aggregation CA – from design to implementation and test ...
PPTX
Portable Ground Receving Station
DOC
HAAPS Report
PDF
Cellular expert for lte planning 2
PPTX
LTE Cell Planning
PDF
Ijetcas14 396
DOCX
Carrier aggregation explained
PPTX
Satellite Communication
PDF
Remote Monitoring and Control of Boat Using Lora Technology
PDF
Broadband Communications and Applications from High Altitude Platforms
PDF
Satellite nets
PPT
Vsat E-commerce
DOC
PDF
Experimental Studies on the Effect of Antenna Orientations to the Performance...
PPTX
LTE Planning Basic
PPT
Wcdma channels
PPT
Study of self optimization of neighbor cell listing for e nodeb in long term ...
PPTX
HAAPS Technology
PDF
Exponential MLWDF (EXP-MLWDF) Downlink Scheduling Algorithm Evaluated in LTE ...
PDF
Radio communications for safe and efficient Rail Operation
LTE-Advanced Carrier Aggregation CA – from design to implementation and test ...
Portable Ground Receving Station
HAAPS Report
Cellular expert for lte planning 2
LTE Cell Planning
Ijetcas14 396
Carrier aggregation explained
Satellite Communication
Remote Monitoring and Control of Boat Using Lora Technology
Broadband Communications and Applications from High Altitude Platforms
Satellite nets
Vsat E-commerce
Experimental Studies on the Effect of Antenna Orientations to the Performance...
LTE Planning Basic
Wcdma channels
Study of self optimization of neighbor cell listing for e nodeb in long term ...
HAAPS Technology
Exponential MLWDF (EXP-MLWDF) Downlink Scheduling Algorithm Evaluated in LTE ...
Radio communications for safe and efficient Rail Operation
Ad

Viewers also liked (15)

PDF
Production of Pachouli Oil by Fermentation Methode Using Phanerochaete Chryso...
PDF
Impact of Aqua Ponds on Soils of Godavari Western Delta, West Godavari Distri...
PDF
Fast Fourier Transform utilizing Modified 4:2 & 7:2 Compressor
PDF
Seismic Drift Consideration in soft storied RCC buildings: A Critical Review
PDF
Efect of Silicon Carbide (Sic) Abrasive Particles Mixed In Die Electric Fluid...
PDF
Hand movements based control of an intelligent wheelchair Using Accelerometer...
PDF
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
PDF
Flower Grain Image Classification Using Supervised Classification Algorithm
PDF
Palm Authentication Using Biometric System
PDF
Performance Evaluation of Root Crop Harvesters
PDF
An Analysis of Low Energy Adaptive Clustering Hierarchy (LEACH) Protocol for ...
PDF
A Generalized Multistage Economic Planning Model for Distribution System Cont...
PDF
Investigations on Properties of Light Weight Cinder Aggregate Concrete
PDF
Reducing Corrosion Rate by Welding Design
PDF
Accurate wireless channel modeling for efficient adaptive Forward Error Corre...
Production of Pachouli Oil by Fermentation Methode Using Phanerochaete Chryso...
Impact of Aqua Ponds on Soils of Godavari Western Delta, West Godavari Distri...
Fast Fourier Transform utilizing Modified 4:2 & 7:2 Compressor
Seismic Drift Consideration in soft storied RCC buildings: A Critical Review
Efect of Silicon Carbide (Sic) Abrasive Particles Mixed In Die Electric Fluid...
Hand movements based control of an intelligent wheelchair Using Accelerometer...
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
Flower Grain Image Classification Using Supervised Classification Algorithm
Palm Authentication Using Biometric System
Performance Evaluation of Root Crop Harvesters
An Analysis of Low Energy Adaptive Clustering Hierarchy (LEACH) Protocol for ...
A Generalized Multistage Economic Planning Model for Distribution System Cont...
Investigations on Properties of Light Weight Cinder Aggregate Concrete
Reducing Corrosion Rate by Welding Design
Accurate wireless channel modeling for efficient adaptive Forward Error Corre...
Ad

Similar to Vehicle Tracking and Remote Data Acquisition System using Very High Frequency operated devices (20)

PDF
IRJET- Boat Localization and Warning System for Border Identification
PDF
Paper id 28201413
PDF
IRJET- Location Monitoring System for Maritime Security using RSSI Technology
PDF
IRJET- GPS Based Vehicle Tracking and Monitoring System - A Solution for Tran...
DOCX
PDF
Project report on wireless based traffic control for emergency vehicle
PDF
Automatic Vehicle Locator(AVL) Seminar report
PDF
APRS - the amateur radio tracking system
PDF
GPS based Advanced Vehicle Tracking and Vehicle Control System
PDF
Small form factor cognitive radio implemented via fpga partial reconfiguratio...
DOC
Final Year Engineering Project Title List for Electronics & Electrical Branch...
PDF
Adaptive Cruise Control & Automobile Black box -Team Code Chef - PES University
DOC
Automotive
PPTX
blackbox01 (1).pptx
PDF
WIRELESS DATA ACQUISITION SYSTEM FOR REAL TIME APPLICATIONS
PDF
Vehicle Tracking System For Commercial Vehicles
PDF
vehicle traking based on GSM/GPS using 8051
PDF
Cruise control devices
PDF
Multi tracking system for vehicle using gps and gsm
PDF
Multi tracking system for vehicle using gps and gsm
IRJET- Boat Localization and Warning System for Border Identification
Paper id 28201413
IRJET- Location Monitoring System for Maritime Security using RSSI Technology
IRJET- GPS Based Vehicle Tracking and Monitoring System - A Solution for Tran...
Project report on wireless based traffic control for emergency vehicle
Automatic Vehicle Locator(AVL) Seminar report
APRS - the amateur radio tracking system
GPS based Advanced Vehicle Tracking and Vehicle Control System
Small form factor cognitive radio implemented via fpga partial reconfiguratio...
Final Year Engineering Project Title List for Electronics & Electrical Branch...
Adaptive Cruise Control & Automobile Black box -Team Code Chef - PES University
Automotive
blackbox01 (1).pptx
WIRELESS DATA ACQUISITION SYSTEM FOR REAL TIME APPLICATIONS
Vehicle Tracking System For Commercial Vehicles
vehicle traking based on GSM/GPS using 8051
Cruise control devices
Multi tracking system for vehicle using gps and gsm
Multi tracking system for vehicle using gps and gsm

More from IJERD Editor (20)

PDF
A Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
PDF
MEMS MICROPHONE INTERFACE
PDF
Influence of tensile behaviour of slab on the structural Behaviour of shear c...
PDF
Gold prospecting using Remote Sensing ‘A case study of Sudan’
PDF
Router 1X3 – RTL Design and Verification
PDF
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
PDF
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
PDF
Study on the Fused Deposition Modelling In Additive Manufacturing
PDF
Spyware triggering system by particular string value
PDF
Secure Image Transmission for Cloud Storage System Using Hybrid Scheme
PDF
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
PDF
Gesture Gaming on the World Wide Web Using an Ordinary Web Camera
PDF
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
PDF
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
PDF
Moon-bounce: A Boon for VHF Dxing
PDF
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
PDF
Importance of Measurements in Smart Grid
PDF
Study of Macro level Properties of SCC using GGBS and Lime stone powder
PDF
Post processing of SLM Ti-6Al-4V Alloy in accordance with AMS 4928 standards
PDF
Treatment of Waste Water from Organic Fraction Incineration of Municipal Soli...
A Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
MEMS MICROPHONE INTERFACE
Influence of tensile behaviour of slab on the structural Behaviour of shear c...
Gold prospecting using Remote Sensing ‘A case study of Sudan’
Router 1X3 – RTL Design and Verification
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
Study on the Fused Deposition Modelling In Additive Manufacturing
Spyware triggering system by particular string value
Secure Image Transmission for Cloud Storage System Using Hybrid Scheme
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
Gesture Gaming on the World Wide Web Using an Ordinary Web Camera
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
Moon-bounce: A Boon for VHF Dxing
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
Importance of Measurements in Smart Grid
Study of Macro level Properties of SCC using GGBS and Lime stone powder
Post processing of SLM Ti-6Al-4V Alloy in accordance with AMS 4928 standards
Treatment of Waste Water from Organic Fraction Incineration of Municipal Soli...

Recently uploaded (20)

PDF
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
PDF
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
PPTX
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
PDF
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
PDF
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
PDF
Arduino robotics embedded978-1-4302-3184-4.pdf
PPTX
Construction Project Organization Group 2.pptx
PDF
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
PPTX
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
PDF
composite construction of structures.pdf
PPTX
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
PDF
PPT on Performance Review to get promotions
PDF
Embodied AI: Ushering in the Next Era of Intelligent Systems
PPTX
web development for engineering and engineering
PPTX
additive manufacturing of ss316l using mig welding
PPTX
UNIT 4 Total Quality Management .pptx
PPTX
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
PPTX
CYBER-CRIMES AND SECURITY A guide to understanding
PPTX
bas. eng. economics group 4 presentation 1.pptx
DOCX
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
Arduino robotics embedded978-1-4302-3184-4.pdf
Construction Project Organization Group 2.pptx
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
composite construction of structures.pdf
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
PPT on Performance Review to get promotions
Embodied AI: Ushering in the Next Era of Intelligent Systems
web development for engineering and engineering
additive manufacturing of ss316l using mig welding
UNIT 4 Total Quality Management .pptx
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
CYBER-CRIMES AND SECURITY A guide to understanding
bas. eng. economics group 4 presentation 1.pptx
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx

Vehicle Tracking and Remote Data Acquisition System using Very High Frequency operated devices

  • 1. International Journal of Engineering Research and Development e-ISSN: 2278-067X, p-ISSN: 2278-800X, www.ijerd.com Volume 11, Issue 05 (May 2015), PP.64-68 64 Vehicle Tracking and Remote Data Acquisition System using Very High Frequency operated devices Rupesh Punjani1 , Janvi Adiecha2 , R.K. Dave3 , Raju Adiecha4 , Manoj Pandya5 1 MJRP University, Rajasthan, India 2 Atimya College, Rajkot, India 3 Head, Govt. Initiatives, ITRA, New Delhi 4 Rajen Electronics, Rajkot, India 5 Project Manager, BISAG, Gandhinagar, India. Abstract:- Amateur radio or Ham radio [1] is a provider of supplemental communications for disaster relief and disaster control agencies. Amateur radio can cover gamut of areas where conventional system fails to function. For example, existing vehicle tracking system works on GSM or GPRS based network which cannot function in remote geographical areas. This leads to construct alternate network using Amateur radio to establish audio communication and support in data acquisition. Keywords:- VHF, Vehicle Tracking, GPS, Amateur Radio, HAM Radio I. INTRODUCTION A vehicle tracking system [5] collects data of objects like latitude, longitude, altitude etc. for a comprehensive picture of vehicle locations. Modern vehicle tracking systems commonly use Global positioning System (GPS) or GLObal NAvigation Satellite System (GLONASS) technology for locating the vehicle. Vehicle tracking system uses Global System for Mobile Communications (GSM) [10] or General packet radio service (GPRS) [8] to transmit the acquired information to the central server. It works fine in urban region where the GSM network coverage is rich. However, there are certain outskirts areas which face poor GSM network coverage or some regions like coastal and boarder area suffer from unavailability of coverage. Boarder areas are geographically isolated area and it is most sensitive terrain of the nation. Hence it is necessary to establish communication in this region. II. RATIONALE Use of Amateur Radio [1] that operates on VHF is used in the proposed system; helps to track the vehicles in remote places like desert, small interior villages where the GSM network is not available. Proposed model will also be useful in marine region. The GPS receiver is set to send location information to the server after every 10 seconds. Google maps services are used as Application programming Interface for web map services (WMS). System can locate the vehicle location on map and stores the route of the vehicle in the form of vertex points array in database which is useful to guide the vehicle when it goes astray. The system indicates with red colour and BEEP tone is generated by machine to draw the attention of the operator of the system. Once observed, operator can communicate with VHF sets and can guide with voice. The system is designed to perform in any kind of weather. Hence it can cover remote areas where GSM network based communication is not established. Fig. 1 Block Diagram: Vehicle Tracking System using VHF
  • 2. Vehicle Tracking and Remote Data Acquisition System using Very High Frequency operated devices 65 Figure 1 shows that vehicle tracker gets its position using GPS by communicating satellites. This information is transmitted using Very High Frequency (VHF) [12] transceiver and sent to the workstation where VHF receiver gets this information and translated by database engine. In this system, Microsoft Access is used as a Relational Database Management System (RDBMS). Application manager can visualize this information on Google map using spatial dimension and Google API. A. ELEMENTS OF THE SYSTEM Transducer: A device which converts one form of energy into another form of energy. The data collected by sensors are attributed into meaningful information that can be interpreted and disseminated for further analysis. RS232 Converter: It is a standard for serial communication transmission of data. It formally defines the signals connecting between a computer terminal and a modem [7]. Radio Modem: Radio modems transfer data wirelessly across a range of up to tens of kilometres. Using radio modems is a modern way to create Private Radio Networks (PRN) [9]. B. FUNCTIONALITY MECHANISM: Send Data: private static void SendSampleData() { // Instantiate the communication // port with some basic settings SerialPort port = new SerialPort( "COM1", 9600, Parity.None, 8, StopBits.One); // Open the port for communications port.Open(); // Write a string port.Write("Communication Established"); // Write a set of bytes port.Write(new byte[] {0x0A, 0xE2, 0xFF}, 0, 3); // Close the port port.Close(); } Fig 2: Schematic: Send & Receive Data for Vehicle Tracker
  • 3. Vehicle Tracking and Remote Data Acquisition System using Very High Frequency operated devices 66 Receive Data from Port private SerialPortProgram() { Console.WriteLine("Incoming Data:"); // Attach a method to be called when there // is data waiting in the port's buffer port.DataReceived += new SerialDataReceivedEventHandler(port_DataReceived); // Begin communications port.Open(); // Enter an application loop to keep this thread alive Application.Run(); } private void port_DataReceived(object sender, SerialDataReceivedEventArgs e) { // Show all the incoming data in the port's buffer Console.WriteLine(port.ReadExisting()); } Sending Files Syntax for sending files in binary format is given here through the serial port. Of course, these are the bare essentials and as always, you should check to make sure the port is open first. private static void SendTextFile( SerialPort port, string FileName) { port.Write(File.OpenText(FileName).ReadToEnd()); } III. SYSTEM MECHANISM Fig. 3: Interface while receiving data
  • 4. Vehicle Tracking and Remote Data Acquisition System using Very High Frequency operated devices 67 As shown in the above figure 3, when radio modem sends data, the label control is changed to GREEN color showing ON state. Fig 4: Application form after receiving data As shown in the above figure 4, when application finishes receiving data, the label control is changed to RED colour showing OFF state. Once data is received by the system, it will project to Google map using Google API. A. Advantage of the proposed system: Refusal to Interference: Radio interference does not affect VHF nearly as much as HF. This proves especially beneficial for use in vehicles. Many police forces switched to VHF in the past, due to interference problems on HF, according to the Institute for Criminal Justice Education. The ICJE also indicates that VHF offers advantages in rural areas because it can more easily transmit long distances, when compared to UHF (Ultra High Frequency). However, it does not transmit so far that distant stations interfere with each other at night. Superior Sound Reproduction: VHF offers much better sound quality than HF bands like AM, shortwave and CB (Citizen's Band). This explains why broadcasters use it to transmit high-quality audio on FM radio and some television stations. It boosts intelligibility, which prevents misunderstandings and reduces the need to repeat oneself. The sound quality usually remains uniform at all hours. Use of easy and economical Antenna: VHF receivers generally use the least expensive, most portable antennas. For example, many FM and weather-band radios receive broadcasts with simple telescopic antennas that cost little to replace and retract into the receivers when not in use, among other advantages. UHF and HF receivers often use loops, long wires and other larger, more costly antennas. A radio operator can utilize the same VHF antenna for two-way communications and reception of the weather band. A combined radio/television may use the same antenna to pick up VHF TV stations and FM radio, but will require separate antennas for UHF and AM. Marine Advantages: VHF radios provide several important advantages for use on boats and ships. They offer much more effective communication in marine emergencies than CB or FRS (Family Radio Service). Coast Guard units do not monitor the CB emergency channel and FRS doesn't supply an emergency channel, according to the Boat Owners Association of the United States. VHF proves more popular among boat operators than other bands, so it's easier to communicate with a wide range of boaters.
  • 5. Vehicle Tracking and Remote Data Acquisition System using Very High Frequency operated devices 68 IV. CONCLUSIONS Proposed system is very useful in marine, army and in disaster mitigation. It is necessary to explore the use of amateur radio as a provider of supplemental communications for disaster relief and disaster control agencies [1] [4]. Amateur radio operators, or hams, are skilled communicators willing and able to volunteer their time and equipment for emergencies. They also offer their skills and additional frequencies; thus, it makes sense to plan for and include them in disaster training and preparation and to use them when disaster strikes. Hams can work together with agencies to provide more effective communications during a disaster. FUTURE SCOPE There is always a scope for enhancements in any system, especially in the world of computers. The “Vehicle Tracking and Data Acquisition System” software and hardware can also be modified according to the future requirements like monitoring fuel levels, temperature, water level etc. That may lead to develop a comprehensive fleet management system for remote area like marine. ACKNOWLEDGMENT Authors would like to thanks T. P. Singh, Director, Bhaskaracharya Institute for Space Applications & Geo- informatics (Gandhinagar) and Dr. J. G. Pandya for constant encouragement to our research work. REFERENCES [1]. “HAM Radio”, Internet: http://www.giar.org/index.php?file=webpages/webpage&id=what-is-ham- radio [5 May 2015] [2]. Lynn Edwards, 1994, The utilization of amateur radio in disaster communications [3]. “Role of Amateur Radio in Development Communication of Bangladesh”, Internet: http://www.cimap.vt.edu/files/internet/Impression/ICT.pdf. [5 May 2015] [4]. Ferguson, Richard, 1992, Packet Radio and Emergency Communications: Public Safety Enters the Digital World. 73 Amateur Radio Today (October):42-45. [5]. “Amateur Radio”, Internet:http://en.wikipedia.org/wiki/Amateur_radio [5 May 2015] [6]. “Vehicle Tracking System”, Internet: http://en.wikipedia.org/wiki/Vehicle_tracking_system [10 May 2015] [7]. “RS-232”, Internet: http://en.wikipedia.org/wiki/RS-232 [10 May 2015] [8]. “General Packet Radio Service”, Internet: http://en.wikipedia.org/wiki/General_Packet_Radio_Service [5 May 2015] [9]. (2015) Radio Modem.[Online]. Available: http://en.wikipedia.org/wiki/Radio_modem [10]. (2015) GSM. [Online]. Available: http://en.wikipedia.org/wiki/GSM [11]. (2015) The Advantage of VHF. [Online]. Available: http://www.ehow.com/info_8152526_advantages- vhf.html [12]. (2015) Very High Frequency. [Online]. Available: http://en.wikipedia.org/wiki/Very_high_frequency