Changeset 7177 in ntrip for trunk/BNC/src/bnchelp.html
- Timestamp:
- Aug 10, 2015, 3:13:35 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bnchelp.html
r7167 r7177 436 436 3.4.8. <a href=#rnxvers2>Version 2</a><br> 437 437 3.4.9. <a href=#rnxvers3>Version 3</a><br> 438 3.4.10. <a href=#rnxvers3File>Version 3 File Names</a><br> 438 439 3.5. <a href=#ephemeris>RINEX Ephemeris</a><br> 439 440 3.5.1. <a href=#ephdir>Directory</a><br> … … 441 442 3.5.3. <a href=#ephport>Port</a><br> 442 443 3.5.4. <a href=#ephvers>Version</a><br> 444 3.5.5. <a href=#ephversFile>Version 3 File Names</a><br> 443 445 3.6. <a href=#reqc>RINEX Editing & QC</a><br> 444 446 3.6.1 <a href=#reqcact>Action</a><br> … … 756 758 <p><a name="rnxname"><h4>3.4.1 RINEX File Names</h4></p> 757 759 <p> 758 RINEX file names in BNC follow the convention of RINEX Version 2.11. So far BNC does not support extended file names as defined in RINEX Version 3.02. File names are derived by BNC from the first 4 characters of the corresponding stream's mountpoint (4Char Station ID). For example, data from mountpoints FRANKFURT and WETTZELL will have hourly RINEX Observation files named</p> 759 <p> 760 FRAN{ddd}{h}.{yy}O<br> 760 The default for RINEX file names in BNC follows the convention of RINEX Version 2. However, the software provides options to alternatively follow the file name convention of RINEX Version 3. RINEX Version 2 file names are derived by BNC from the first 4 characters of the corresponding stream's mountpoint (4Char Station ID). For example, data from mountpoints FRANKFURT and WETTZELL will have hourly RINEX Observation files named</p> 761 762 <pre> 763 FRAN{ddd}{h}.{yy}O 761 764 WETT{ddd}{h}.{yy}O 762 </p >765 </pre> 763 766 <p> 764 767 where 'ddd' is the day of year, 'h' is a letter which corresponds to an hour long UTC time block and 'yy' is the year. 765 768 </p> 766 769 <p> 767 If there is more than one stream with identical 4Char Station ID (same first 4 characters for their mountpoints), the mountpoint strings are split into two sub-strings and both become part of the RINEX file name. For example, when simultaneously retrieving data from mountpoints FRANKFURT and FRANCE, their hourly RINEX Observation files are named as</p>768 <p >769 FRAN{ddd}{h}_KFURT.{yy}O <br>770 FRAN{ddd}{h}_CE.{yy}O .771 </p >772 <p> 773 If several streams show exactly the same mountpoint name (example: BRUS0 from <u>www.euref-ip.net</u> and BRUS0 from <u>www.igs-ip.net</u>), BNC adds an integer number to the file name leading i.e. to hourly RINEX Observation files like</p>774 <p >775 BRUS{ddd}{h}_0.{yy}O <br>776 BRUS{ddd}{h}_1.{yy}O .777 </p >778 <p> 779 Note that RINEX file names for all intervals less than 1 hour follow the file name convention for 15 minutes RINEXObservation files i.e.</p>780 <p >770 If there is more than one stream with identical 4Char Station ID (same first 4 characters for their mountpoints), the mountpoint strings are split into two sub-strings and both become part of the RINEX file name. For example, when simultaneously retrieving data from mountpoints FRANKFURT and FRANCE, their hourly RINEX Version 2 Observation files are named as</p> 771 <pre> 772 FRAN{ddd}{h}_KFURT.{yy}O 773 FRAN{ddd}{h}_CE.{yy}O 774 </pre> 775 <p> 776 If several streams show exactly the same mountpoint name (example: BRUS0 from <u>www.euref-ip.net</u> and BRUS0 from <u>www.igs-ip.net</u>), BNC adds an integer number to the file name leading i.e. to hourly RINEX Version 2 Observation files like</p> 777 <pre> 778 BRUS{ddd}{h}_0.{yy}O 779 BRUS{ddd}{h}_1.{yy}O 780 </pre> 781 <p> 782 Note that RINEX Version 2 file names for all intervals less than 1 hour follow the file name convention for 15 minutes RINEX Version 2 Observation files i.e.</p> 783 <pre> 781 784 FRAN{ddd}{h}{mm}.{yy}O 782 </p >785 </pre> 783 786 <p> 784 787 where 'mm' is the starting minute within the hour. 785 788 </p> 786 789 790 <p> 791 In case of RINEX Version 3 file names, the following convention holds: 792 793 <p> 794 <table> 795 <tr><td><b>Parameter</b></td><td><b> # Char.</b></td><td><b> Meaning</b></td></tr> 796 <tr><td>Name</td><td> 9</td><td> Site, station and country code</td></tr> 797 <tr><td>S</td><td> 1</td><td> Data source</td></tr> 798 <tr><td>Start Time</td><td> 11</td><td> YYYYDDDHHMM</td></tr> 799 <tr><td>Period</td><td> 3</td><td> File period</td></tr> 800 <tr><td>Obs. Freq.</td><td> 3</td><td> Observation frequency</td></tr> 801 <tr><td>Content</td><td> 2</td><td> Content type</td></tr> 802 <tr><td>Format</td><td> 3</td><td> File format</td></tr> 803 <tr><td>Compression</td><td> 2-3</td><td> Compression method (optional)</td></tr> 804 </table> 805 </p> 806 <p> 807 Example for Mixed RINEX Version 3 GNSS observation file name, file containing 1 hour of data, one observation every second, 'MO' standing for 'Mixed Observations': 808 <pre> 809 ALGO00CAN_R_20121601000_01H_01S_MO.rnx 810 </pre> 811 </p> 812 <p> 813 Note that file name details are produced from the streams mountpoint as well as corresponding BNC settings and meta data from the Ntrip Broadcaster source-table. 814 </p> 815 787 816 <p><a name="rnxdir"><h4>3.4.2 Directory - optional</h4></p> 788 817 <p> … … 802 831 <p><a name="rnxskl"><h4>3.4.5 Skeleton Extension - optional</h4></p> 803 832 <p> 804 Whenever BNC starts generating RINEX Observation files (and then once every day at midnight), it first tries to retrieve information needed for RINEX headers from so-called public RINEX header skeleton files which are derived from sitelogs. A HTTP or HTTPS link to a directory containing these skeleton files may be available through data field number 7 of the affected NET record in the source-table. See <u>http://www.epncb.oma.be:80/stations/log/skl/brus.skl</u> for an example of a public RINEX header skeleton file for EPN station Brussels. Note that the download of RINEX skeleton files from HTTPS websites requires the exchange of client and/or server certificates. Clarify 'SSL' options offered inpanel 'Network' for details.833 Whenever BNC starts generating RINEX Observation files (and then once every day at midnight), it first tries to retrieve information needed for RINEX headers from so-called public RINEX header skeleton files which are derived from sitelogs. A HTTP or HTTPS link to a directory containing these skeleton files may be available through data field number 7 of the affected NET record in the source-table. See <u>http://www.epncb.oma.be:80/stations/log/skl/brus.skl</u> for an example of a public RINEX header skeleton file for EPN station Brussels. Note that the download of RINEX skeleton files from HTTPS websites requires the exchange of client and/or server certificates. Clarify 'SSL' options offered through panel 'Network' for details. 805 834 </p> 806 835 <p> … … 808 837 </p> 809 838 <p> 810 Examples for personal skeleton file name convention: RINEX Observation files for mountpoints WETTZELL, FRANKFURT and FRANCE (same 4Char Station ID), BRUS0 from <u>www.euref-ip.net</u> and BRUS0 from <u>www.igs-ip.net</u> (same 4Char Station ID, identical mountpoint stings) would accept personal skeleton files named</p> 811 < p>812 WETT.skl<br>813 FRAN_KFURT.skl<br> 814 FRAN _CE.skl<br>815 BRUS_0.skl<br> 816 BRUS_1.skl</p>839 When producing RINEX Observation files from mountpoints (examples) 'BRUS0', 'FRANKFURT'; and 'WETTZELL' the following skeleton file names would be accepted 840 </p> 841 <pre> 842 BRUS.skl 843 FRAN.skl 844 WETT.skl 845 </pre> 817 846 <p> 818 847 if 'Skeleton extension' is set to 'skl'. … … 835 864 <br>- ANTENNA: DELTA H/E/N 836 865 <br>- WAVELENGTH FACT L1/2 (RINEX Version 2)</li> 837 <br>- SYS / # / OBS TYPES ( RINEX Version 3, will be ignored when writing Version 2 files)</li>866 <br>- SYS / # / OBS TYPES (for RINEX Version 3 files, will be ignored when writing Version 2 files)</li> 838 867 <li>They may contain any other optional complete header record as defined in the RINEX documentation.</li> 839 868 <li>They should also contain an empty header records of type … … 927 956 </p> 928 957 958 <p><a name="rnxvers3File"><h4>3.4.10 Version 3 File Names - optional</h4></p> 959 <p> 960 Tick check box 'Version 3 file names' to let BNC create so-called extended file names following the RINEX Version 3 standard. 961 </p> 962 <p>Default is an empty check box, meaning to still use file names following the RINEX Version 2 standard although the file contents is saved in RINEX Version 3 format. 963 </p> 964 929 965 <p><a name="ephemeris"><h4>3.5. RINEX Ephemeris</h4></p> 930 966 <p> 931 Broadcast Ephemeris can be saved as RINEX Navigation files when received via RTCM Version 3 e.g. as message types 1019 (GPS) or 1020 (GLONASS) or 1044 (QZSS) or 1043 (SBAS) or 1045 and 1046 (Galileo) or 63 (tentative, BDS/BeiDou). The file name convention follows the details given in section 'RINEX File Names' except that the first four characters are 'BRDC' and the last character is 932 </p> 933 <ul> 934 <li>'N' or 'G' for GPS or GLONASS ephemeris in two separate RINEX Version 2.11 Navigation files, or</li> 935 <li>'P' for GPS plus GLONASS, Galileo, SBAS, QZSS, and BDS ephemeris, saved together in one RINEX Version 3 Navigation file. 936 </ul> 967 Broadcast Ephemeris can be saved as RINEX Navigation files when received via RTCM Version 3 e.g. as message types 1019 (GPS) or 1020 (GLONASS) or 1044 (QZSS) or 1043 (SBAS) or 1045 and 1046 (Galileo) or 63 (tentative, BDS/BeiDou). The file name convention follows the details given in section 'RINEX File Names' except that the first four characters are 'BRDC'. 968 </p> 969 <p> 970 For RINEX Version 2 Navigation files the last character is 'N' or 'G' for GPS or GLONASS ephemeris in two separate files. 971 </p> 972 <p> 973 Regarding RINEX Version 3 you will find all ephemeris data for GPS, GLONASS, Galileo, SBAS, QZSS, and BDS saved together in one Navigation file. 974 </p> 975 <p> 976 The following is an example for a RINEX Version 3 Navigation file name. The file contains one days data. 'MN' stands for 'Multi Constellation Navigation' data. 977 <pre> 978 BRDC00DEU_S_20121600000_01D_MN.rnx 979 </pre> 980 </p> 937 981 938 982 <p> … … 964 1008 <p> 965 1009 Note that this does not concern the Broadcast Ephemeris output through IP port which is always in RINEX Version 3 format. 1010 </p> 1011 1012 <p><a name="ephversFile"><h4>3.5.5 Version 3 File Names - optional</h4></p> 1013 <p> 1014 Tick check box 'Version 3 file names' to let BNC create so-called extended file names following the RINEX Version 3 standard. 1015 </p> 1016 <p>Default is an empty check box, meaning to still use file names following the RINEX Version 2 standard although the file contents is saved in RINEX Version 3 format. 966 1017 </p> 967 1018
Note:
See TracChangeset
for help on using the changeset viewer.