archesproject / arches-her

5 stars 12 forks source link

v75 upgrade - Add BNG coordinate system to settings.py #1175

Closed SDScandrettKint closed 1 month ago

SDScandrettKint commented 2 months ago

Should BNG be added to the settings of the Arches for HER project by default?

i.e adding the following

PREFERRED_COORDINATE_SYSTEMS = (
    {
        "name": "BNG",
        "srid": "27700",
        "proj4": "+proj=tmerc +lat_0=49 +lon_0=-2 +k=0.9996012717 +x_0=400000 +y_0=-100000 +ellps=airy +datum=OSGB36 +units=m +no_defs",
        "default": True,
    },
    {"name": "LatLong", "srid": "4326", "proj4": "+proj=longlat +datum=WGS84 +no_defs", "default": False},  # Required
)

It might also be nice to add TIME_ZONE = "Europe/London" also.

@aj-he interested in whether you think this should be in the project by default?

aj-he commented 1 month ago

fixed in #1187