use of de.topobyte.osm4j.core.model.iface.OsmTag in project osm4j-pbf by topobyte.
the class PrimParser method convert.
public List<OsmNode> convert(Osmformat.DenseNodes nodes) {
List<OsmNode> results = new ArrayList<>(nodes.getIdCount());
Osmformat.DenseInfo denseInfo = null;
boolean hasVisible = false;
if (fetchMetadata && nodes.hasDenseinfo()) {
denseInfo = nodes.getDenseinfo();
hasVisible = denseInfo.getVisibleCount() != 0;
}
long id = 0, lat = 0, lon = 0;
int version = 0, uid = 0, userSid = 0;
long timestamp = 0, changeset = 0;
// Index into the keysvals array.
int j = 0;
for (int i = 0; i < nodes.getIdCount(); i++) {
id += nodes.getId(i);
lat += nodes.getLat(i);
lon += nodes.getLon(i);
double latf = parseLat(lat), lonf = parseLon(lon);
List<OsmTag> tags = new ArrayList<>();
OsmMetadata metadata = null;
if (fetchMetadata && nodes.hasDenseinfo()) {
version = denseInfo.getVersion(i);
timestamp += denseInfo.getTimestamp(i);
uid += denseInfo.getUid(i);
userSid += denseInfo.getUserSid(i);
changeset += denseInfo.getChangeset(i);
boolean visible = true;
if (hasVisible) {
visible = denseInfo.getVisible(i);
}
metadata = new Metadata(version, timestamp * dateGranularity, uid, strings[userSid], changeset, visible);
}
// If empty, assume that nothing here has keys or vals.
if (nodes.getKeysValsCount() > 0) {
while (nodes.getKeysVals(j) != 0) {
int keyid = nodes.getKeysVals(j++);
int valid = nodes.getKeysVals(j++);
tags.add(new Tag(strings[keyid], strings[valid]));
}
// Skip over the '0' delimiter.
j++;
}
results.add(new Node(id, lonf, latf, tags, metadata));
}
return results;
}
use of de.topobyte.osm4j.core.model.iface.OsmTag in project osm4j-core by topobyte.
the class ImplUtil method cloneTags.
private static List<? extends OsmTag> cloneTags(OsmEntity entity) {
List<Tag> tags = new ArrayList<>();
for (int i = 0; i < entity.getNumberOfTags(); i++) {
OsmTag tag = entity.getTag(i);
tags.add(new Tag(tag.getKey(), tag.getValue()));
}
return tags;
}
use of de.topobyte.osm4j.core.model.iface.OsmTag in project osm4j-core by topobyte.
the class OsmModelUtil method getTagsAsMap.
/**
* Construct a Map containing all tags of this entity.
*
* @param entity
* an osm entity.
* @return the entity's tags as a map.
*/
public static Map<String, String> getTagsAsMap(OsmEntity entity) {
Map<String, String> map = new HashMap<>();
for (int i = 0; i < entity.getNumberOfTags(); i++) {
OsmTag tag = entity.getTag(i);
map.put(tag.getKey(), tag.getValue());
}
return map;
}
use of de.topobyte.osm4j.core.model.iface.OsmTag in project osm4j-core by topobyte.
the class OsmModelUtil method getTagsAsList.
public static List<? extends OsmTag> getTagsAsList(OsmEntity entity) {
List<OsmTag> list = new ArrayList<>();
for (int i = 0; i < entity.getNumberOfTags(); i++) {
OsmTag tag = entity.getTag(i);
list.add(tag);
}
return list;
}
use of de.topobyte.osm4j.core.model.iface.OsmTag in project osm4j-pbf by topobyte.
the class PbfWriter method addTagsToStringTable.
private void addTagsToStringTable(Collection<? extends OsmEntity> entities) {
for (OsmEntity entity : entities) {
for (int k = 0; k < entity.getNumberOfTags(); k++) {
OsmTag tag = entity.getTag(k);
stringTable.incr(tag.getKey());
stringTable.incr(tag.getValue());
}
}
}
Aggregations