ntrip-core 0.2.0

An async NTRIP client library for Rust with v1/v2 protocol support, TLS, and sourcetable discovery
Documentation
# ntrip-core Test Credentials Template
#
# Copy this file to credentials.env and fill in your credentials.
# The credentials.env file is gitignored and will not be committed.
#
# Usage:
#   cp scripts/credentials.env.template scripts/credentials.env
#   # Edit credentials.env with your values
#   ./scripts/test_suite.sh --connect

# =============================================================================
# RTK2go (rtk2go.com)
# - Free community RTK service
# - Username: Must be a valid email address
# - Password: Must be "none" (literal string)
# - See: http://rtk2go.com/
# =============================================================================
export NTRIP_RTK2GO_USER="your.email@example.com"
export NTRIP_RTK2GO_PASS="none"

# =============================================================================
# AUSCORS (ntrip.data.gnss.ga.gov.au)
# - Australian government GNSS network
# - Requires registration at https://gnss.ga.gov.au/
# - Uses HTTPS on port 443
# =============================================================================
export NTRIP_AUSCORS_USER=""
export NTRIP_AUSCORS_PASS=""

# =============================================================================
# Emlid Caster (optional - for local base station)
# =============================================================================
export NTRIP_EMLID_HOST=""
export NTRIP_EMLID_PORT="2101"
export NTRIP_EMLID_MOUNT=""
export NTRIP_EMLID_USER=""
export NTRIP_EMLID_PASS=""

# =============================================================================
# Test Locations (optional overrides)
# Default locations are set for each region in the test suite
# =============================================================================
# export TEST_LAT_AU="-27.47"
# export TEST_LON_AU="153.02"
# export TEST_LAT_EU="52.52"
# export TEST_LON_EU="13.41"
# export TEST_LAT_NA="40.71"
# export TEST_LON_NA="-74.00"

# =============================================================================
# Stress Test Configuration
# =============================================================================
# export STRESS_TEST_CYCLES="5"