Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/reinterpretcat/utymap
Highly customizable library for procedural world generation based on real map data
https://github.com/reinterpretcat/utymap
augmented-reality gamedev lsystem mapcss maps mapzen natural-earth openstreetmap procedural-generation srtm tree-generator unity3d virtual-reality visualization
Last synced: 6 days ago
JSON representation
Highly customizable library for procedural world generation based on real map data
- Host: GitHub
- URL: https://github.com/reinterpretcat/utymap
- Owner: reinterpretcat
- License: apache-2.0
- Created: 2016-03-07T19:55:15.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-05-16T10:45:13.000Z (over 5 years ago)
- Last Synced: 2024-10-13T19:24:18.085Z (22 days ago)
- Topics: augmented-reality, gamedev, lsystem, mapcss, maps, mapzen, natural-earth, openstreetmap, procedural-generation, srtm, tree-generator, unity3d, virtual-reality, visualization
- Language: C++
- Homepage:
- Size: 66.9 MB
- Stars: 965
- Watchers: 89
- Forks: 151
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- vr-resources - utymap, Highly customizable library for procedural world generation based on real map data
README
[![experimental](https://img.shields.io/badge/stability-experimental-orange.svg?style=flat)](https://github.com/reinterpretcat/utymap)
[![Build Status](https://travis-ci.org/reinterpretcat/utymap.svg?branch=master)](https://travis-ci.org/reinterpretcat/utymap)
[![Coverity](https://scan.coverity.com/projects/10159/badge.svg)](https://scan.coverity.com/projects/reinterpretcat-utymap)
[![Release](https://img.shields.io/github/release/reinterpretcat/utymap.svg)](https://github.com/reinterpretcat/utymap/releases/latest)
[![Join the chat at https://gitter.im/reinterpretcat/utymap](https://badges.gitter.im/reinterpretcat/utymap.svg)](https://gitter.im/reinterpretcat/utymap?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)# Table of Contents
* [Description](#description)
* [Status](#status)
* [Build](#build)
* [Structure](#structure)
* [Source code](#source-code)
* [Documentation](#documentation)
* [Demo scenes](#demo-scenes)
* [Features](#features)
* [Mobile support](#mobile-support)
* [Various map data](#various-map-data)
* [Multiple zoom levels](#multiple-zoom-levels)
* [Non flat terrain](#non-flat-terrain)
* [Custom styles](#custom-styles)
* [Tree generation](#tree-generation)
* [Flexible extension](#flexible-extension)
* [Map editor](#map-editor)
* [Contacts](#contacts)## Description
utymap is a library which provides highly customizable API for procedural world generation using real vector map data, e.g. OpenStreetMap, NaturalEarth. Core logic is written on C++11 and can be used on many platforms as it has no dependency to specific game engine or application framework. It is designed for interactive world creation at different zoom levels, including globe and street level.
## Status
Current master branch has a very experimental version. It is recommended to use the latest release.
## Build
See instructions [here](docs/build.md).
## Structure
### Source code
Project consists of four sub-projects:
* **android** contains Android Studio project to build core library for Android platform.
* **core** contains essential logic written on C++11 for constructing of map based apps: mesh generators, mapcss parser, spatial geo index, etc. It does not depend on any 3D render framework or game engine.
* **docs** contains documentation files.
* **unity** contains examples written on C# which can be reused to build map oriented Unity3D apps using core library. It demonstrates basic use cases: globe zoom level rendering, 3D scene with all details.### Documentation
Best way to start with the project is reading documentation files in _docs_ folder which cover the following topics:
- [Build instructions](docs/build.md)
- [Understanding data model](docs/data.md)
- [Understanding mapcss](docs/mapcss.md)
- [Terrain generator](docs/terrain.md)
- [Using textures](docs/texture.md)
- [Tree generation via L System](docs/lsystem.md)
- [How to..](docs/howto.md)### Demo scenes
The simplest way to explore the project is to check source code of demo scenes:
* **Import** scene shows how to import map data from a file. Please note, that import and rendering logic depends on mapcss rules which means you cannot use arbitrary mapcss with arbitrary data format.
* **Elevation** scene shows how elevation support works. Please note, as scene loads multiple tiles at once, mapzen server might reject some of requests. Also, first time loading takes time: just wait a little bit and restart the scene again. Once processed, all downloaded data is cached inside _StreamingAssets/index_ folder.
* **Customization** scene demonstrates three aspects of customization:
* How to use custom logic for building game objects from existing map data
* How to use custom prefabs to replace arbitrary elements on the map
* How to add new elements to map data and scene
* **Search** scene demonstrates offline search API in action which can be used for exploring nearby objects by their specific characteristics (bus stops, bars, etc.)
* **Third Person** contains default third person character from standard assets which can walk around rendered environment. Another interesting part here is how text search can be used to get nearest address from OSM data.
* **Map** scene is the most advanced one. It is designed to be a full functional map component which can be used in mobile builds. It supports zoom levels from globe overview till street view.## Features
### Mobile support
Performance is constantly in main focus. As result, utymap can be used on mobile phone: just check demo app in play store. Of course, there are still areas for improvements.
### Various map data
utymap can use various vector map data sources and file formats:
* Mapzen (geojson)
* OpenStreetMap (pbf, xml)
* NaturalEarth (shape data)Theoretically, you can extend utymap with any vector map data format support.
### Multiple zoom levels
utymap can load your scene at different zoom levels:
[![Zoom:Demo](http://img.youtube.com/vi/683Q876QrO0/0.jpg)](https://www.youtube.com/watch?v=683Q876QrO0)
In this demo, mapzen data is used for zoom levels from 1 till 15 and OpenStreetMap for zoom level 16.
### Non flat terrain
utymap encapsulates elevation processing internally to support different elevation data providers:
* raw SRTM
* mapzen elevation data
* your own elevation data by conversion in simple text formatThis old demo is built using elevation data provided by mapzen:
[![Elevation:Prague](http://img.youtube.com/vi/mZzOWsoM5EY/0.jpg)](https://www.youtube.com/watch?v=mZzOWsoM5EY)
### Custom styles
utymap supports styling via CSS-like language:
```CSS
area|z16[building],
area|z16[building:part] {
builder: building;
height: 12m;
min-height: 0m;
facade-color: gradient(#c0c0c0, #a9a9a9 50%, #808080);
...
}
area|z16[roof:shape=skillion] {
roof-type: skillion;
}
area|z16[building:color] {
roof-color: eval("tag('building:color')");
}
area|z16[building:material=brick] {
facade-color: gradient(#0fff96, #0cc775 50%, #066139);
facade-texture-type: brick;
}
```For example, you can have different styles for different seasons of year. Or you can vary textures based on region
### Tree generation
utymap can consume map data to generate more complex tries via custom [L-System implementation](docs/lsystem.md)
### Flexible extension
If you want to build or use your own models, extend application logic (for example, by attaching MonoBehaviour to generated meshes), you can do it using custom scripts in Unity:
```C#
public GameObject Build(Tile tile, Element element)
{
GameObject gameObject = GameObject.CreatePrimitive(PrimitiveType.Cube);
gameObject.name = GetName(element);var transform = gameObject.transform;
transform.position = tile.Projection.Project(element.Geometry[0],
GetMinHeight(element) + element.Heights[0]);
transform.localScale = new Vector3(2, 2, 2);gameObject.GetComponent().mesh.uv = GetUV(element);
gameObject.GetComponent().sharedMaterial = GetMaterial(element);return gameObject;
}
```Map data is encapsulated via Element class which provides access to raw geometry and attributes.
### Map editor
You can build your own objects (buildings, roads, etc.) on top of generated objects:
```C#
IMapDataEditor editor = _compositionRoot.GetService();
var node = new Element(7,
new GeoCoordinate[] { new GeoCoordinate(52.53182, 13.38762) },
new double[] { 0 },
new Dictionary() { { "name", "Near me" } },
new Dictionary());editor.Add(MapStorageType.InMemory, node, new Range(minLevelOfDetail, maxLevelOfDetail));
```This data can be stored in multiple data storages located on disk or memory to keep original map data untouched.
## Contacts
Do not hesitate to contact me using gitter chat link above.