RVMX GPS Toolの使い方

本 NET Toolは、.NET開発用ソフト部品として作られています。
========================================================
User登録(RVMX_GPSl_userreg.exeを実行)詳細は
    

       

1.仕様

対応フォーマット(GPS)
  GARMIN社製GPS(NMEAとRTCM/TEXT)
  JRCフォーマット
  その他は別途ご相談に応じます

対応インターフェイス
  
RS232C 
  その他は別途ご相談に応じます

ソフト仕様
namespace
  RVMX_GPS
class
  GPS
Property
  Format  JRC & NMEA
  Inertia  bool  慣性
  Averge  bool 平均化
   

Event
  GPSReceiveEventHandler   GPS_Received
 

Metod
   コンストラクタ
   GPS(******)
    GPS(******,string Port)  port=com->RS232C  Default

  ini_path(Path)  Path->環境保存Path
  Start() = bool     開始
  Stop() = bool     停止
  Setting()    RS232C設定
  
EventArgs
   イベントにより渡されるデータ
     GPSReceiveEventArgs:EventArgs
     public int Sate;
      
public float Laitude;
     public float Longitude;
     public string StLatitude;
     public string StLongitude;
     public float Speed;
     public float Diection;
     public float Height;
     public string date;
     public string
time;



=========================================================
2.使用例
インスタンスの作成
  RVMX_GPS.GPS gps=new RVMX_GPS.GPS("******"); ****はご入金後ご連絡いたします、
                         ****を設定していないとしようモードで動作します。


初期化
  Format="NMEA";
  Inertia=true;
    Averge=true;

開始
  Start();
  開始後イベントが発生し上記データ(eventargs)より取り出せます
  但し、GPS(フォーマット)によりデータが無い項目もあります

イベント処理例(緯度経度をTextBoxへ表示)
  
  private void GPS_Received(object sender,RVMX_GPS.GPS.GPSReceiveEventArgs e)
  {
    textBox1.Text=e.StLatitude;  
    textBox2.Text=e.StLongitude;
  }

停止
  Stop() 


=============================================================

 3.価格  Online Shopを参照願います

        組み込み後の配布にはライセンスは必要有りません。

 

(有)RVMX

提供ソフトのQ&A
(有)RVMX