Ejemplo n.º 1
0
        /// <summary>
        /// Creates a PrimitiveGroup with serialized ways from tokens.
        /// </summary>
        /// <param name="timestampGranularity">Timestamp granularity defined in PrimitiveBlock.</param>
        /// <returns>PrimitiveGroup with ways from tokens or null if tokens is empty.</returns>
        private PrimitiveGroup BuildWaysPrimitiveGroup(int timestampGranularity)
        {
            PrimitiveGroup result = null;

            if (_wayBuffer.Count > 0) {
                result = new PrimitiveGroup();

                result.Ways = this.BuildWays(timestampGranularity);
            }

            return result;
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Creates a PrimitiveGroup with serialized nodes from tokens.
        /// </summary>
        /// <param name="timestampGranularity">Timestamp granularity defined in PrimitiveBlock.</param>
        /// <param name="positionGranularity">Granularity defined in PrimitiveBlock.</param>
        /// <param name="latOffset">Latitude offset defined in PrimitiveBlock.</param>
        /// <param name="lonOffset">Longitude offset defined in PrimitiveBlock.</param>
        /// <returns>PrimitiveGroup with nodes from tokens or null if tokens is empty.</returns>
        private PrimitiveGroup BuildNodesPrimitiveGroup(int timestampGranularity, int positionGranularity, long latOffset, long lonOffset)
        {
            PrimitiveGroup result = null;

            if (_nodesBuffer.Count > 0) {
                result = new PrimitiveGroup();

                if (this.Settings.UseDenseFormat) {
                    result.DenseNodes = this.BuildDenseNodes(timestampGranularity, positionGranularity, latOffset, lonOffset);
                }
                else {
                    result.Nodes = this.BuildNodes(timestampGranularity, positionGranularity, latOffset, lonOffset);
                }
            }

            return result;
        }
Ejemplo n.º 3
0
        /// <summary>
        ///  Creates a PrimitiveGroup with serialized relations objects from relation tokens.
        /// </summary>
        /// <param name="timestampGranularity">Timestamp granularity defined in PrimitiveBlock.</param>
        /// <returns>PrimitiveGroup with relations from tokens or null if tokens is empty.</returns>
        private PrimitiveGroup BuildRelationsPrimitiveGroup(int timestampGranularity)
        {
            PrimitiveGroup result = null;

            if (_relationBuffer.Count > 0) {
                result = new PrimitiveGroup();

                result.Relations = this.BuildRelations(timestampGranularity);
            }

            return result;
        }
Ejemplo n.º 4
0
        /// <summary>
        /// Processes all ways from the PrimitiveGroup and adds them to the output queue.
        /// </summary>
        /// <param name="block">The PrimitiveBlock that contains specified PrimitiveGroup.</param>
        /// <param name="group">The PrimitiveGroup with nodes to process.</param>
        private void ProcessWays(PrimitiveBlock block, PrimitiveGroup group)
        {
            if (group.Ways == null) {
                return;
            }

            foreach (var way in group.Ways) {
                int refStore = 0;
                List<int> refs = new List<int>(way.Refs.Count);

                for (int i = 0; i < way.Refs.Count; i++) {
                    refStore += (int)way.Refs[i];
                    refs.Add(refStore);
                }

                List<Tag> tags = new List<Tag>();
                if (way.Keys != null) {
                    for (int i = 0; i < way.Keys.Count; i++) {
                        tags.Add(new Tag(block.StringTable[way.Keys[i]], block.StringTable[way.Values[i]]));
                    }
                }

                EntityMetadata metadata = this.ProcessMetadata(way.Metadata, block);

                WayInfo parsed = new WayInfo((int)way.ID, new TagsCollection(tags), refs, metadata);
                _cache.Enqueue(parsed);
            }
        }
Ejemplo n.º 5
0
        /// <summary>
        /// Processes all relations from the PrimitiveGroup and adds them to the output queue.
        /// </summary>
        /// <param name="block">The PrimitiveBlock that contains specified PrimitiveGroup.</param>
        /// <param name="group">The PrimitiveGroup with nodes to process.</param>
        private void ProcessRelations(PrimitiveBlock block, PrimitiveGroup group)
        {
            if (group.Relations == null) {
                return;
            }

            foreach (var relation in group.Relations) {
                int memberRefStore = 0;

                List<RelationMemberInfo> members = new List<RelationMemberInfo>();
                for (int i = 0; i < relation.MemberIds.Count; i++) {
                    memberRefStore += (int)relation.MemberIds[i];
                    string role = block.StringTable[relation.RolesIndexes[i]];

                    EntityType memberType = 0;
                    switch (relation.Types[i]) {
                        case PbfRelationMemberType.Node: memberType = EntityType.Node; break;
                        case PbfRelationMemberType.Way: memberType = EntityType.Way; break;
                        case PbfRelationMemberType.Relation: memberType = EntityType.Relation; break;
                    }

                    members.Add(new RelationMemberInfo() { MemberType = memberType, Reference = memberRefStore, Role = role });
                }

                List<Tag> tags = new List<Tag>();
                if (relation.Keys != null) {
                    for (int i = 0; i < relation.Keys.Count; i++) {
                        tags.Add(new Tag(block.StringTable[relation.Keys[i]], block.StringTable[relation.Values[i]]));
                    }
                }

                EntityMetadata metadata = this.ProcessMetadata(relation.Metadata, block);

                RelationInfo parsed = new RelationInfo((int)relation.ID, new TagsCollection(tags), members, metadata);
                _cache.Enqueue(parsed);
            }
        }
Ejemplo n.º 6
0
 /// <summary>
 /// Processes OSM entities in Primitive group.
 /// </summary>
 /// <param name="block">The PrimitiveBlock that contains specified PrimitiveGroup.</param>
 /// <param name="group">The PrimitiveGroup to process.</param>
 private void ProcessPrimitiveGroup(PrimitiveBlock block, PrimitiveGroup group)
 {
     this.ProcessNodes(block, group);
     this.ProcessDenseNodes(block, group);
     this.ProcessWays(block, group);
     this.ProcessRelations(block, group);
 }
Ejemplo n.º 7
0
        /// <summary>
        /// Processes all nodes in non-dense format from the PrimitiveGroup and adds them to the output queue.
        /// </summary>
        /// <param name="block">The PrimitiveBlock that contains specified PrimitiveGroup.</param>
        /// <param name="group">The PrimitiveGroup with nodes to process.</param>
        private void ProcessNodes(PrimitiveBlock block, PrimitiveGroup group)
        {
            if (group.Nodes == null) {
                return;
            }

            foreach (PbfNode node in group.Nodes) {
                double lat = 1E-09 * (block.LatOffset + (block.Granularity * node.Latitude));
                double lon = 1E-09 * (block.LonOffset + (block.Granularity * node.Longitude));

                List<Tag> tags = new List<Tag>();
                if (node.Keys != null) {
                    for (int i = 0; i < node.Keys.Count; i++) {
                        tags.Add(new Tag(block.StringTable[node.Keys[i]], block.StringTable[node.Values[i]]));
                    }
                }

                EntityMetadata metadata = this.ProcessMetadata(node.Metadata, block);

                NodeInfo parsed = new NodeInfo((int)node.ID, lat, lon, new TagsCollection(tags), metadata);
                _cache.Enqueue(parsed);
            }
        }
Ejemplo n.º 8
0
        /// <summary>
        /// Processes all nodes in dense format from the PrimitiveGroup and adds them to the output queue.
        /// </summary>
        /// <param name="block">The PrimitiveBlock that contains specified PrimitiveGroup.</param>
        /// <param name="group">The PrimitiveGroup with nodes to process.</param>
        private void ProcessDenseNodes(PrimitiveBlock block, PrimitiveGroup group)
        {
            if (group.DenseNodes == null) {
                return;
            }

            long idStore = 0;
            long latStore = 0;
            long lonStore = 0;

            int keyValueIndex = 0;

            long timestampStore = 0;
            long changesetStore = 0;
            int userIdStore = 0;
            int usernameIdStore = 0;

            for (int i = 0; i < group.DenseNodes.Id.Count; i++) {
                idStore += group.DenseNodes.Id[i];
                lonStore += group.DenseNodes.Longitude[i];
                latStore += group.DenseNodes.Latitude[i];

                double lat = 1E-09 * (block.LatOffset + (block.Granularity * latStore));
                double lon = 1E-09 * (block.LonOffset + (block.Granularity * lonStore));

                List<Tag> tags = new List<Tag>();
                if (group.DenseNodes.KeysVals.Count > 0) {
                    while (group.DenseNodes.KeysVals[keyValueIndex] != 0) {
                        string key = block.StringTable[group.DenseNodes.KeysVals[keyValueIndex++]];
                        string value = block.StringTable[group.DenseNodes.KeysVals[keyValueIndex++]];

                        tags.Add(new Tag(key, value));
                    }

                    //Skip '0' used as delimiter
                    keyValueIndex++;
                }

                EntityMetadata metadata = null;
                if (this.Settings.ReadMetadata && group.DenseNodes.DenseInfo != null) {
                    timestampStore += group.DenseNodes.DenseInfo.Timestamp[i];
                    changesetStore += group.DenseNodes.DenseInfo.Changeset[i];
                    userIdStore += group.DenseNodes.DenseInfo.UserId[i];
                    usernameIdStore += group.DenseNodes.DenseInfo.UserNameIndex[i];

                    metadata = new EntityMetadata() {
                        Changeset = (int)changesetStore,
                        Timestamp = _unixEpoch.AddMilliseconds(timestampStore * block.DateGranularity),
                        Uid = userIdStore,
                        User = block.StringTable[usernameIdStore],
                        Version = group.DenseNodes.DenseInfo.Version[i],
                        Visible = true
                    };

                    if (group.DenseNodes.DenseInfo.Visible.Count > 0) {
                        metadata.Visible = group.DenseNodes.DenseInfo.Visible[i];
                    }
                }

                NodeInfo parsed = new NodeInfo((int)idStore, lat, lon, new TagsCollection(tags), metadata);
                _cache.Enqueue(parsed);
            }
        }