https://github.com/georocket/georocket
🚀 GeoRocket - A high-performance data store for geospatial files.
https://github.com/georocket/georocket
cloud data-store geojson geospatial xml
Last synced: 5 months ago
JSON representation
🚀 GeoRocket - A high-performance data store for geospatial files.
- Host: GitHub
- URL: https://github.com/georocket/georocket
- Owner: georocket
- License: apache-2.0
- Created: 2016-05-06T11:34:34.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2024-10-10T12:32:36.000Z (over 1 year ago)
- Last Synced: 2024-10-28T06:05:22.273Z (over 1 year ago)
- Topics: cloud, data-store, geojson, geospatial, xml
- Language: Kotlin
- Homepage: https://georocket.io
- Size: 4.61 MB
- Stars: 74
- Watchers: 9
- Forks: 27
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
> A high-performance data store for geospatial files
[](http://www.apache.org/licenses/LICENSE-2.0) [](https://github.com/georocket/georocket/actions)
GeoRocket can store geospatial files such as *3D city models (CityGML)*, *GML*
and *GeoJSON* files. Any file saved in GeoRocket can be completely restored
later. No information is lost.
GeoRocket offers a wide range of *high-speed search features*. You can perform
spatial queries and search for attributes, layers and tags.
GeoRocket is *ready for the Cloud*. It is event-driven and designed for
*high performance* and *scalability*. GeoRocket offers APIs and an HTTP
interface which allows it to be integrated in existing applications.
## Official website
For more information about GeoRocket including comprehensive documentation,
visit the official website:
🚀 https://georocket.io
## Building
> [!NOTE]
> We are in the process of rewriting GeoRocket in Rust to improve performance and reduce memory footprint. You can still access the Kotlin implementation in the `kotlin` directory. The instructions below apply to the Kotlin implementation.
GeoRocket requires Java 8 or higher. Run the following command to build
all subprojects:
cd kotlin
./gradlew build
The script automatically downloads the correct Gradle version, so you won't
have to do anything else. If everything runs successfully you may create a
distribution:
./gradlew installDist
If the command finishes successfully, you will find the distribution under
`build/install`.
### Building the Docker image
You may build the Docker image for GeoRocket Server locally with the following
commands:
./gradlew installDist
docker build -t georocket .
## Running GeoRocket
First, follow the instructions on building the GeoRocket distribution above.
Then start GeoRocket with the following command:
build/install/georocket/bin/georocket
You may also run it in server mode (recommended for production use):
build/install/georocket/bin/georocket server
If you don't provide any arguments the command-line application will print
usage instructions.
### Running GeoRocket Server inside a Docker container
The fastest way to run GeoRocket Server is to use the Docker image from
Docker Hub:
docker run --name georocket -d -p 63020:63020 georocket/georocket server
This launches GeoRocket Server in a Docker container and makes it available at
.
Read the [full instructions](https://hub.docker.com/r/georocket/georocket/) on
the Docker image to get more information.
License
-------
GeoRocket is licensed under the
[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0).
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.