Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Partial fix of #17 #42

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/NewProject.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Creating a New Project
**********************

This document describes the steps necesarry to create a new project within the sim-city web interface.
This document describes the steps necessary to create a new project within the sim-city web interface.

Before you start
================
Expand Down Expand Up @@ -61,7 +61,7 @@ Below I go into the several parts of the project.json.

`Please note that json does not support comments. If you want to copy and paste
parts of the commented sections be sure to remove the comments. Also keep in mind
that parts are sometimes ommitted for readability.`
that parts are sometimes omitted for readability.`

Main Structure
''''''''''''''
Expand All @@ -73,7 +73,7 @@ Below is the main general structure for a project in the sim-city-cs framework.
"title": "MyProject", # The project Title. Any string
"description": "Description for MyProject", # The project Description. Any string
"url": "https://github.com/MyProject", # Url of the project, if any
"isDynamic": true, # isDyanamic means the changes to the
"isDynamic": true, # isDynamic means the changes to the
# project that are made using the user
# interface are saved to the disk
"expertMode": 3, # Level of expertise of the use.
Expand Down Expand Up @@ -178,7 +178,7 @@ Groups
''''''

A group is a set of layers grouped together under a common name.
These groups are displayed under a collapsable name in the left menu under layers.
These groups are displayed under a collapsible name in the left menu under layers.


.. code:: json
Expand All @@ -189,7 +189,7 @@ These groups are displayed under a collapsable name in the left menu under layer
"languages": { # There is some support for multiple
# languages
"en": {
"title": "My Layer", # The name of the layer gropu in english
"title": "My Layer", # The name of the layer group in english
"description": "My Awesome Layer" # Description of the layer group
}
},
Expand Down Expand Up @@ -226,7 +226,7 @@ Example Layer

"enabled": false, # Whether the layer is enabled by default

"opacity": 50 # The opacity (e.g. inverse transparancy)
"opacity": 50 # The opacity (e.g. inverse transparency)
# of the layer
},

Expand Down
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The installation of Re-GIS consists of six steps. Re-GIS relies on the external

2) Install ``docker-compose``. The docker-compose documentation outlines how to `install docker-compose <https://docs.docker.com/compose/install/>`__.

3) Install ``git``. The git webiste explains how to `install git <https://git-scm.com/downloads>`__.
3) Install ``git``. The git website explains how to `install git <https://git-scm.com/downloads>`__.

4) Download Re-GIS from the git website:

Expand Down