Skip to content
GEOFIX NYA WEBBSHOP ÄR HÄR - klicka här för att få information om hur du som redan är Geofix kund kommer åt ditt webbkonto
GEOFIX NYA WEBBSHOP ÄR HÄR - klicka här för att få information om hur du som redan är Geofix kund kommer åt ditt webbkonto

L5 M-Pro

SKU 3131001
Original price €9.173,95 - Original price €9.173,95
Original price €9.173,95
€9.173,95
€9.173,95 - €9.173,95
Current price €9.173,95

Toppmodellen L5 M-Pro har allt som krävs av en modern GNSS-mottagare

Standard shipping

Approximately 7-10 days delivery time

L5 M-Pro complete GNSS equipment

The top model L5 M-Pro has everything a modern GNSS receiver requires. Use it as a rover or set it up as a base station. With both 4G and radio modems, you can receive corrections either via SWEPOS Network RTK service or from a local base station. Under the hood, it is equipped with the latest generation GNSS card from Hemisphere that will not disappoint you.

Full-featured and calibration-free IMU tilt allows you to measure points that were previously impossible to access in a smooth way. It also gives you the opportunity to keep a better eye on your surroundings instead of staring at the level - detecting potential hazards in time. In addition, there are good opportunities to increase the efficiency of your surveying sessions by avoiding the plumb-line moment that can otherwise easily slow down the pace.

Dual batteries mean you never have to shut down your equipment to change batteries. For marathon shifts, simply bring a spare and change on the go to avoid loss of production. IP68 means you can measure all year round, even in the most extreme conditions.

A professional receiver at the price of an entry-level model. All conceivable functionality is included.

  • Calibration-free IMU tilt!
  • GPS, GLONASS, GALILEO, BEIDOU satellite systems are included in the price
  • Both 4G and UHF modems
  • IP68 protection rating

Datasheet M-Pro

The price refers to complete measuring equipment with Field Plate, Surpad measuring program, 2 meter telescopic carbon fiber pole, computer holder and pole mount.

Support agreement

Support agreement included for the first year. It includes free telephone/remote support, access to future software versions, Internet connection with 2GB data traffic/month.

If you purchase a support agreement starting in year 2, it will then cost SEK 4,000 per year.

Sweposa subscription

To achieve centimeter accuracy with the GNSS receiver, a subscription to SWEPOS network RTK service is required. We rent these out for 9000 SEK/year.

Technical specifications

GNSS
Signals: GPS: L1CA, L1P, L1C, L2P, L2C, L5
GLONASS: G1, G2, G3, P1, P2
GALILEO: E1BC, E5a, E5b, E6BC
BDS: B1i, B2i, B3i, B10C, B2A,
B2B, ACEBOC
ZSS: L1CA, L2C, L5, L1C, LEX
IRNSS: L5
SBAS: 3-channel parallel tracking
Atlas
Channels: 800+

ACCURACY
Static measurement: H 2.5 mm ± 1 ppm
V 5 mm ± 1 ppm
RTK: H 8 mm ± 1 ppm
V 15 mm ± 1 ppm
Tilt: 2 cm (at tilt angle 60°)
Atlas H10: 8cm
Initialization: 8s with 99.9% reliability

SYSTEM
Operating system: Linux
Storage: 8GB MicroSD
Wi-Fi: 802.11 b/g/n
Bluetooth: V2.1+EDR/V4.1 Dual Cl. 2
E-Bubble: Have support for it
Tilt: IMU, 400 Hz refresh rate
Sound: Support for TTS Audio Broadcasting

COMMUNICATION
UHF: Built-in TRx radio with adjustable output power: 1W/2W.
Frequency range: 410-470MHz
Protocol: Support for GeoTalk, SATEL, PCC-GMSK, TrimTalk,
TrimMark, South, Hi Target
Network: 4G modem compatible with 2/3/4G networks

PHYSICAL PROPERTIES
Contacts: 1x TNC (UHF Antenna), 1x 5PIN (Power+RS232), 1x 7PIN (USB+RS232)
Buttons: 1x Power button
Diodes: 4x LEDs
Size: Ø156mm x H76mm
Weight: 1.2 kg with two batteries

CURRENT
Battery: 2 pcs 7.2V, 24.5Wh, Hot swap
Battery life: Static: 15 hrs RTK: 12 hrs
External power Connects via 5PIN connector
Voltage: DC 9-18V

ENVIRONMENT
Temperature: Operation: -45°C to +75°C
Storage: -55°C to +85°C
IP rating: IP68
CASE: Withstands drops from 2 m onto a hard surface mounted on a plumb line

Sökord: L5 M-Pro, IMU-tilt, GNSS, 4G, Radiomodem, IP68

*/ (function () { window.dataLayer = window.dataLayer || []; const CONFIG = { CURRENCY: "SEK", // Lägg gärna till/justera selektorer om ditt tema använder andra element CHECKOUT_BUTTON_SELECTORS: [ 'button[name="checkout"]', 'input[name="checkout"]', 'form[action*="/checkout"] [type="submit"]', 'a[href*="/checkout"]' ] }; function fetchCart() { return fetch('/cart.js', { credentials: 'same-origin' }) .then(r => r.json()) .catch(() => null); } function mapItems(cart) { if (!cart || !Array.isArray(cart.items)) return []; return cart.items.map((it, idx) => ({ item_id: String(it.variant_id || it.id || it.sku || ''), item_name: it.product_title || it.title || '', item_brand: 'Geofix AB', item_variant: it.variant_title || '', price: (typeof it.final_price === 'number' ? it.final_price : it.price || 0) / 100, quantity: it.quantity || 1, index: idx + 1 })); } function totalValue(items) { return items.reduce((s, i) => s + (Number(i.price) || 0) * (Number(i.quantity) || 0), 0); } function isCheckoutClick(target) { if (!target) return false; // träff på definierade selektorer for (const sel of CONFIG.CHECKOUT_BUTTON_SELECTORS) { if (target.closest(sel)) return true; } // fallback: formulär som postar till /checkout const form = target.closest('form'); if (form && /\/checkout/i.test(form.action || '')) return true; return false; } // Lyssna brett i capture-fasen så vi hinner hämta vagnen innan redirect document.addEventListener('click', function (e) { const el = e.target; if (!isCheckoutClick(el)) return; // Hämta /cart.js och pusha begin_checkout snabbt innan sidan lämnas fetchCart().then(cart => { const items = mapItems(cart); const value = totalValue(items); window.dataLayer.push({ event: 'begin_checkout', ecommerce: { currency: CONFIG.CURRENCY, value: value, items: items } }); }); // Ingen preventDefault – låt redirect ske normalt }, true); // Extra säkerhet: lyssna även på submit (t.ex. enter-tryck i formulär) document.addEventListener('submit', function (e) { const form = e.target; if (!form) return; if (!/\/checkout/i.test(form.action || '')) return; fetchCart().then(cart => { const items = mapItems(cart); const value = totalValue(items); window.dataLayer.push({ event: 'begin_checkout', ecommerce: { currency: CONFIG.CURRENCY, value: value, items: items } }); }); }, true); })();