Drop l and L tags
They have clashing meanings. And there's no need to have gps coordinates at different resolutions. That's what geohash is good for. This commits drop the GPS coordinate entirely, the next commit brings it back in a different way.
This commit is contained in:
parent
6748d01158
commit
00c9a3686e
1 changed files with 2 additions and 2 deletions
4
main.ts
4
main.ts
|
@ -139,8 +139,8 @@ for (const i in posts) {
|
|||
|
||||
if (geotags == undefined && media.media_metadata && media.media_metadata.photo_metadata) {
|
||||
const options = {
|
||||
geohash: true,
|
||||
gps: true,
|
||||
geohash: true, // l tag per NIP-52, adds multiple tags at decreasing resolution
|
||||
gps: false, // Avoid multiple tags, insert them manually below.
|
||||
city: false,
|
||||
iso31662: false,
|
||||
iso31663: false
|
||||
|
|
Loading…
Reference in a new issue