Skip to content

Commit

Permalink
Update the README
Browse files Browse the repository at this point in the history
  • Loading branch information
thatbudakguy committed Feb 23, 2024
1 parent dc222ea commit aecef98
Showing 1 changed file with 17 additions and 18 deletions.
35 changes: 17 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

A Ruby toolkit for managing geospatial metadata, including:

- tasks for cloning, updating, and indexing OpenGeoMetdata metadata
- tasks for cloning, updating, and indexing OpenGeoMetadata metadata
- library for converting metadata between standards

## Installation
Expand All @@ -19,11 +19,15 @@ gem 'geo_combine'

And then execute:

$ bundle install
```sh
$ bundle install
```

Or install it yourself as:

$ gem install geo_combine
```sh
$ gem install geo_combine
```

## Usage

Expand Down Expand Up @@ -71,6 +75,14 @@ GeoCombine::Migrators::V1AardvarkMigrator.new(v1_hash: record, collection_id_map

### OpenGeoMetadata

#### Logging

Some of the tools and scripts in this gem use Ruby's `Logger` class to print information to `$stderr`. By default, the log level is set to `Logger::INFO`. For more verbose information, you can set the `LOG_LEVEL` environment variable to `DEBUG`:

```sh
$ LOG_LEVEL=DEBUG bundle exec rake geocombine:clone
```

#### Clone OpenGeoMetadata repositories locally

```sh
Expand Down Expand Up @@ -124,23 +136,14 @@ To index into Solr, GeoCombine requires a Solr instance that is running the
$ bundle exec rake geocombine:index
```

Indexes the `geoblacklight.json` files in cloned repositories to a Solr index running at http://127.0.0.1:8983/solr

##### Custom Solr location
If Blacklight is installed in the ruby environment and a solr index is configured, the rake task will use the solr index configured in the Blacklight application (this is the case when invoking GeoCombine from your GeoBlacklight installation). If Blacklight is unavailable, the rake task will try to find a Solr instance running at `http://localhost:8983/solr/blacklight-core`.

Solr location can also be specified by an environment variable `SOLR_URL`.
You can also set a the Solr instance URL using `SOLR_URL`:

```sh
$ SOLR_URL=http://www.example.com:1234/solr/collection bundle exec rake geocombine:index
```

Depending on your Solr instance's performance characteristics, you may want to
change the [`commitWithin` parameter](https://lucene.apache.org/solr/guide/6_6/updatehandlers-in-solrconfig.html) (in milliseconds):

```sh
$ SOLR_COMMIT_WITHIN=100 bundle exec rake geocombine:index
```

### Harvesting and indexing documents from GeoBlacklight sites

GeoCombine provides a Harvester class and rake task to harvest and index content from GeoBlacklight sites (or any site that follows the Blacklight API format). Given that the configurations can change from consumer to consumer and site to site, the class provides a relatively simple configuration API. This can be configured in an initializer, a wrapping rake task, or any other ruby context where the rake task our class would be invoked.
Expand Down Expand Up @@ -186,10 +189,6 @@ Crawl delays can be configured (in seconds) either globally for all sites or on

Solr's commitWithin option can be configured (in milliseconds) by passing a value under the commit_within key.

##### Debugging (default: false)

The harvester and indexer will only `puts` content when errors happen. It is possible to see some progress information by setting the debug configuration option.

#### Transforming Documents

You may need to transform documents that are harvested for various purposes (removing fields, adding fields, omitting a document all together, etc). You can configure some ruby code (a proc) that will take the document in, transform it, and return the transformed document. By default the indexer will remove the `score`, `timestamp`, and `_version_` fields from the documents harvested. If you provide your own transformer, you'll likely want to remove these fields in addition to the other transformations you provide.
Expand Down

0 comments on commit aecef98

Please sign in to comment.