SnowEx / snowexsql

A project to access the SnowEx database holding data from the NASA SnowEx campaign
https://snowexsql.readthedocs.io/en/latest/readme.html
GNU General Public License v3.0
23 stars 6 forks source link

Drop extra geolocation columns #105

Closed jomey closed 3 weeks ago

jomey commented 3 weeks ago

After discussion with @micah-prime, @micahjohnson150, and @aaarendt we decided that the extra geolocation columns on the point and layer data are not needed. All this can be fetched via the geom column.

This will remove these columns:

    latitude = Column(Float)
    longitude = Column(Float)
    northing = Column(Float)
    easting = Column(Float)
    utm_zone = Column(Integer)