Artec Jet SLAM LiDAR 3D Scanner
/* ===== CSS VARIABLES — matching 3DMakerWorld's clean white/blue theme ===== */ :root { --primary: #1488C4; --primary-dark: #0f6d9e; --accent: #1488C4; --gold: #d4a017; --gold-lig ht: #fef3c7; --text-primary: #0d2436; --text-secondary: #3d566e; --text-muted: #718096; --bg-white: #ffffff; --bg-light: #f8fafc; --bg-blue-tint: #eff6ff; --border: #e2e8f0; --border-strong: #cbd5e0; --success: #059669; --radius: 10px; --shadow-sm: 0 1px 3px rgba(0,0,0,0.08); --shadow-md: 0 4px 16px rgba(0,0,0,0.10); --font-body: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif; } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { font-size: 16px; scroll-behavior: smooth; } body { font-family: var(--font-body); color: var(--text-primary); background: var(--bg-white); line-height: 1.6; } /* ===== LAYOUT ===== */ .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .section { padding: 60px 0; } .section-light { background: var(--bg-light); } .section-blue { background: var(--bg-blue-tint); } /* ===== TYPOGRAPHY ===== */ h1 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 700; line-height: 1.2; color: var(--text-primary); } h2 { font-size: 1.65rem; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; } h3 { font-size: 1.1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; } p { color: var(--text-secondary); margin-bottom: 12px; } /* ===== BREADCRUMB ===== */ /* ===== GOLD RESELLER BADGE ===== */ .reseller-banner { background: linear-gradient(90deg, #0d3b5e 0%, #1488C4 100%); color: #fff; text-align: center; padding: 12px 20px; font-size: 0.92rem; font-weight: 600; letter-spacing: 0.3px; max-width: 1200px; margin: 0 auto; border-radius: 10px; } .reseller-banner .star { color: #fff; margin: 0 2px; } /* ===== PRODUCT HERO ===== */ .product-hero { padding: 24px 0 34px; } .product-intro { display: block; } .product-intro .product-subtitle { font-size: 1.08rem; max-width: 60em; } /* Product image */ /* Product details */ .product-subtitle { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 20px; } /* Key stats */ .key-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 20px 0 26px; } .stat-card { background: #f2f9fe; border: 1px solid #cfe9f8; border-radius: 10px; padding: 14px 12px; text-align: center; } .stat-value { font-size: 1.5rem; font-weight: 800; color: var(--primary); line-height: 1.1; } .stat-label { font-size: 0.82rem; color: #3d566e; margin-top: 3px; } /* CTA buttons */ .cta-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; } .btn-primary { display: block; background: var(--primary); color: #fff; text-align: center; padding: 14px 20px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 1rem; transition: background 0.2s; border: none; cursor: pointer; } .btn-primary:hover { background: var(--primary-dark); } .btn-secondary { display: block; background: var(--bg-white); color: var(--primary); text-align: center; padding: 13px 20px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 1rem; border: 2px solid var(--primary); border-bottom: 2px solid var(--primary) !important; transition: all 0.2s; } .btn-secondary:hover { background: var(--bg-blue-tint); } /* Trust signals */ .trust-signals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 20px; } @media (max-width: 768px) { .trust-signals { grid-template-columns: 1fr 1fr; } } .trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-secondary); } .trust-icon { font-size: 1rem; width: 20px; text-align: center; flex-shrink: 0; } /* ===== OVERVIEW STATS STRIP ===== */ .stats-strip { padding: 26px 0 0; } .stats-strip-card { background: var(--primary); color: #fff; border-radius: 12px; padding: 32px 28px; } .stats-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; } @media (max-width: 640px) { .stats-strip-grid { grid-template-columns: repeat(2, 1fr); } } .strip-stat-value { font-size: 1.8rem; font-weight: 700; } .strip-stat-label { font-size: 0.82rem; opacity: 0.85; margin-top: 4px; } /* ===== ABOUT SECTION ===== */ .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; } @media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } } .about-grid img { width: 100%; border-radius: 12px; display: block; } /* ===== FEATURES GRID ===== */ .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; } @media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 580px) { .features-grid { grid-template-columns: 1fr; } } .feature-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 12px; padding: 24px; transition: box-shadow 0.2s; } .feature-card:hover { box-shadow: var(--shadow-md); } .feature-icon { font-size: 1.8rem; margin-bottom: 12px; } /* ===== DEPLOY MODES ===== */ .deploy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; } @media (max-width: 900px) { .deploy-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 480px) { .deploy-grid { grid-template-columns: 1fr 1fr; } } .deploy-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; text-align: center; } .deploy-card img { width: 100%; height: 140px; object-fit: cover; display: block; } .deploy-label { padding: 10px 12px; font-size: 0.85rem; font-weight: 600; color: var(--text-primary); } /* ===== ENVIRONMENTS ===== */ .env-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; } @media (max-width: 800px) { .env-grid { grid-template-columns: repeat(3, 1fr); } } @media (max-width: 480px) { .env-grid { grid-template-columns: repeat(2, 1fr); } } .env-card { border-radius: 10px; overflow: hidden; position: relative; } .env-card img { width: 100%; height: 120px; object-fit: cover; display: block; filter: brightness(0.85); } .env-label { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,0.6); color: #fff; font-size: 0.75rem; font-weight: 600; text-align: center; padding: 6px 4px; } /* ===== SPECS TABLE ===== */ .specs-section { background: var(--bg-white); } .specs-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 24px; overflow-x: auto; } .specs-tab { padding: 10px 22px; font-size: 0.9rem; font-weight: 600; color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; white-space: nowrap; background: none; border-top: none; border-left: none; border-right: none; } .specs-tab.active { color: var(--primary); border-bottom-color: var(--primary); } .specs-panel { display: none; } .specs-panel.active { display: block; } .specs-table { width: 100%; border-collapse: collapse; } .specs-table tr:nth-child(even) { background: var(--bg-light); } .specs-table td { padding: 11px 16px; font-size: 0.9rem; border-bottom: 1px solid var(--border); } .specs-table td:first-child { color: var(--text-muted); font-weight: 500; width: 55%; } .specs-table td:last-child { color: var(--text-primary); font-weight: 600; } /* ===== RESELLER TRUST SECTION ===== */ .reseller-section { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); color: #fff; padding: 60px 0; } .reseller-section h2 { color: #fff; } .reseller-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; } @media (max-width: 768px) { .reseller-content { grid-template-columns: 1fr; } } .gold-seal { text-align: center; padding: 32px; background: rgba(255,255,255,0.06); border: 2px solid rgba(212,160,23,0.6); border-radius: 16px; } .gold-seal .seal-icon { font-size: 4rem; } .gold-seal h3 { font-size: 1.4rem; color: var(--gold); margin: 12px 0 6px; } .gold-seal p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin: 0; } .reseller-benefits { list-style: none; } .reseller-benefits li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); } .reseller-benefits li:last-child { border-bottom: none; } .rb-icon { font-size: 1.2rem; margin-top: 1px; flex-shrink: 0; } .rb-text strong { display: block; color: #fff; font-size: 0.95rem; } .rb-text span { color: rgba(255,255,255,0.65); font-size: 0.85rem; } /* ===== INDUSTRIES ===== */ .industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; } @media (max-width: 700px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } } .industry-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 10px; padding: 18px 16px; display: flex; align-items: flex-start; gap: 12px; } .industry-icon { font-size: 1.5rem; flex-shrink: 0; } .industry-name { font-weight: 600; font-size: 0.9rem; color: var(--text-primary); } .industry-use { font-size: 0.8rem; color: var(--text-muted); margin: 0; } /* ===== FAQ ===== */ .faq-list { max-width: 800px; margin: 0 auto; } .faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 12px; overflow: hidden; } .faq-question { width: 100%; text-align: left; padding: 18px 20px; background: var(--bg-white); border: none; cursor: pointer; font-size: 0.95rem; font-weight: 600; color: var(--text-primary); display: flex; justify-content: space-between; align-items: center; gap: 16px; } .faq-question:hover { background: var(--bg-light); } .faq-chevron { font-size: 0.9rem; transition: transform 0.25s; flex-shrink: 0; color: var(--primary); } .faq-item.open .faq-chevron { transform: rotate(180deg); } .faq-answer { display: none; padding: 0 20px 18px; } .faq-item.open .faq-answer { display: block; } .faq-answer p { margin: 0; font-size: 0.92rem; color: var(--text-secondary); } /* ===== CTA BOTTOM ===== */ .cta-bottom { background: linear-gradient(135deg, #0d3b5e 0%, #1488C4 100%); color: #fff; text-align: center; padding: 44px 22px; border-radius: 16px; max-width: 1200px; margin: 40px auto; } .cta-bottom h2 { color: #fff; margin-bottom: 12px; } .cta-bottom p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 28px; } .cta-btn-white { display: inline-block; background: #fff; color: var(--primary); padding: 14px 32px; border-radius: 8px; font-weight: 700; text-decoration: none; margin: 6px; font-size: 1rem; } .cta-btn-outline { display: inline-block; background: transparent; color: #fff; padding: 13px 32px; border-radius: 8px; font-weight: 600; text-decoration: none; border: 2px solid rgba(255,255,255,0.7); margin: 6px; font-size: 1rem; } /* ===== SECTION HEADER ===== */ .section-header { text-align: center; margin-bottom: 40px; } .section-header p { max-width: 620px; margin: 0 auto; color: var(--text-secondary); } .divider-line { width: 48px; height: 3px; background: var(--primary); border-radius: 2px; margin: 12px auto 0; } /* ===== LEAD FORM ===== */ .lead-form-wrap { background: #fff; border: 2px solid var(--primary); border-radius: 14px; padding: 22px; margin: 24px auto; max-width: 1200px; box-shadow: 0 6px 18px rgba(20,136,196,0.12); } .lead-form-wrap h4 { font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin: 0 0 6px; text-transform: uppercase; letter-spacing: 0.14em; } .lead-form-fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 10px; margin: 12px 0; } .lead-form-fields input, .lead-form-wrap textarea { width: 100%; min-width: 0; font-family: var(--font-body); font-size: 0.95rem; padding: 11px 12px; border: 1px solid #b9cfdd; border-radius: 8px; background: #fff; color: var(--text-primary); outline: none; transition: border-color 0.2s; } .lead-form-fields input:focus, .lead-form-wrap textarea:focus { border-color: var(--primary); } .lead-form-wrap textarea { grid-column: 1 / -1; resize: vertical; min-height: 70px; } .lead-form-wrap .btn-primary { display: inline-block; width: auto; margin-top: 4px; } .lead-form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 8px; } /* ===== ARCHITECTURE BROCHURE BANNER ===== */ .arch-brochure { background: linear-gradient(135deg, #1a1a2e 0%, #1a3a5c 100%); border-radius: 12px; padding: 24px 28px; margin: 26px 0 0 0; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; } .arch-brochure-icon { font-size: 2.6rem; flex-shrink: 0; } .arch-brochure-text { flex: 1; min-width: 200px; } .arch-brochure-text h3 { color: #fff; font-size: 1.05rem; font-weight: 700; margin: 0 0 4px; } .arch-brochure-text p { color: rgba(255,255,255,0.72); font-size: 0.88rem; margin: 0; } .arch-brochure-btn { display: inline-flex; align-items: center; gap: 7px; background: #fff; color: var(--primary); font-weight: 700; font-size: 0.92rem; padding: 11px 22px; border-radius: 8px; text-decoration: none; white-space: nowrap; transition: background 0.2s; flex-shrink: 0; } .arch-brochure-btn:hover { background: #e6f2fa; } .arch-brochure-btn svg { width: 16px; height: 16px; fill: currentColor; } ★ ★ ★ Official Gold-Certified Artec 3D Reseller — Expert Support & Best Pricing Guaranteed ★ ★ ★ High-precision mobile LiDAR mapping for any environment — indoor, outdoor, or underground. Survey-grade accuracy without survey-grade complexity, in a 1.57 kg device that deploys seven different ways. 1.9M points / second 300 m LiDAR range (984 ft) ±5 mm change detection (0.2 in) ⬇ Download the Jet Brochure (PDF) Full specs on two pages — perfect for sharing with your team or purchasing department. 🛡️ 2-year manufacturer warranty 🚚 Fast shipping from US stock 🎓 Expert setup & onboarding 📞 US-based specialist support ✅ Artec Gold Certified reseller 💬 Free pre-sale consultation 📩 Book a Free Demo / Get a Quote Submit No commitment. A specialist will reply within 1 business day. 1.9M Points per second 7 Deployment modes 360° × 290° field of view IP65 Dust & water resistant Real scenes to digital twins — in minutes The Artec Jet is a next-generation high-speed mobile LiDAR mapping system engineered for professionals who need survey-grade accuracy without the complexity. Combining SLAM-based positioning with an AI-powered autonomy engine, it captures sites, facilities, and critical infrastructure in GPS-denied environments — in minutes rather than hours. Whether you're doing as-built documentation on a construction site, mapping underground tunnels, scanning industrial facilities for digital twins, or performing infrastructure inspection, the Artec Jet delivers precise, reliable point clouds across environments that would defeat conventional scanners. At just 1.57 kg (3.46 lb), it's compact enough to carry by hand, yet capable enough to deploy on a backpack, drone, robot, vehicle, telescopic pole, or cage — giving your team full operational flexibility with a single device. See all 7 deployment modes → Digitize any environment — without exception Accurate LiDAR capture in the most challenging conditions, without external infrastructure or GPS. Underground Urban mapping Outdoor structures Indoor facilities Industrial spaces See the Artec Jet in action Watch Artec's official introduction — survey-grade mobile LiDAR mapping with SLAM positioning and AI-powered autonomy, across handheld, drone, and vehicle deployments. (function(){ var v = document.getElementById('jet-video'); if (!v) return; var play = function(){ v.innerHTML = ''; v.style.cursor = 'default'; }; v.addEventListener('click', play); v.addEventListener('keydown', function(e){ if (e.key === 'Enter' || e.key === ' ') { e.preventDefault(); play(); } }); })(); { "@context": "https://schema.org", "@type": "VideoObject", "name": "Introducing Artec Jet: Survey-grade mobile LiDAR mapping", "description": "Official introduction to the Artec Jet — a high-speed mobile LiDAR mapping system combining SLAM-based positioning and AI-powered autonomy to capture sites, facilities, and infrastructure in GPS-denied environments.", "thumbnailUrl": "https://i.ytimg.com/vi/7Tp6eHa31F8/hqdefault.jpg", "embedUrl": "https://www.youtube-nocookie.com/embed/7Tp6eHa31F8", "contentUrl": "https://www.youtube.com/watch?v=7Tp6eHa31F8", "uploadDate": "2026-04-06" } Engineered for confidence in every scan Advanced features that eliminate rework, reduce on-site risk, and guarantee complete data capture every time. 📡 Real-time scan preview Streams a live point cloud to the companion app during scanning, confirming complete coverage before you leave the site. 🌐 360° × 290° field of view Captures dense, shadow-free point clouds with full spherical coverage in a single pass — no repositioning needed. 🛰️ GPS-free SLAM positioning Industry-leading SLAM algorithms deliver reliable positioning underground, indoors, and in any GPS-denied environment. 📷 Color point cloud capture Pair with a supported camera to produce vivid, true-to-life 3D representations with immediately recognizable real-world features. 🛸 AI drone autonomy AI-powered collision avoidance detects obstacles as small as 2 mm (0.08 in). Fly beyond line of sight into confined or hazardous spaces — hands-free. 🔒 Return-to-base failsafe If battery runs low or conditions deteriorate, Artec Jet automatically navigates to a safe, pre-mapped return route. No drone is ever lost. ⚡ Instant proficiency Push-button scanning and plug-and-play design means your team is capturing quality data on day one, with no specialist training required. 📡 GNSS-assisted georeferencing RTK accessories add satellite positioning for improved global accuracy and reduced reliance on control points in open environments. 💾 512 GB onboard storage Approximately 16 hours of sensor data storage onboard — no external drives, no data gaps on long missions. One device — seven ways to deploy The Artec Jet's robust SLAM algorithms deliver reliable results across all seven modes. One device, one workflow, one investment. 🤚 Handheld 🎒 Backpack 🚁 Drone 🤖 Robot 🚗 Vehicle mount 📏 Telescopic pole 🧲 Cage Why buy from 3DMakerWorld? As a Gold-Certified Artec 3D Reseller, we offer more than just a transaction. You get a dedicated partner invested in the success of your scanning projects. 🥇 Gold-Certified Artec 3D Partner Officially authorized to sell, support, and service the complete Artec 3D scanner lineup. 🧑💻 Trained specialist team Our team holds Artec certifications and provides hands-on demos, setup, and technical onboarding. 💬 Pre-sale application consultation Not sure if Artec Jet is right for your project? We'll help you determine the best fit before you buy. 🛠️ Post-purchase support & service US-based support from people who know your exact hardware — not a generic call center. 🎓 Training & workflow guidance Get up to speed quickly with guided onboarding, software training, and workflow best practices. 🏅 Artec 3D Gold Reseller 3DMakerWorld holds Gold-Certified status — the highest level of Artec 3D reseller certification — reflecting our deep product expertise, sales commitment, and customer support capability. Industries that depend on Artec Jet From mining to civil infrastructure — deployed wherever accuracy and reliability matter most. ⛏️ Mining Tunnel mapping, volumetric measurement, underground asset inspection 🏗️ Construction As-built documentation, clash detection, progress monitoring 🛡️ Defense & Public Safety Facility mapping, crime scene documentation, hazardous area capture 🏭 Manufacturing Digital twins, facility layout, equipment inspection 🌉 Civil Infrastructure Bridge inspection, road mapping, utility corridor survey ⚡ Utilities & Energy Substation mapping, pipeline inspection, infrastructure digitization Technical specifications Complete Artec Jet specs for LiDAR performance, physical characteristics, and connectivity. Accuracy & Range LiDAR Performance Physical Software & Connectivity Mapping accuracy (general environments) ±15 mm (0.6 in) Mapping accuracy (indoor / underground) ±10 mm (0.4 in) Change detection capability ±5 mm (0.2 in) LiDAR range 0.5–300 m (1.6–984 ft) Global accuracy with RTK 5–10 mm (0.2–0.4 in; improved with RTK accessories) Positioning method SLAM (GPS-free) + optional GNSS RTK Data acquisition (single return) Up to 640,000 pts/s Data acquisition (triple return) Up to 1,920,000 pts/s Field of view 360° × 290° Laser class Class 1 (eye safe) Minimum detectable obstacle size (drone) 2 mm (0.08 in; wire detection) Weight 1.57 kg (3.46 lb) IP rating IP65 (dust and water resistant) Operating temperature -10°C to 45°C (14°F to 113°F) Onboard storage 512 GB (~16 hours of sensor data) Deployment modes Handheld, backpack, drone, robot, vehicle, telescopic pole, cage Warranty 2 years Companion app Real-time point cloud preview during scanning Compatible software Artec Studio 20, third-party LiDAR processing tools Output formats Point cloud (LAS, PLY, E57, and more) Autonomous AI engine Waypoint-based drone autonomy, collision avoidance Return-to-base failsafe Automatic, battery/condition triggered Georeferencing RTK GNSS accessory compatible 🏛️ Are you in Architecture, Engineering & Construction? Download our dedicated AEC brochure for your industry. Download AEC Brochure Artec Jet vs. Matterport vs. NavVis Three reality-capture methods, built for different jobs. Here's the short version. 1 Deployment mode Matterport Stationary · tripod Set up, scan, and move spot to spot. The simplest, lowest-cost route to virtual tours and digital twins — but the lowest accuracy of the three. 1 Deployment mode NavVis Wearable · walk-through Mobile mapping you walk through a site. The highest accuracy of the three — but it captures from the ground only. 7 Deployment modes Artec Jet Handheld + drone Mobile mapping you can carry or fly — capturing ground and air in one workflow. The fastest, with full ownership of your data. See the full comparison → .vs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; margin-bottom: 28px; } @media (max-width: 700px) { .vs-grid { grid-template-columns: 1fr; gap: 32px; } } .vs-num { font-size: 2.8rem; font-weight: 700; line-height: 1; color: var(--primary); } .vs-num-muted { color: var(--border-strong); } .vs-nlab { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin: 6px 0 12px; } .vs-col h3 { font-size: 1.15rem; margin-bottom: 4px; } .vs-jet { color: var(--primary); } .vs-tag { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); font-weight: 600; margin-bottom: 10px; } .vs-col p { font-size: 0.9rem; margin: 0; } Frequently asked questions Everything you need to know about the Artec Jet and buying from 3DMakerWorld. What is the Artec Jet and what makes it different from other LiDAR scanners? ▾ The Artec Jet is a high-precision SLAM LiDAR mobile mapping system that captures detailed 3D point clouds at up to 1.9 million points per second over a 300-meter (984-foot) range. Unlike conventional LiDAR scanners, it uses SLAM-based positioning — meaning it works without GPS in underground, indoor, or other signal-denied environments. It's also unique in supporting 7 distinct deployment modes (handheld, backpack, drone, robot, vehicle, telescopic pole, cage) from a single compact, 1.57 kg (3.46 lb) device, with an AI autonomy engine for drone mapping. Can the Artec Jet scan without GPS? ▾ Yes. The Artec Jet is specifically engineered for GPS-denied environments. Its industry-leading SLAM (Simultaneous Localization and Mapping) algorithms build a real-time map of the surrounding environment to maintain accurate positioning — no satellites needed. This makes it ideal for tunnels, mines, underground infrastructure, subterranean facilities, and dense urban canyons where GPS is unavailable or unreliable. How accurate is the Artec Jet? ▾ The Artec Jet delivers ±15 mm (0.6 in) mapping accuracy in general outdoor environments, ±10 mm (0.4 in) in indoor and underground environments, and ±5 mm (0.2 in) change detection capability. With RTK GNSS accessories, global accuracy can be further improved. These levels are appropriate for digital twins, as-built documentation, volumetric measurement, and structural inspection in construction, mining, civil infrastructure, and industrial applications. Is 3DMakerWorld an official Artec 3D reseller? ▾ Yes. 3DMakerWorld is an official Gold-Certified Artec 3D Reseller — the highest tier of Artec reseller authorization. This means we are fully authorized to sell, demonstrate, and support the complete Artec 3D scanner lineup including the Artec Jet. Our team holds Artec certifications, allowing us to provide expert pre-sale consultations, hands-on demos, technical onboarding, and ongoing US-based support. What industries use the Artec Jet? ▾ The Artec Jet is widely deployed in mining (tunnel mapping, volumetric surveys), construction (as-built documentation, clash detection), defense and public safety (facility mapping, hazardous area capture), civil infrastructure (bridge and road inspection), manufacturing (digital twins, plant layout), and utilities (pipeline and substation mapping). Its GPS-free capability and rugged IP65 rating make it suitable for any challenging environment. Can the Artec Jet be mounted on a drone for aerial LiDAR mapping? ▾ Yes. The Artec Jet's AI autonomy engine enables full drone-based aerial LiDAR mapping, including GPS-denied environments. You simply set waypoints; the drone flies autonomously with active collision avoidance that can detect obstacles as small as 2 mm (0.08 in) wire. A return-to-base failsafe automatically brings the drone home if battery drops or conditions change. This makes it possible to map elevated, dangerous, or hard-to-reach areas without putting personnel at risk. What software does the Artec Jet work with? ▾ The Artec Jet pairs with Artec Twins for point cloud processing, cleaning, registration, and export. It also supports third-party LiDAR processing software via standard output formats including LAS, PLY, and E57. A companion mobile app provides real-time point cloud preview during scanning for on-site verification. Ready to see the Artec Jet in action? Talk to a 3DMakerWorld specialist — Gold-Certified Artec 3D Reseller. Get expert advice, a personalized quote, or book a free live demo. Submit No commitment. A specialist will reply within 1 business day.
More you might like
Related
Hiwonder JetTank Jetson Nano ROS-Roboterpanzer mit SLAM, LiD
Related
Hiwonder JetTank Jetson Nano ROS Robot Tank with SLAM, Lidar
Related
Hiwonder JetTank Jetson Nano ROS Robot Tank with SLAM, Lidar
Related