Přidání validního GPX souboru pro 360° videa Street View

Když přidáváte nové 360° video do Street View většinou neobsahuje informace o poloze. To se dá vyřešit dodatečným nahráním souboru GPX.

Street View Studio však neakceptuje GPX jen se souřadnicemi. Soubor GPX musí obsahovat údaje srovnatelné s délkou videa. Ale s tím už pomůže ChatGPT 😉

Napište něco ve smyslu: Ahoj potřebuju z této souřadnice 50°04’13.9″N 14°25’14.1″E vytvořit gpx s délkou 8 min 4 sec tak 5 metrů od smísta.

https://streetviewstudio.maps.google.com/

https://chatgpt.com

SQL STRING_AGG DISTINCT

Funkce STRING_AGG umožňuje vypsání hodnot ve sloupci v GROUP BY

STRING_AGG(Colour, ',')

Funkce však vypíše všechny položky tedy i duplicitní. MS SQL DISTINCT v STRING_AGG nepodporuje, na rozdíl od Postgresu.

string_agg(distinct (Colour), ', ')

Omezit položky na jedinečné lze vnořeným dotazem:

select 
    code, 
    subcode, 
    (select string_agg(color, ',') from (select distinct color from mytable  t1 where t1.code = t.code and t1.subcode = t.subcode) t) colors,
    (select string_agg(fruit, ',') from (select distinct fruit from mytable  t1 where t1.code = t.code and t1.subcode = t.subcode) t) fruits,
    (select string_agg(car  , ',') from (select distinct car   from mytable  t1 where t1.code = t.code and t1.subcode = t.subcode) t) cars,
    (select string_agg(city , ',') from (select distinct city  from mytable  t1 where t1.code = t.code and t1.subcode = t.subcode) t) cities,
    (select string_agg(name , ',') from (select distinct name  from mytable  t1 where t1.code = t.code and t1.subcode = t.subcode) t) names
from mytable t
group by code, subcode

Více na: https://stackoverflow.com/questions/62055832/string-agg-with-distinct-without-sub-query