Skip to content

Commit

Permalink
rename Zazuko to Kurrawong
Browse files Browse the repository at this point in the history
  • Loading branch information
lalewis1 committed Oct 22, 2024
1 parent 7c2bec7 commit 07c2a2d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2024 Zazuko GmbH
Copyright (c) 2024 Kurrawong AI

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
This project is using Apache Jena library to generate a spatial index file from a TDB2 dataset.
Generating the spatial index file before starting a Fuseki instance with GeoSPARQL support can save some precious time when starting the Fuseki instance.

If you want to play with Fuseki with GeoSPARQL support, you may be interested in: https://github.com/zazuko/fuseki-geosparql.

## Build

Expand Down Expand Up @@ -45,7 +44,7 @@ If you want to run it quickly on a dataset on your machine, go in the dataset di
```sh
docker run --rm \
-v$(pwd):/databases/ds \
ghcr.io/zazuko/spatial-indexer:latest \
ghcr.io/kurrawong/spatial-indexer:latest \
--srs http://www.opengis.net/def/crs/OGC/1.3/CRS84
```

Expand All @@ -67,16 +66,16 @@ FROM ...
# make sure you have a Java runtime somewhere in the image

# ...
COPY --from=ghcr.io/zazuko/spatial-indexer:latest /app/spatialindexer.jar .
COPY --from=ghcr.io/kurrawong/spatial-indexer:latest /app/spatialindexer.jar .
# ...

```

Or if you want to directly fetch the `jar` file locally, you can use this command:

```sh
docker pull ghcr.io/zazuko/spatial-indexer:latest
CONTAINER_ID=$(docker create ghcr.io/zazuko/spatial-indexer:latest)
docker pull ghcr.io/kurrawong/spatial-indexer:latest
CONTAINER_ID=$(docker create ghcr.io/kurrawong/spatial-indexer:latest)
docker cp "${CONTAINER_ID}:/app/spatialindexer.jar" .
docker stop "${CONTAINER_ID}"
docker rm "${CONTAINER_ID}"
Expand Down

0 comments on commit 07c2a2d

Please sign in to comment.