Tag: autonomous vehicles

  • Sharper Shape, SkySkopes string transmission lines using drones

    A pair of companies is using unmanned aircraft systems (UAS) for powerline construction.

    Sharper Shape, a drone-based automated inspection provider, and SkySkopes, a professional UAS flight operator, took on a project in cooperation with an investor-owned utility.

    Photo: Sharper Shape
    Photo: Sharper Shape

    The mission used the Sharper A6 UAS to string sock lines for a 675-kilovolt line construction project.

    Sock pulling, the act of flying a strong and lightweight rope and attaching it to the towers, is typically performed via helicopters or by workers climbing the towers.

    Both these methods involve risk to both helicopter pilots and ground crews. The use of UAS is eliminating the previously complex process — consisting of several steps of reattaching the rope — and decreasing the risk of injury for people involved.

    The mission highlighted how UAS are a safe and effective option for many applications in the utility industry beyond basic inspections, according to Matt Dunlevy, CEO and president of SkySkopes.

    “This is a great proof of concept for unmanned aircraft because we proved that they can string both the outboard lines and the center line through the middle of the center phase of a tower,” Dunlevy said. “There are risks associated with both helicopter and tower climbing methods. Now there is another option as proven by Sharper Shape and SkySkopes.”

    Photo: SkySkopes
    Photo: SkySkopes

    “When the utility first reached out there were lots of unknowns,” said Paul Frey, director, electric utilities for Sharper Shape. “Working as a team, we pulled together, developing a test plan and executing the flights.”

    The team modified a heavy-lift small UAS to carry line, and then ran five test flights to test objectives related to pulling the line through each of the tower phases and setting the line on the center pulley.

    SkySkopes’ pilots are trained for difficult missions, often flying advanced heavy-lift multi-rotor aircraft with precision where autonomy is impractical.

  • Outdoor-to-indoor UAV: GPS/optical/inertial integration for 3D navigation

    When a platform’s mission requires maneuvering among different environments, transitions between these environments may mean that a single method cannot solve the full positioning, navigation and mapping problem.

    This article describes an integrated navigation and mapping design using a GPS receiver, an inertial measurement unit, a monocular digital camera and three short-to-medium range laser scanners.

    By Evan T. Dill and Steven D. Young, NASA Langley Research Center, and Maarten Uijt de Haag, Ohio University

    An unmanned aircraft system (UAS) traffic management system (UTM) is an ecosystem for coordinating UAS operations in uncontrolled airspace, particularly operations under 400 feet altitude involving small- to mid-sized vehicles. In this domain, information services regarding the state of the airspace will be provided to UAS operators.

    In addition, UTM would coordinate and authorize access to airspace for particular time periods based on requests from the operators. The Federal Aviation Administration would maintain regulatory and operational authority, and may for example, issue changes to constraints or airspace configurations to operators via this information service. However, there is no direct control from air traffic control personnel (such as “climb and maintain 300 feet” or “turn left, heading 150”).

    As with visual flight rules operations of manned aircraft in uncontrolled airspace, under UTM the onus is on the vehicle operator to assure the flight system provides adequate performance with regard to communication, navigation and surveillance during flight. The vehicle/operator is responsible for avoiding other aircraft, terrain, obstacles and incompatible weather. UTM information services do not yet include, for example, information from an alternative positioning, navigation and timing system that may be needed for operations conducted in GPS-degraded environments (such as near buildings or other structures). This is the challenge being addressed by the integrated navigation concept described in this article. Other concepts are also being considered and developed for alternate, and unique, UAS missions and flight environments.

    The method presented here employs a monocular camera as part of a multi-sensor solution that continuously operates throughout and between outdoor and structured indoor environments. For this work, an indoor environment is considered “structured” if its walls are vertical and remain approximately parallel, while the floor is either roughly flat or slanted.

    In this type of environment, GPS is typically only sparsely available or not available at all. Hence, in our proposed navigation architecture, additional information from a camera and multiple laser range scanners (not the focus of this article) are used to increase the system’s positioning, navigation and mapping availability and accuracy in a GPS-challenged indoor environment. Figure 1 shows the target operational scenario, and Figure 2 the equipped multi-copter used in this research.

    Figure 1. Operational scenario: open-sky environment, transition to indoor and indoor environment.
    Figure 2. Hexacopter sensors and sensor locations.

    Figure 3 shows a block diagram for the methodology implemented in this research, with the elements related to monocular camera methods highlighted. When assessing the capabilities of each of the sensors used in the work, only the inertial sensor produces data that is solely dependent on the motion of the platform and local gravity and is more or less unaffected by its surroundings. Therefore, the inertial is chosen to be the primary sensor for this method.

    The mechanization integrates the measurements from GPS, the laser scanners and the monocular camera through a complementary Kalman Filter (CKF) that estimates the errors in the inertial measurements and feeds them back to the inertial strapdown calculations. For this inertial error estimation method to function properly, pre-processing methods must be implemented that relate the sensors’ observables to the inertial measurements.

    Here we describe the processing techniques necessary to relate measurements from a monocular camera to measurements from the inertial measurement unit (IMU). Then we show how these techniques are used in the broader GPS/optical/inertial mechanization and present testing results.

    Figure 3. Monocular camera components of a broader mechanization.

    2D Monocular Camera Methods

    To process data from the camera, we first perform feature detection and tracking of both point features and line features. Specifically, elements from Lowe’s Scale Invariant Feature Transforms (SIFT) are used to track point features, which are in turn used to obtain estimates of the camera’s rotational and un-scaled translational motion using structure from motion (SFM) based methods. To resolve the ambiguous scale factor, a novel scale estimation technique is employed that uses data from the platform’s horizontally scanning laser. This technique as well as algorithms that produce a 3D visual odometry solution are presented below.

    SIFT Point Feature Extraction. To aid in determining camera motion, SIFT has been used as a way of identifying local features that are invariant to translation, rotation, and image scaling. This technique yields 2D point features that are unique to their surroundings and readily identified and associated across a set of sequential camera images. Each key location and its surroundings are analyzed, resulting in a descriptive 128-element feature vector, known as a SIFT key. Example results of the SIFT key identification process are shown in Figure 4.

    Figure 4. SIFT feature identification.

    Based on the results of the SIFT feature extraction process from two image frames, a feature association function is performed using the feature vectors. For this work, a two-step procedure is implemented.

    First, SIFT keys are associated using a matching procedure. Example results of this process are shown in Figure 5, where it can be observed that incorrectly associated features may result from this process. To remove these artifacts, inertial measurements are utilized to ensure the correctness of the associations.

    Figure 5. SIFT matching results between consecutive image frames.

    Using a triangulation method, prospective associations are used to crudely estimate each feature’s 3D position with respect to the previous frame. While this triangulation method yields 3D data, it is of poor quality, and is therefore only used to obtain rough approximations that are sufficient for association purposes, but insufficient for navigation purposes.

    Once transformed to a 3D reference frame, the projected distances of each feature are compared with one another, and prospective associations that produce significantly different depths than surrounding points are eliminated. Example results of this filtering process can be seen in Figure 6.

    Figure 6. Point feature association after inertial based miss-association rejection.

    In future implementations, the ORB feature will be evaluated, as its performance is expected to be more than two orders of magnitude faster than SIFT.

    Wavelet Line Feature Extraction. To implement the scale factor estimation technique described in a later section, it is necessary to first extract and track vertical line features. To accomplish this, a method using wavelet transforms (WTs) was developed. When applied to a 2D image, WTs can be viewed as filters operating in the x and y directions of an image. By applying either a high- or low-pass filter to both of an image’s channels (that is, x and y directions), four sub-images are formed to represent an image approximation. For this work, a level-one bi-orthogonal 1.3 wavelet was used to decompose each image. An example of the four sub-images produced by this wavelet is shown in Figure 7 along with the original image.

    Figure 7. Example results of wavelet decomposition.

    Through further processing of the vertical decomposition results, strong line features are identified by first inspecting the illuminated elements along the vertical channels of the decomposed image and identifying clusters of adjacent pixels. Next, a 2D line fit is applied to the groups to estimate residual noise. Pixel collections with low residuals (<3 here) are considered valid line features. Example results of this process are shown in Figure 8.

    Figure 8. Example vertical line extraction results.

    For association purposes, lines cannot be compared over a sequence of image frames solely based on location as similar line features may not necessarily possess the same endpoint, and, therefore, can be of varying lengths. However, corresponding lines will possess many common points and similar orientations if they are projected into the same frame. Using the inertial reference frame, each line’s orientation, , can be transformed across image frames as given by:

    In this manner, lines between frames that contain multiple similar points and have comparable orientations are considered associated.

    For a discussion of the projective visual odometry and epipolar geometry methodology as well as the resolution of true metric scale used in this work, download the supplemental PDF.

    Metric Scale. As the unscaled translation estimate calculated through the aforementioned visual odometry method is a unit vector, it only indicates the most likely direction of motion of the camera. To obtain the sensor’s actual translational motion, an estimate of the scale factor, m, is required to determine the absolute translation ∆r. This can be accomplished through techniques using a priori knowledge of the operational environment or measurements from other sensors. In this research effort, a new method is employed that makes use of data provided by a horizontally scanning laser.

    The proposed method estimates the scale in an image by identifying points in the environment that are simultaneously observed by the camera and the forward-looking laser range scanner.

    To enable this estimation method we must identify the correspondences between the pixels in the camera images (each defined by a direction unit vector corresponding to the row x and column y) and the laser scanner measurements (each defined by direction unit vector). A calibration procedure establishes these correspondences. Given the laser range measurements, 2D features located on the scan/pixel intersections can be scaled up to 3D points.

    Unfortunately, extracted 2D point features are rarely illuminated by a laser scan in two consecutive frames. This can be resolved by considering the intersection of a laser scan with 2D line features rather than point features. As the laser intersects the camera frame at the same location regardless of platform motion, and the platform does not make excessive roll and pitch maneuvers, vertical line features in the image frame are preferred as they will be relatively orthogonal to the laser scan plane.

    Using the previously described vertical line extraction procedure, Figure 9 shows an example image frame overlaid with the points in the image frame illuminated by the laser (indicated by a blue line) and the extracted vertical line features (indicated as green lines). Multiple intersections of 2D vertical lines with laser scan data are calculated (indicated as red points). Inversely, Figure 10 depicts the location of all laser scan points in green, all laser points observable with the camera field-of-view (FoV) in blue, and intersection points in red.

    Figure 9. Image frame overlaid with points; Laser (blue), vertical line features (green), multiple intersections (red).
    Figure 10. 2D vertical line and laser intersections in laser scan data.

    For scale factor calculation purposes, it is necessary to track the motion of these 3D laser/vision intersection points, across sequences of camera image frames. As each intersection point uniquely belongs to a line feature in the 2D image frame, it can be stated that if two lines are associated, their corresponding intersection points are also associated. Using the rotation computed from the visual odometry process, the line association method described by (1) is implemented, and provides associations between laser/vision intersection points across frames.

    To calculate the desired scale factor based on these associated laser/vision points, geometric relationships are established: unit vectors from the camera center to points located on a 2D line. From these, the line’s normal vector can be derived.

    Monocular Camera Results

    To assess the performance of the visual odometry processes, multiple experiments were conducted. The results of one such test are discussed here. During each test, the visual odometry results for rotation, shown in blue, were easily evaluated through comparison with the platform’s inertially-measured rotation, displayed in red.

    The rotational results for each sensor were decomposed into the Euler angles: pitch, roll and yaw with respect to an established navigation frame. Unfortunately, the inertial sensor itself cannot be used to evaluate the visual odometry translation results due to relatively large inertial drift in the sensor measurements. As no independent measurements were available to evaluate translation with high precision, the truth reference was established by accurately measuring the actual paths taken during each flight.

    A test flight was conducted traversing a rectangular indoor hallway loop. This test contained translation in multiple dimensions, large heading changes and a flight duration of four minutes. Moreover, this test allowed for evaluation of the eight-point algorithm and scale estimation method in the presence of rapid scene changes.

    The attitude estimation results for this test are shown in Figure 11. Throughout data collection, the maximum separation between the inertial and vision-based attitude estimators for pitch, roll and yaw was 9°,19° and 14°, respectively. Upon comparison to many of the other conducted tests, the maximum attitude errors were larger. There are multiple reasons for this increase. First, the duration of this experiment was greater than that of previous experiments. Errors accumulate as a function as time due to integration of residual bias errors, so increasing flight duration will increase cumulative error.

    Figure 11. Visual odometry attitude estimation traveling indoor loop.

    Next, the looping path observed throughout this test caused the eight-point algorithm and scale estimation procedures to quickly adapt to differing scenery. Drastic scene changes (turning a corner) increase the difficulty of feature association between frames. This directly affects the procedures used for visual odometry in an adverse manner. Finally, there are situations in this flight where features are sparse. In general, a decrease in features will cause a decrease in the estimation capabilities of visual odometry.

    Figure 12 shows the visual odometry path calculated for experiment 2. Here, the estimated length of each of the four straight legs of the rectangular loop matches to within 2 meters of the measured hallway lengths. This implies that the scale estimation technique is working reasonably well.

    Figure 12. Visual odometry path determination while traveling around an indoor loop.

    As for the estimated translational directionality produced by the eight-point algorithm, the first two legs of the loop never divert from the measured path by more than 2 meters; the third leg diverts by 5 meters. This is most likely due to a lack of well dispersed features in that specific hallway.

    The cumulative error contained in the third linear leg of the loop also makes evaluation of the final leg difficult. However, if previous errors are removed, the final leg appears to match the measured path well. In total, the landing position calculated through visual odometry is 6.5 meters away from the measured end of the trial.

    Integration Methodology

    In cases where GPS measurements are available along with the visual odometry solution, the proposed method can extend the GPS/IMU integration mechanization. The structure of the referenced GPS/inertial integration consists of two filters: a dynamics filter that uses GPS carrier-phase measurements to estimate velocity and other IMU errors, and a position filter that uses the velocity output of the dynamics filter and GPS pseudoranges. The dynamics filter can be adapted and extended to include camera data within its mechanization.

    The dynamics filter is a CKF designed to estimate the inertial error states: velocity error in the north-east-down (NED) coordinate reference frame, misorientation (including tilt error), gyro bias error, and specific force or accelerometer bias error. This yields a state vector. For a discussion of the state vector, download the supplemental PDF.

    Results

    To evaluate the proposed algorithms, data was collected through multiple flights of the hexacopter platform shown in Figure 2 through a structured indoor and outdoor environment including transitions between these two environments. The availability of GPS measurements in these environments ranged from fully denied, to substantially degraded, to enough observables for a full solution.

    The results of one test flight are discussed in this section. Apart from the data collections with the hexacopter, truth reference maps were created for the indoor operational environment and used for evaluation of the described processes. The results of the full GPS/inertial/laser/camera integrated solution described in Figure 3 are shown in an NED frame in Figure 13.

    Figure 13. Path compared to 2D reference map.

    The truth reference of the environment, depicted in red (derived from a terrestrial laser scanner), is compared to the flight path obtained from the extended Kalman filter (EKF), displayed in blue. The estimated flight trajectory constantly remains within the hallway truth model, indicating sub-meter level performance. Furthermore, based on an extension of this work for environmental laser mapping produced from the EKF, combined with the accuracy of the map, it is further reinforced that sub-meter-level navigation performance is obtained.

    During portions of the described data collection, there was enough visibility (>3 satellites) to calculate a GPS position. The availability of GPS measurements to the position estimation portion of the filter allowed for geo-referencing of the produced flight path and 3D map.

    Figure 14 displays the geo-referenced continued flight path based on the integration filter superimposed on Google Earth on the left, while the standalone GPS solution based on pseudoranges only is plotted on the right. The geo-referenced path correctly displays the platform passing through Stocker Center, the Ohio University engineering building.

    FIgure 14. (a) Left: EKF produced path; (b) right: standalone GPS path.

    To demonstrate the contributions of the monocular camera to the above results, laser measurements were removed from the solution for a 20-second period where GPS was unavailable. During the 20-second removal of laser data, the system is forced to operate on integration between visual odometry measurements and the IMU. The cumulative effect caused by this situation can be observed in Figure 15. After coasting on an IMU/camera solution for 20 seconds, the path is subsequently altered by 3 meters, as opposed to the solution with all sensors.

    Figure 15. Effect of losing GPS and lasers for 20 seconds.

    To further emphasize the contribution of the visual odometry component, both the laser and camera were removed from the integration for the same 20-second period. During this time frame the EKF is forced to coast on calibrated inertial measurements. The effect of losing all secondary sensors for a 20-second period can be observed in Figure 16.

    Figure 16. Effect of coasting on the IMU for 20 seconds.

    During the forced sensor outage, a 45-meter cumulative difference is introduced between the path using all sensors and the path with denied sensors. Through comparison of the results shown in Figure 15 and Figure 16, the contribution of monocular camera data can be isolated.

    When the EKF was forced to operate for 20 seconds using an IMU/camera solution, 3 meters of error were introduced. This is significantly smaller than the 45 meters of error observed when using only the inertial for the same period. Thus, the camera is shown to provide stability to the EKF when neither the laser nor GPS are available.

    Conclusions

    The visual odometry techniques produced reasonably good attitude estimation and are effective at constraining inertial drift when other sensors are not available. The inclusion of camera measurements to the discussed integrated solution resulted in increases in the accuracy, availability, continuity and reliability of the system.

    Acknowledgment

    The material in this article was first presented at the ION Pacific PNT conference in Hawaii, May 2017.

    Manufacturers

    The camera used aboard the UAV in these tests is a Point Grey Firefly MV and the IMU is an XSENS MTi. The GPS receiver is a NovAtel OEMStar with a corresponding NovAtel L1 patch antenna.


    EVAN T. DILL is a research scientist in the Safety Critical Avionics Systems Branch at NASA Langley Research Center. He received his Ph.D. in electrical engineering from Ohio University.

    STEVEN D. YOUNG is a senior research scientist at NASA with more than 30 years of experience in the related fields of safety assurance, avionics systems engineering and human-machine interaction.

    MAARTEN UJIT DE HAAG is the Edmund K. Cheng Professor of Electrical Engineering and Computer Science and a Principal Investigator (PI) with the Avionics Engineering Center at Ohio University, where he earlier earned his Ph.D. in electrical engineering.

  • Trimble offers direct georeferencing GNSS/inertial for UAVs

    Trimble offers direct georeferencing GNSS/inertial for UAVs

    Trimble is offering three new GNSS-inertial systems for direct georeferencing on unmanned aerial vehicles (UAVs): the Trimble APX-15-EI UAV, Trimble APX-18 UAV and Trimble APX-20 UAV.

    Direct georeferencing with the systems allows the location of image elements collected by lidar and hyperspectral sensors to be accurately computed without extensive networks of ground control points, reducing costs while maintaining accuracy to produce maps.

    The APX products use state-of-the-art low noise, multi-frequency Trimble Maxwell GNSS technology, and track all current satellite signals including GPS L1/L2/L2C/L5 and GLONASS L1/L2, QZSS, BeiDou, IRNSS and Galileo, supporting SBAS, RTK and Trimble CenterPoint RTX positioning modes.

    The APX-15-EI UAV features dual inertial measurement units (IMU); one embedded onto the GNSS-inertial board that is mounted on the UAV airframe with the GNSS antenna, and one that is mounted on an external sensor contained in a gimballed mount.

    With this feature, the APX-15-EI UAV can compute two sets of orientations — the UAV airframe and the gimballed mount —  enabling automatic, precise positioning of the sensor without requiring an external interface to the gimballed mount or autopilot.

    The APX-20 GNSS-inertial board by Applanix.

    The APX-18 UAV is a single-board GNSS-inertial solution that supports two-antenna heading for the highest accuracy in low-speed multi-rotor survey applications such as building facade scanning. Measuring  10 x 6 centimeters and weighing 62 grams, the APX-18 UAV uses on-board inertial sensors calibrated with the Applanix SmartCal software compensation technology for superior performance in a small, compact form for UAVs.

    To meet the higher accuracy demands driven by the allowance of higher altitude, beyond visual line of sight (BVLOS) UAV flights and the introduction of higher resolution, larger format imaging sensors, Trimble has developed the APX-20 UAV.

    Also featuring dual IMUs for automatic gimballed mount support, the APX-20 UAV uses a new, MEMS-based lightweight external IMU with unparalleled performance. With a total weight of less than 425 grams, the APX-20 UAV provides high performance without sacrificing flight time.

    “We are very pleased to announce these new additions to our portfolio of products for Direct Georeferencing on UAVs,” said Joe Hutton, director of inertial technology and airborne products at Applanix, a Trimble Company. “We have listened to our customers and worked very hard to come up with solutions that meet their needs, both from a technical and cost perspective.”

    All APX products include the Applanix POSPac UAV post-processing software for generation of high-accuracy carrier-phase differential GNSS-inertial position and orientation for highest accuracy map products.

    POSPac UAV supports single GNSS base-station processing with automatic coordinate survey using Trimble CenterPoint RTX, multi-single base station processing, and Applanix SmartBase Virtual Reference Station processing (optional), as well as the Trimble CenterPoint RTX post-processing trajectory generation available as a subscription.

  • Hexagon presents solutions for geospatial, construction industries at Intergeo

    Hexagon AB showcased its geospatial and construction portfolio at Intergeo 2017 in Berlin, Germany.

    Hexagon’s sensor portfolio combined with a range of software creates solutions that support the geospatial and construction industries.

    According to the company, visitors were able to explore a number of solutions, including mobile mapping; asset collection and management for geographic information systems (GIS); 3D laser scanning; photogrammetry; remote sensing; airborne sensors and unmanned aerial vehicles (UAVs); global positioning and monitoring like GNSS; construction project controls and progress documentation; utility detection; measurement software and cloud-based dynamic mapping. Hexagon will be at booth A1.024 in Hall 1.1.

    “Hexagon is focused on creating smart digital realities,” said Hexagon President and CEO Ola Rollén. “At Intergeo, we will demonstrate the productivity and savings that can be realized from digitalizing customer workflows, automating processes and ensuring all stakeholders have access to dynamic, critical information.”

    During the conference portion of Intergeo, Hexagon executives addressed the growing need for digitalization in geospatial and construction industries:

    • Transformation through digitalization. Hexagon Geosystems President Juergen Dold provides the Intergeo opening keynote exploring the need for businesses to transform from efficient digitisation to connected digitalisation for continued progress.
    • The power of combining cost, schedules and models in the cloud. Director of Global Business Development for HxGN SMART Build at Hexagon PPM, Cathi Hayes, explains how SMART Build integrates model, schedule, cost and digital layout capabilities into a single solution that addresses the most critical phases of construction planning and execution.
    • Hexagon integrated solution for utility detection and mapping. Leica Geosystems Construction Tools President Katherine Broder and IDS GeoRadar President Alberto Bicci present how to achieve high productivity in mapping utilities with Hexagon’s underground detection portfolio, including ground penetrating radar (GPR) solutions.
    • Escaping the flatlands. Hexagon Geospatial President Mladen Stojic envisions new and easier approaches that ingest the influx of data, use automated approaches to extract the signal from the noise and provide intuitive ways of communicating insights to decision makers and field teams so they can shape smarter change.
    • Connecting perceptions with reality in the world of BIM, GIS and survey. Leica Geosystems Laser Scanning Vice-President of Business Development Faheem Khan looks at the benefits of sensor fusion, the growth of digital reality solutions and how both are affecting project lifecycles in the real, digital world.
    • Streamlining UAV workflows for surveying, construction and inspection. Leica Geosystems Product Manager for UAV Solutions Valentin Fuchs and Leica Geosystems Director of Marketing and Communications for UAV Solutions Benjamin Federmann deliver a series of presentations and hands-on demonstrations on how Hexagon integrates UAVs as part of the technology tool kit to digitalise workflows.
  • Harxon launches D-Helix antenna for UAVs at Intergeo

    Harxon has released the multi-constellation D-Helix Antenna at the 2017 Intergeo trade show, held Sept. 26-28 in Berlin, Germany. The Harxon booth is located at Hall 4.1, Stand C4.013.

    The industrial, innovative D-Helix Antenna is capable of superior tracking of signals from GPS L1/L2 L-Band, GLONASS L1/L2, BDS B1/B2/B3 and Galileo. The innovative quadrifilar helix antenna design of low wind-resistance is ideal for UAV positioning and navigation.

    The increased antenna gain and beamwidth ensure a better signal receiving performance of satellite at low elevation angle. The low noise figure enhanced transmission interference reduction and improve the signal quality.

    The D-Helix antenna can be used in UAV patrol, UAV plant protection, unmanned patrol robot and unmanned surveying vessel. According to the company, it provides the centimeter-level positioning accuracy for a stable flightpath and prevents air turbulence, to enable a reliable positioning, height setting and heading information.

    The antenna has been recognized by many industry experts and received inquiries from potential partners at the first launch day.

    Other showcased products from the Harxon GNSS family include its survey antenna, rover radio, frequency hopping modules, smart antenna and H-RTK, are also appropriate for the fields of surveying and mapping, precision agriculture and UAVs.

  • Live from Intergeo 2017

    Live from Intergeo 2017

    The GPS World staff is reporting from Intergeo Sept. 26-28 in Berlin, Germany. The massive trade show, dubbed the “global hub of the geospatial community,” brings together more than 17,000 visitors from more than 107 countries and features approximately 525 exhibitors. Check out some of the latest industry news, as well as photos and videos from the event.

    News

    Videos

  • Launchpad: Survey, UAV, Transportation

    Launchpad: Survey, UAV, Transportation

    Survey & Mapping

    GNSS RTK System

    High performance and stable signal reception

    The NeoRTK System is a high-performing GNSS RTK system. It includes a multi-constellation and multi-frequency GNSS engine and various communication protocols. With a high-end GNSS antenna inside, NeoRTK can speed the time to first fix (TTFF) and improve the capability of anti-jamming. The 16G internal storage and up to 32G external SD card, along with the built-in large-capacity battery for 10-hour field work, improves surveyors’ productivity, while the radio module makes long distance operation more convenient. A smart personal digital assistant offers high readability and fast access to essential functions and modes. The NeoRTK system also has an adjustable measurement rod with automatic tilt compensation.

    Tersus GNSS, www.tersus-gnss.com

    GNSS Receiver

    Real-time professional-grade positioning information

    The SXblue Platinum is a high-accuracy GNSS receiver compatible with iOS, Windows and Android Bluetooth. Powered by 394 channels, the SXblue Platinum uses all constellations (GPS, GLONASS, Galileo, BeiDou and QZSS) with triple frequency, and provides the ability to use global or local coverage for corrections (SBAS, L-band and RTK). With the scalable SXblue Platinum Basic, users can activate any frequency or constellation at any time following initial purchase. The receiver is also field-upgradable, which means that these options can be remotely activated when convenient. It also has an L-band signal correction via Hemisphere’s Atlas service. With its new Tracer technology, the receiver can sustain its level of accuracy when the Atlas signal is interrupted.

    Geneq, www.sxbluegps.com

    Smartphone antenna, location service

    Turns Android devices into data-collection systems

    Trimble Catalyst DA1 antenna attaches to a smartphone running a Catalyst-enabled app.

    The Catalyst software-defined GNSS receiver for Android devices is now available through Trimble’s global distribution network. Through Catalyst and a special antenna, customers can access positioning-as-a-service to collect geolocation data with Trimble or third-party apps on smartphones, tablets and mobile handhelds. When combined with a plug-and-play digital antenna and subscription to the Catalyst service, the receiver provides on-demand GNSS positioning capabilities to turn consumer Android devices into centimeter-accurate data-collection systems. Catalyst requires a Catalyst-enabled location app for Android; a Catalyst subscription, with accuracy options ranging from 1 meter to centimeter level, and the small, lightweight DA1 antenna, which plugs directly into Android smartphones and tablets. A range of Catalyst-enabled applications have been developed for geographic information system (GIS) data acquisition, cadastral land management, topographic mapping and ground control for unmanned aircraft systems (UAVs).

    Trimble, catalyst.trimble.com

    Desktop GIS

    Updated with improved workflows and innovative features

    ArcGIS Pro 2.0 is Esri’s next-generation desktop geographic information system (GIS). It is tightly integrated with the rest of the ArcGIS platform, so that users can complete more of their workflows solely in ArcGIS Pro, such as map creation and data management. Getting started with new projects has vastly improved with Favorites. In ArcGIS Pro, users can modify topology properties directly. An enhanced traverse tool improves COGO workflows. Highly requested context menu options for importing and exporting data included in the Catalog pane. 3D navigation controls enable exploration of 3D landscapes, and views of 3D and 2D maps can be synced. Layouts are more useful and powerful with embeddable dynamic interactive charts. Improvements to 3D drawing including feature drawing by camera distance. Enhanced lighting of 3D objects make 3D visualizations even better. Analytics improvements include fill-missing-values tools and enhanced spacetime cubes.

    Esri, www.esri.com


    Transportation

    Flight management

    For pilots to use GPS as primary means of navigation

    The GPS-4000S sensor provides GPS-based navigation and enables GPS-based approaches for aircraft equipped with flight management systems. The sensor’s Space-Based Augmentation System (SBAS) capabilities enable use of GPS as the primary means of navigation in areas of SBAS coverage. The GPS-4000S uses up to 10 GPS satellites and two geostationary SBAS satellites. However, users can calculate navigation with a minimum of four GPS satellites with acceptable geometry or three satellites plus calibrated barometric altitude. With additional satellites, the system’s Receiver Autonomous Integrity Monitoring (RAIM) detects and isolates defective satellites while improving navigation accuracy. Predictive RAIM capability determines if the future satellite geometry at the destination airport will support planned arrival procedures.

    Rockwell Collins, www.rockwellcollins.com

    Smart ADAS camera

    Efficient image recognition engine and functional safety

    Renasas autonomy is an advanced driving assistance system (ADAS) and automated driving platform. The first rollout under the new platform is the R-Car V3M high-performance image recognition system-on-chip (SoC), optimized for use in smart camera applications, surround view systems and lidars. For smart camera applications, the R-Car V3M focuses on enabling NCAP (New Car Assessment Program) features. It is equipped with an integrated ISP and delivers high performance for computer vision, while supporting low power consumption and a high level of functional safety. The R-Car V3M SoC complies with the ISO26262 safety standard, delivers low-power hardware acceleration for vision processing and is equipped with a built-in image signal processor, freeing up board space and reducing system manufacturers’ costs.

    Renesas Electronics, www.renesas.com

    Aircraft navigation

    Touchscreen GPS/Nav/Comm for pilots

    GTN 650 is a fully integrated solution in a small package ready and approved for installation in hundreds of makes and models of aircraft, including helicopters, by the U.S. FAA, Europe EASA, Canada TCCA and Brazil ANAC. It combines GPS, communication and navigation functions with powerful multifunction display capabilities such as high-resolution terrain mapping, graphical flight planning, advanced navigation, multiple weather options, connectivity and traffic display. The SBAS/WAAS-certified, 15-channel GPS receiver generates five position updates per second, letting pilots fly GPS-guided localizer performance with vertical guidance (LPV) glidepath instrument approaches down to as low as 200 feet. The system includes a complete package of very high frequency (VHF) navigation capabilities, with a 200-channel VHF omni-directional radio range (VOR)/instrument landing system (ILS) with localizer and glideslope.

    Garmin, www.garmin.com

    Truck-specific navigation

    Device includes critical driving and business tools

    The OverDryve 7 Pro is part of Rand McNally’s OverDryve OS Connected Vehicle platform. It is E-Log ready and has a high-resolution 7-inch screen. Designed for truck drivers, the OverDryve 7 Pro has truck-specific navigation and routing with points of interest, advanced lane guidance, toll costs, warnings and fuel logs. Other features include hands-free calling and texting, voice assistance and in-cab entertainment. The powered magnetic mount includes a commercial-grade GPS boost. The unit comes pre-loaded with the Rand McNally DriverConnect2 logbook app, which can be paired with a compatible Rand McNally electronic logging device (ELD) to provide a fully compliant electronic logging solution.

    Rand McNally, randmcnally.com


    UAV

    Drone navigation kit

    Open-Source kit integrates GNSS module

    The Here+ RTK GNSS kit, is built around the u‑blox NEO‑M8P high-precision real-time kinematic (RTK) GNSS module. HEX offers an open-source drone autopilot, the Ardupilot, which the kit supports. The kit consists of a round rover designed to be mounted on the drone. It is connected to the flight controller using the supplied 8‑pin CLIK-Mate connector (for the autopilot Pixhawk2) or an optional 4 pin + 6 pin DF13 connector (for the Pixhawk1). The base station with its smaller GNSS receiver and an external antenna complete the equipment. HEX’s goal is to promote open source drone technology to a larger community and assist drone companies with affordable accessories for a wealth of applications, such as agricultural drone, powerline inspection, precision farming, logistics or 3D mapping.

    HEX Technology Limited, www.hex.aero;
    u-blox, www.u‑blox.com

    Long-endurance UAV

    Hybrid electric propulsion provides longer operating time

    The Hercules is a long-endurance multi-rotor UAS with a hybrid electric propulsion system and patent-pending aerodynamic design improvements. These two technologies enable the aircraft to fly up to 3.5 hours or carry a 4-pound payload for 2 hours. The aircraft has a 36-pound gross weight and is intended for FAA Part 107 operations. Hercules is useful for applications that benefit from long endurance such as precision agriculture, mapping, first responders and infrastructure inspection. The increased flight time enables up to 45% reduction in cost per acre for the operator to acquire data, while the increased payload capacity avoids repeat overflights with swapped out payloads.Three gallons of fuel is enough energy to fly the aircraft for the whole day. The battery contains enough energy to fly the aircraft for an additional 2 minutes following failure of the combustion engine, enabling the aircraft to make a safe landing.

    Advanced Aircraft Company, www.AdvancedAircraftCompany.com

    GNSS kit

    Survey-level accuracy for small unmanned aerial systems

    The Loki GNSS positioning system allows users of DJI Phantom 4 Pros and Inspire 2 drones, as well as most drones using higher end cameras, to achieve survey-level accuracy with minimum ground control. For positioning accuracy, Loki uses the Septentrio AsteRx-m2 GNSS engine with 448 hardware channels. A patent-pending method by GeoCue detects camera events from the UAV and synchronizes them to GNSS positioning. Loki is a self-contained kit that provides the hardware and software needed to equip a drone with a post-processed kinematic (PPK) multi-frequency, multi-constellation, differential, carrier-phase GNSS. The adapter cable is splug and play. Using a local base station (not included), Loki provides centimeter-level positioning with minimal, and in some cases, no ground-control points (though GCPs are always recommended for quality assurance).

    GeoCue Group, www.geocuellc.com

    Large-area lidar

    For advanced mapping, law enforcement

    The Phoenix Ranger RL1-UAV produces photorealistic 3D point-cloud data collected efficiently over extensive regions. For law enforcement, the data can provide greater context, awareness and tactical accuracy. Agencies typically use ground-based lidar as a forensic crime-scene mapping technology. Aerial lidar is efficient for larger, outdoor scenes because line-of-sight issues can restrict ground lidar scans from capturing the entire area. Benefits for law enforcement include exposing unmapped trails hidden in remote backwoods; determining width, elevation and length of roads; detecting micro topography hidden by vegetation; and gathering ground-surface information affected by human activities. The Phoenix Ranger RL1-UAV provides survey-grade (cm-level) accuracy with 920-meter laser range and outstanding intensity calibration. Options include IMU and dual-GPS upgrade for increased accuracy.

    Phoenix Lidar Systems, www.phoenixlidar.com

  • Trimble introduces lower power GNSS-inertial boards

    Trimble has introduced a new family of Trimble BD GNSS boards for high-precision guidance and control applications.

    The BD boards’ simple connectivity and configuration allow system integrators and OEMs to easily add GNSS positioning and orientation — with the ability to upgrade its capabilities — using the same board footprint, connectors and software interface for specialized and custom hardware solutions, the company said.

    The compact Trimble BD boards include a broad range of receiver capabilities, from high-accuracy GNSS only to full GNSS-Inertial features for positioning and 3D orientation. Firmware options are upgradeable, allowing functionality to be added as requirements change.

    Product manufacturers in markets such as unmanned aerial vehicles (UAVs), autonomous vehicles, fleet management and aviation now have the ability to offer customers an extensive range of capabilities to meet all their needs.

    According to Trimble, the low-power BD family of boards includes the BD940 GNSS and GNSS-Inertial boards and new top-of-the-line BD990 GNSS, GNSS-Heading and GNSS-Inertial boards, enabling customers to choose the most appropriate receiver for their applications.

    In addition, the BX940 and BX992 are available in a rugged enclosure for applications used in harsh environments.

    Integrating Trimble RTX technology, which enables precise and robust location worldwide without the use of a base station, the BD boards are ideal for flexible positioning. Trimble RTX technology enables users to subscribe to a complete portfolio of real-time correction services that deliver varying levels of accuracy depending on the user’s application requirements.

    The new BD family incorporates the latest Trimble Maxwell technology with advances in high-precision GNSS-Inertial positioning. By integrating inertial sensors onto the GNSS boards, users can experience more robust performance in a variety of challenging environments such as urban canyons, tunnels, heavy canopy or other GNSS-denied environments.

    Robust centimeter-level, real-time kinematic (RTK) positioning is achieved through the combination of multi-frequency GNSS — full triple-frequency support of all available GNSS satellite constellations—and onboard inertial sensors.

    System integrators and OEMS also have the ability to detect interference with the included RF Spectrum Monitoring and Analysis tool embedded in the receiver. The GNSS engine with 336 channels is capable of tracking L1/L2/L5 frequencies from the GPS, GLONASS, Galileo and BeiDou constellations.

    “The OEM and system integrator communities demand high performance, reliability and support for their positioning solutions,” said Elmar Lenz, general manager of Trimble’s Integrated Technologies Division. “The new BD family of boards deliver the latest GNSS and inertial technology in an easy-to-integrate form factor.”

    The new Trimble BD OEM GNSS family is available now through Trimble’s Integrated Technologies Precision GNSS Sales Channel.

  • Harxon showcases GNSS products at Intergeo 2017

    Harxon is showcasing a series of GNSS antennas and wireless data-link modems at 2017 Intergeo, being held Sept. 26-28 in Berlin, Germany.

    The products aim to provide the user better industrial solutions in the fields of surveying and mapping, precision agriculture and unmanned aerial vehicles (UAVs).

    The Harxon D-Helix Antenna.

    D-Helix Antenna: The multi constellation antenna is capable of superior tracking signals from 4 satellite constellations, including GPS L1/L2 L-Band, GLONASS L1/L2, BDS B1/B2/B3 and Galileo. The innovative quadrifilar helix antenna design of low wind-resistance is ideal for aerial photographs, telemetry technology, disaster monitoring and security monitoring industries. Its 3.5dBi peak gain ensures exceptional low elevation tracking performance. The low noise figure enhanced transmission interference reduction and improve the signal quality.

    The Harxon GPS 1000 Survey Antenna.

    Survey Antenna GPS 1000: The all constellation GNSS antenna has passed the NGS certification, which receives GPS L1/L2/L5 L-Band, BDS B1/B2/B3, GLONASS L1/L2, Galileo E1/E2/E5a/E5b signals. It can be used in land survey, marine survey, channel survey and agriculture applications, with a consistent performance across the full bandwidth. GPS 1000 has high gain and wide beam width to ensure the signal receiving performance of satellite at the low elevation angle, and the phase center remains constant as the azimuth and elevation angle of the satellites change. The influence of measurement error can be minimized via the multi-feed design and embedded multi-path rejection board.

    Rover Radio HX-DU1603D: The high-speed, Bluetooth-enabled ruggedized UHF rover radio is designed for GNSS/RTK surveying and positioning. It ensures the data communication between 410MHz and 470 MHz in either 12.5KHz or 25 KHz channels. HX-DU1603D is equipped with a Bluetooth transceiver for wireless communications of external devices, features a 6800mAh rechargeable internal battery and configurable transmit power between 0.5W and 2W, also the IP67 waterproof capability allows outdoor long operational hours.

    Harxon Frequency Hopping Module HX-DU1018D/HX-DU2017D.

    Frequency Hopping Module HX-DU1018D/HX-DU2017D: The built-in frequency hopping transceiver modules are small size, light weight, low power consumption and strong resistance to disturbance. They provide a reliable, high speed and low latency data transmission, which are suitable for UAV flight control. These modules support a band range among 400MHz, 840MHz and 900MHz and long distance of communication. Besides, HX-DU1018D/HX-DU2017D can realize a switchover between air baud rate and serial port baud rate.

    Harxon Smart Antenna.

    Smart Antenna: It is a multi-functional GNSS product which is integrated by multi-frequency OEM antenna, OEM receiver and frequency hopping transceiver. Smart Antenna utilizes the dual anti-multipath antenna to receive stable GNSS signals under the bad-signal environment and precisely output the direct information with a centimeter-level positioning accuracy. The IP67 waterproof design allows the smart antenna for a long time outdoor operation.

    The Harxon H-RTK.

    H-RTK: H-RTK is for UAV positioning and navigation, which reaches the positioning accuracy to a centimeter level. It is integrated with positioning, height setting and heading functions to provide accurate, reliable solutions. H-RTK ensures the positioning accuracy to a centimeter level for a more stable flightpath. Also, it provides the reliable height information and solve the height-error problem to prevent air turbulence. H-RTK outputs precise navigation information with powerful magnetic disturbance resistance, it enables the flight reliability under a magnetic disturbance environment, and avoid security risks. The built-in anti-interference frequency hopping transceiver helps data transfer back to the base station, and supports the frequencies of 400 MHz, 840 MHz and 900 MHz.

    For more information,visit Harxon’s booth at Intergeo in Hall 4.1 booth C4.013.

  • Tersus launches new version of Precis-BX306 RTK board

    Tersus launches new version of Precis-BX306 RTK board

    Tersus GNSS Inc. has released a major upgrade to its Precis-BX306 RTK board with new and improved GPS/GLONASS functionality. Tersus GNSS is a manufacturer of high-precision GNSS real-time kinematic (RTK) boards, receivers and systems.

    Precis-BX306 Board Easy Kit.

    The new version of Precis-BX306 supports up to 20-Hz RTK solution and raw measurement output, which can be integrated with autopilots and inertial navigation units.

    With improved algorithms, the new Precis-BX306 demonstrates its ability that the 30-km baseline can be fixed quickly, the company said.

    Moreover, the dynamic fix rate shows an advantage comparing to the majority of competitive solutions. Stable fix rate is achieved when it is working under city valley, tree, and other challenging environment.

    “The technology changes made in this version give a whole new user experience for our customers,” said Xiaohua Wen, founder and CEO. “With the updated capabilities, the Precis-BX306 is particularly useful for drones, surveyors and geographic information system data users interested in an affordable RTK solution.”

    This latest version of Precis-BX306 is pin-to-pin compatible with major GNSS boards in the market, offering a flexible interface. Event mark and PPS are supported as always. All enhanced features demonstrate Tersus’ commitment to the needs of customers who value dynamic accuracy and stability.

    The new Precis-BX306 is available for order and delivery immediately, and it will be shown at Intergeo in Berlin, Germany, Sept. 26-28.

  • Gas sensors take flight on UAVs

    Gas sensors take flight on UAVs

    Remote sensing of atmospheric gas concentrations is important in monitoring global greenhouse gas levels and industry monitoring. Monitoring is usually carried out via satellite sensing or laborious ground-based measurements.

    With aerial measurement, a wider area can be measured efficiently, and repeat measurements taken of days, weeks and months gathering time-series data.

    Custom drone with gas sensor (circled).

    This spring, a study by QuestUAV and the British Geological Survey (BGS) used a custom QuestUAV Q200 airframe equipped with two sensors, one tuned for methane (CH4) and one for CO2. The sensors use an open-path gas mass spectrometer — a fiber-guided laser beam passed laterally across open atmosphere on top of the drone to a reflector and then back to the sensor itself.

    Signals from the sensors were fed into a multi-core processing unit on board the drone. All readings were stamped with time and location provided by the standard GPS and flight units in the Q200.

    The completed drone was commissioned in March. Over several months, trial flights were run over gas releases initiated manually on the ground over the test site. The recorded sensor data was processed immediately on return to base, and the data passed to BGS for analysis and appraisal.

    The team plans to fine-tune the operational workflow and maintenance tasks for regular missions.

  • Canada awards drone airspace management contract

    Canada awards drone airspace management contract

    Public Services and Procurement Canada has awarded a contract to Ottawa-based Kongsberg Geospatial for an emergency operations airspace UAV tracking system.

    Kongsberg Geospatial, an Ottawa-based developer of geospatial software technology, was awarded the contract to produce an Emergency Operations Airspace Management System (EOAMS) for evaluation by Canadian government agencies for safely managing drones at emergency and disaster scenes.

    The contract was awarded via a competitive request for proposals under the Canadian Safety and Security Program in a project for Defense R&D Canada’s Centre for Security Science.

    A small UAV is shown surveying the movement of a forest fire. The EOAMS would allow first responders to deploy drones at disaster scenes without endangering other emergency response aircraft or commercial flights. (Photo illustration: Kongsberg Geospatial)

    The EOAMS is a portable display that interfaces with a variety of local sensors, including radar and Automatic Dependence Surveillance — Broadcast (ADS-B) receivers to give a clear picture of the airspace around disaster areas.

    The system is intended to allow first responders to safely use unmanned aerial vehicles (UAVs) to survey the area, without risking collision with other emergency aircraft, including water bombers or rescue and police helicopters.

    The system would also provide a warning to first responders if unapproved UAVs approach the area – providing a degree of protection against what is becoming an increasing problem with the proliferation of small consumer camera drones at fires and accident scenes.

    The Government of Canada is expected to begin flight operations testing with the new Emergency Operations Airspace Management System in the summer of 2018.

    “Securing and managing the airspace around disaster scenes or at big public events is becoming a real concern for all levels of government,” said Paige Cutland, IRIS program director for Kongsberg Geospatial. “Even if a drone operator isn’t acting with malicious intent, they have the potential to cause considerable harm if, for example, they fly into the path of an air ambulance. We need effective tools to help prevent this while also allowing legitimate UAV operations to be safely integrated into the emergency airspace.”

    The new EOAMS will be based on Kongsberg Geospatial’s IRIS UAS airspace visualization system. The IRIS spatial awareness system evolved from technology originally developed for air traffic management display systems, and for supporting flight operations for military UAV systems like the U.S. Navy Triton Global Hawk.

    The system has been developed for safely operating UAVs beyond visual line-of-sight (BVLOS), and has been adopted by the FAA ASSURE group for use in research toward developing regulations for commercial BVLOS operations in the United States.

    “Kongsberg Geospatial has been pioneering innovation in airspace management for unmanned aircraft for over a decade,” said Ranald McGillis, president of Kongsberg Geospatial. “With the EOAMS project, we have the opportunity to introduce some really exciting capabilities in a portable system that will help first responders use UAVs in new and effective ways to support emergency response efforts.”