diff --git a/API.md b/API.md index e0981f8e0..d5420f0a3 100644 --- a/API.md +++ b/API.md @@ -157,7 +157,7 @@ var iD = iD() ``` -The Imagery object should follow the structure defined by [editor-imagery-index](https://github.com/osmlab/editor-imagery-index/blob/gh-pages/schema.json) +The Imagery object should follow the structure defined by [editor-layer-index](https://github.com/osmlab/editor-layer-index/blob/gh-pages/schema.json) ### Taginfo diff --git a/FAQ.md b/FAQ.md index 46d62912a..c698dd831 100644 --- a/FAQ.md +++ b/FAQ.md @@ -12,7 +12,7 @@ To report an issue with missing or cloudy imagery: * _For Mapbox Satellite layer:_ Use [this imagery request tool](https://www.mapbox.com/labs/request) to zoom to the location with the issue and draw a box around it. * _For Bing Satellite layer:_ Open the location in [Bing Maps](https://www.bing.com/maps) and click the "Report a problem" link on the sidebar. -iD's list of available background imagery sources come from the [editor-imagery-index](https://github.com/osmlab/editor-imagery-index) +iD's list of available background imagery sources come from the [editor-layer-index](https://github.com/osmlab/editor-layer-index) project. If you know of a more recent imagery source that is licensed for this use, please open a request there with the link and license details. diff --git a/Makefile b/Makefile index 65a4f96a5..ac2bb59d7 100644 --- a/Makefile +++ b/Makefile @@ -117,7 +117,7 @@ translations: node data/update_locales imagery: - npm install editor-imagery-index@git://github.com/osmlab/editor-imagery-index.git#gh-pages + npm install editor-layer-index@git://github.com/osmlab/editor-layer-index.git#gh-pages node data/update_imagery suggestions: diff --git a/data/update_imagery.js b/data/update_imagery.js index fe874103c..05fb04e23 100644 --- a/data/update_imagery.js +++ b/data/update_imagery.js @@ -1,5 +1,5 @@ var fs = require('fs'); -var sources = require('editor-imagery-index/imagery.json'); +var sources = require('editor-layer-index/imagery.json'); var imagery = []; var blacklist = { diff --git a/package.json b/package.json index c2efee119..d378aec43 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "devDependencies": { "chai": "~1.9.2", "d3": "3.5.5", - "editor-imagery-index": "git://github.com/osmlab/editor-imagery-index.git#gh-pages", + "editor-layer-index": "git://github.com/osmlab/editor-layer-index.git#gh-pages", "eslint": "~1.10.3", "glob": "~3.1.21", "happen": "0.1.2",