SuperMap iObject Java parametric modeling tilted local update

Author: Jiang Er

Preface

        With the widespread application of oblique photography model data for very large scenes, the data needs to be maintained and updated regularly to keep the project data up-to-date and accurate. In order to update the oblique data files, you can use the SuperMap iDesktop series products to update the oblique data. Some projects are flexible due to their flexibility. For development, choose to use the SuperMap iObject 11i product customizer. This article provides the basic code for tilt update with component 11.1.1 product for reference.


Table of contents

1. Tilt data update

2. Reference code

3. Result display


1. Tilt data update

        S3M stands for Spatial 3D Model. The "Oblique Data Update" function updates the S3MB format oblique photography model data based on the OSGB format oblique data, and requires that the OSGB data range must be within the S3MB data range.

        Realize the update of oblique photography data, and support the update of S3M format oblique data with OSGB format oblique data.

2. Reference code

        The following is part of the code for reference, 

String scpPath =".\\Configdai\\Combine.scp";
boolean isTrue2= builder.update(scpPath,8);//倾斜摄影模型数据局部更新 支持osgb格式的倾斜数据更新S3MB格式的倾斜数据
System.out.println(isTrue2);

For complete sample code, please see the resource link:

​​​​​​​https://download.csdn.net/download/EliseJ/88576902​​​​​​​

For details on test tilt data, please see the resource link:

​​​​​​​https://download.csdn.net/download/EliseJ/88577030

3. Result display

        S3MB format tilt data to be updated:

        Updated raw skew OSGB format skew data:

        Update via component:

        Updated S3MB format result data:

*This test data highlights the updated part, and its original data does not exactly match the updated part. If you want better results, please use the actual data in the project to update.

Guess you like

Origin blog.csdn.net/EliseJ/article/details/133948634