Skip to content

Package pgx-geos provides PostGIS and GEOS support for github.com/jackc/pgx/v5 via github.com/twpayne/go-geos.

License

Notifications You must be signed in to change notification settings

twpayne/pgx-geos

Folders and files

NameName
Last commit message
Last commit date

Latest commit

2fcaf28 · Jan 15, 2025

History

37 Commits
Dec 27, 2024
Jan 15, 2025
Dec 27, 2024
Feb 3, 2024
Jun 6, 2024
Jun 6, 2024
Jun 6, 2024
Jun 9, 2024
Jun 9, 2024
Jul 1, 2024
Jun 6, 2024
Jan 15, 2025
Jan 15, 2025
Jun 9, 2024
Jun 6, 2024

Repository files navigation

pgx-geos

PkgGoDev

Package pgx-geos provides PostGIS and GEOS support for github.com/jackc/pgx/v5 via github.com/twpayne/go-geos.

Usage

Single connection

import (
    // ...

    "github.com/jackc/pgx/v5"
    "github.com/twpayne/go-geos"
    pgxgeos "github.com/twpayne/pgx-geos"
)

// ...

    connectionStr := os.Getenv("DATABASE_URL")
    conn, err := pgx.Connect(context.Background(), connectionStr)
    if err != nil {
        return err
    }
    if err := pgxgeos.Register(ctx, conn, geos.NewContext()); err != nil {
        return err
    }

Connection pool

import (
    // ...

    "github.com/jackc/pgx/v5/pgxpool"
)

// ...

    config, err := pgxpool.ParseConfig(connectionStr)
    if err != nil {
        return err
    }
    config.AfterConnect = func(ctx context.Context, conn *pgx.Conn) error {
        if err := pgxgeos.Register(ctx, conn, geos.NewContext()); err != nil {
            return err
        }
        return nil
    }

    pool, err := pgxpool.NewWithConfig(context.Background(), config)
    if err != nil {
        return err
    }

License

MIT

About

Package pgx-geos provides PostGIS and GEOS support for github.com/jackc/pgx/v5 via github.com/twpayne/go-geos.

Topics

Resources

License

Stars

Watchers

Forks

Languages