Geolocations Using PostGIS

Поделиться
HTML-код
  • Опубликовано: 3 фев 2025

Комментарии • 26

  • @_nikolanenadovic
    @_nikolanenadovic 11 месяцев назад

    Great job done for 5 min!

  • @cubosoft
    @cubosoft 3 года назад

    select a.name, ST_Distance(a.geolocation, b.geolocation) as distance
    from addresses a
    left join addresses b
    on (a.id b.id)
    where b.name = 'Hashrocket JAX'
    --and ST_Distance(a.geolocation, b.geolocation) < 1000
    order by distance;

  • @michaelkenny4329
    @michaelkenny4329 3 года назад +1

    Wow! Really great video and super easy to follow! This is great!!

  • @amrqura
    @amrqura 3 года назад +1

    Love your explanation, easy to follow and very nice.

  • @HT61867
    @HT61867 4 года назад +2

    Amazing video

  • @williantavares4184
    @williantavares4184 4 года назад +2

    Oh my god, thank you so much!

  • @raynip125
    @raynip125 3 года назад

    Very good video! Thank you!

  • @ameyjain3462
    @ameyjain3462 3 года назад +2

    ST_DISTANCE will return distance in mts regardless of the SRID of the geometries? I think with 4326 it will return distance in degrees right?

  • @pradeepnooney3056
    @pradeepnooney3056 3 года назад

    Thank you !!

  • @nc2809
    @nc2809 4 года назад

    So helpful !

  • @gregormeli
    @gregormeli 3 года назад

    hi can u help with st_within function,how can I use this ?

  • @anikettiwari6885
    @anikettiwari6885 3 года назад

    Can someone explain what is the use of SRID?

  • @dianaramirez3508
    @dianaramirez3508 4 года назад

    Hi, I have a temperature dataset in 2 files (.cvd and .xlsx) and I would like to create a geo-referenced map with multiple layers according to the temperature at different time points. I would like to be able to filter by layer and also select one or more combinations. Is this possible? Any advice is appreciated. Thanks in advance for your help!

  • @mandata143
    @mandata143 Год назад

    where have I been?

  • @veggiekeller
    @veggiekeller 4 года назад

    Also I was wondering, why do you have to say ST_Distance(a.geolocation, myrtle_parkway.geolocation) < 1000, instead of distance < 1000. I know it doesn't work, but why is that?

  • @GIS-Engineer
    @GIS-Engineer 5 лет назад

    ST_makepoint doesn't exist error
    Plz give solution

    • @veggiekeller
      @veggiekeller 4 года назад

      Try this. It worked for me!
      ST_MakePoint(longitude::double precision, latitude::double precision);

    • @GIS-Engineer
      @GIS-Engineer 4 года назад +1

      @@veggiekeller thanx a lot

    • @veggiekeller
      @veggiekeller 4 года назад

      @@GIS-Engineer No problem! Did it work ok?

    • @GIS-Engineer
      @GIS-Engineer 4 года назад

      @@veggiekeller plz give me ur email..if u dont have prob.
      I need ur help in postgresql some other question

    • @veggiekeller
      @veggiekeller 4 года назад

      @@GIS-Engineer Sure. veggiekeller@gmail.com. Im learning too, so I might not know everything, but feel free to shoot me an email. I'll answer what I can!

  • @veggiekeller
    @veggiekeller 4 года назад

    This is a really great tutorial, but what you type is hidden unless I put the video on full screen, which makes it difficult to follow along to.

  • @undercrackers56
    @undercrackers56 4 года назад

    I am sure that this is a good tutorial, but I am English (from England) and cannot understand some of the things being said. (Eg: 4:04).

  • @polentaibife
    @polentaibife Год назад

    when i update the geolocation column with ST_MakePoint it only saves the lat long like this "POINT (-49.1162121 -26.9281947)" it doesnt save as it is shown on the video. Anyone else had this problem too?

  • @practical-skills-school
    @practical-skills-school 2 года назад

    Thank you!