Socket
Book a DemoInstallSign in
Socket

glsl-proj4-texture

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

glsl-proj4-texture

pre-calculate proj4 coordinate transformations as a texture

latest
npmnpm
Version
1.0.1
Version published
Weekly downloads
3
50%
Maintainers
1
Weekly downloads
 
Created
Source

glsl-proj4-texture

pre-calculate proj4 coordinate transformations as a texture

example

generate proj4 texture data:

var ptex = require('glsl-proj4-texture')
var tex = ptex({
  src: '+proj=longlat +datum=WGS84',
  dst: '+proj=geocent',
  bounds: [-180,-90,180,90],
  size: [256,256]
})
process.stdout.write(Buffer.from(tex.buffer))

in your vertex shader using glslify:

precision highp float;
#pragma glslify: ptex = require('glsl-proj4-texture')
attribute vec2 position;
uniform sampler2D coordmap;
uniform float size;
void main () {
  vec3 pt = ptex(coordmap,vec4(-180,-90,180,90),position);
  gl_Position = vec4(pt.xy,0,1);
}

usage

usage: glsl-proj4-texture

Write a binary coordinate texture to stdout.

  --size    texture width and height in pixels. default: 128
  --src     proj4 source string
  --dst     proj4 destination string

  -w --west   default: -180
  -s --south  default: -90
  -e --east   default: +180
  -n --north  default: +90

js api

var ptex = require('glsl-proj4-texture')

var data = ptex(opts)

Return a Float32Array texture from:

  • opts.size - texture [width,height]. default: [128,128]
  • opts.src - proj4 source string
  • opts.dst - proj4 destination string
  • opts.bounds - [west,south,east,north] in degrees. default: [-180,-90,180,90]

glsl api

#pragma glslify: ptex = require('glsl-proj4-texture')

vec3 pt = ptex(sampler2D texture, vec4 bbox, vec2 lonlat)

Return a vec3 pt from the texture lookup on a texture created with a bbox mapping lonlat in degrees to screen coordinates in pt.

install

npm install glsl-proj4-texture

license

BSD

FAQs

Package last updated on 12 Jul 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts