Skip to content

Commit

Permalink
Repo URL updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rjrudin committed Apr 25, 2023
1 parent 4b5f373 commit 97aecdf
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg?style=social)](https://opensource.org/licenses/Apache-2.0)

![GitHub release](https://img.shields.io/github/release/marklogic-community/marklogic-geo-data-services.svg?style=social)
![GitHub release](https://img.shields.io/github/release/marklogic/marklogic-geo-data-services.svg?style=social)

# MarkLogic Geo Data Services

Expand Down
4 changes: 2 additions & 2 deletions docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ heading_anchors: true

# Aux links for the upper right navigation
aux_links:
"marklogic-community/marklogic-geo-data-services":
- "https://github.com/marklogic-community/marklogic-geo-data-services"
"marklogic/marklogic-geo-data-services":
- "https://github.com/marklogic/marklogic-geo-data-services"

enable_copy_code_button: true
4 changes: 2 additions & 2 deletions docs/create-service-descriptor.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ very similar to how ArcGIS defines a
the intent is not to conform exactly to the ArcGIS definition.

The documentation below describes how to load and define service descriptors. For a working example, please see the
[example project](https://github.com/marklogic-community/marklogic-geo-data-services/tree/master/examples/sample-project/src/main/ml-data/example/services)
[example project](https://github.com/marklogic/marklogic-geo-data-services/tree/master/examples/sample-project/src/main/ml-data/example/services)
in this repository.

If you plan on querying data via a MarkLogic TDE template, please read the instructions for
Expand Down Expand Up @@ -165,7 +165,7 @@ clients will use the [MarkLogic Koop provider](https://github.com/koopjs/koop-pr
that depends on GDS.

The examples below assume that you have installed the
[example project](https://github.com/marklogic-community/marklogic-geo-data-services/tree/master/examples/sample-project)
[example project](https://github.com/marklogic/marklogic-geo-data-services/tree/master/examples/sample-project)
and thus use port 8095. Change this as needed for your own installation of GDS.

Additionally, it is recommended to authenticate as a [user with the GDS roles](create-user.md) as opposed to an admin
Expand Down
2 changes: 1 addition & 1 deletion docs/create-tde.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ in this section.

The [MarkLogic docs for TDE templates](https://docs.marklogic.com/guide/app-dev/TDE) will help you with creating a
template. It is often easier though to start with an existing template and customize it. To do so, you can use
[this example TDE file](https://github.com/marklogic-community/marklogic-geo-data-services/blob/master/examples/sample-project/src/main/ml-schemas/tde/example-gkg.xml)
[this example TDE file](https://github.com/marklogic/marklogic-geo-data-services/blob/master/examples/sample-project/src/main/ml-schemas/tde/example-gkg.xml)
as a starting point.

A requirement for your TDE is that it must either declare a column named "OBJECTID" or it must declare a column with
Expand Down
2 changes: 1 addition & 1 deletion docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ If you have already added GDS to your MarkLogic application and wish to upgrade,
of the GDS dependency in your build.gradle file.

Additionally, be sure to read
[the release notes](https://github.com/marklogic-community/marklogic-geo-data-services/releases) when you upgrade,
[the release notes](https://github.com/marklogic/marklogic-geo-data-services/releases) when you upgrade,
particularly to see if any changes should be made to your service descriptors.

2 changes: 1 addition & 1 deletion docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use this tutorial as a guide for doing so - just ignore any steps that involve s
files that already exist in your project.

The finished project can be examined in
[this example project](https://github.com/marklogic-community/marklogic-geo-data-services/tree/master/examples/arcgis-hub-example).
[this example project](https://github.com/marklogic/marklogic-geo-data-services/tree/master/examples/arcgis-hub-example).

## Create a project

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function buildBoundingQuery(requestQuery, layerModel) {
}

// alwaysIncludeQuery is an optional feature for a layer definition to ensure that certain data is always included,
// which implies usage of an "or" query. See https://github.com/marklogic-community/marklogic-geo-data-services/issues/76
// which implies usage of an "or" query. See https://github.com/marklogic/marklogic-geo-data-services/issues/76
// for the original requirements.
return layerModel.alwaysIncludeQuery ?
cts.orQuery([queryDeserializer.query(layerModel.alwaysIncludeQuery), cts.andQuery(boundingQueries)]) :
Expand Down

0 comments on commit 97aecdf

Please sign in to comment.