Data Preparation and Organization for Orbit 3DM Publisher Viewer

This page describes the best recommended practices in data preparation and organization to achieve consistently reliable high performance when Publishing big amount of data.

Concepts

Orbit 3DM Publisher Viewer processes most requests on the end-user side, not on the Publishing server. Unlike previous generation of Orbit Viewer: Flash Viewer, HTML5 Viewer relies on data being optimized for streaming which means:

Mobile Mapping\UAS\Oblique data

Mandatory

To publish mobile mapping resources, data must be imported as Runs and organized into Projects.
It is possible to use Orbit 3DM Publisher Catalog on server to Import Runs. However it is highly recommended to have a dedicated Content Manager license and run data processing (Import and Merging Runs) on a separate machine with all resources being processed locally. All Mapping Runs\Oblique Projects included in a Publication have to be HTML5-ready, see Catalog > Cloud & HTML5.

Workflow:

  1. Import and process your data into mobile mapping runs using the “Import Run” procedure, see Manage Mobile Mapping Runs.
  2. Organize Runs into Projects using 3DM Orbit Publisher Catalog, see Manage Mobile Mapping Projects.
  3. Manage projects in EOS console, see EOS Console > Extensions.

Vector data

Mandatory

Workflow:

  1. Import and convert the vector files in an Orbit desktop product.
  2. Manage vector files in EOS console, see EOS Console > Resources > Datasets.

Recommended

WFS services are currently not supported directly in the Viewer. However it is possible to overlay features available through WFS by accessing the Orbit Publication with one of the available plugins , Orbit 3DM Plugin for QGIS for example.

Point Cloud

A point cloud which is not part of a run/project can be added separately to a publication. This is possible via the <publication_name>.xml file. See below.

Basemaps

WM(T)S services

Georeferenced images

Mesh

Mesh datasets can be added to a publication via the <publication_name>.xml file. See below.
Supported type of mesh datasets:

<publication_name>.xml

  1. Create folder 'publication_resources' in <installation folder>\server\program\services\publisher
  2. The <publication_name>.xml file should be added in 'publication_resources' folder. This file allows to add non-EOS resources into the publication with the name exactly the same as the one from the publication.

<publication_name>.xml example:

<resources>
	<resource>
		<id>1001</id>
		<name>Mesh City Model</name>
		<file>D:/test/20180829_cesium/test_TILES_cESIUM.3dtiles</file>
		<basemap>false</basemap>
		<dem>false</dem>
	</resource>
	<resource>
		<id>1002</id>
		<name>SRTM Orthometric</name>
		<file>O:/Nasa/Shuttle Radar Topography Mission (SRTM)/png_orthometric/srtm.omi</file>
		<basemap>false</basemap>
		<dem>true</dem>
	</resource>
	<resource>
		<id>1003</id>
		<name>Space Shuttle PointCloud</name>
		<file>O:\Nasa\Shuttle Pointcloud\spaceshuttle.opc</file>
		<basemap>false</basemap>
		<dem>false</dem>
	</resource>
</resources>