Esri / i3s-spec

This repository hosts the specification for Scene Layers which are containers for arbitrarily large amounts of geographic data. The delivery and persistence model for Scene Layers, referred to as Indexed 3d Scene Layer (I3S) and Scene Layer Package (SLPK) respectively, are specified.
Other
318 stars 85 forks source link

The limited of i3s node size? #75

Closed onsummer closed 4 years ago

onsummer commented 4 years ago

hi devs

How big can a node size be?I'd like to know the limitation of a node size in slpk file(gigabytes?terabytes?) Specifically, the geometry binary file size / feature attribute binary file size / texture resources size ...

thanks.

sreinhard commented 4 years ago

Hi AlsumDea,

The recommended total size for a single node is around 1 megabyte. Bigger nodes tend to take a long time to load, which leads to a bad user experience.

There is no specific maximum, however I really recommend against nodes bigger than 100mb, since some clients (browser, mobile) will have trouble handling them.

I hope this helps, Simon

onsummer commented 4 years ago

Hi AlsumDea,

The recommended total size for a single node is around 1 megabyte. Bigger nodes tend to take a long time to load, which leads to a bad user experience.

There is no specific maximum, however I really recommend against nodes bigger than 100mb, since some clients (browser, mobile) will have trouble handling them.

I hope this helps, Simon

Thank u for your reply!