![]() | XPBEProviderExporter Class |
Namespace: Pixoneer.NXDL.NDFS
public class XPBEProviderExporter : IDisposable
The XPBEProviderExporter type exposes the following members.
Name | Description | |
---|---|---|
![]() | XPBEProviderExporter | Creates a XPBEProviderExporter object and initializes the data members. This is the default constructor. |
Name | Description | |
---|---|---|
![]() | Cancel |
현재 저장중인 프로세스를 취소한다.
|
![]() | Export2PBE |
설정된 Source를 이용하여 PBE파일로 저장한다.
|
![]() | GetPercent |
저장 프로세스 공정 중 진행율을 퍼센트로 얻는다.
|
![]() | SetSource(XDMBand, Int32, Double, Double, Double, Double) |
Source로 XDMBand객체를 설정한다
|
![]() | SetSource(XDMCompManager, Int32, Double, Double, Double, Double) |
소스로 XDMCompManager객체를 설정한다.
|
using Pixoneer.NXDL; using Pixoneer.NXDL.NDFS; using Pixoneer.NXDL.NRS; ... double lllat = 35.0; double lllon = 127.0; double urlat = 36.0; double urlon = 128.0; int startLevel = 5; int endLevel = 7; XPBEProviderExporter Exporter = new XPBEProviderExporter(); // Get XDMCompManager from NXMapLayerComposites. file must be geographic coordinate system. ..... XDMCompManager compMan = compLayer.GetXDMCompManager(); ..... // Set source to Exporter. Exporter.SetSource(ref compMan, ref endLevel, ref lllat, ref lllon, ref urlat, ref urlon); // Save to pbi file. if (Exporter.Export2PBE(startLevel, endLevel, lllat, lllon, urlat, urlon, "D:\\Sample.pbe")) { Console.WriteLine("Succeeded"); }