Questions tagged [projection]

A projection is the transformation of a set of data from one form into another.

Mathematically speaking a projection is a function that yields the same result if applied multiple times.

The term is used with this meaning in graphics when 'projecting' a 3D scene on a 2D canvas.

The same is often happening when analyzing data with many dimensions (age, gender, number of transactions, ...) and projecting it on fewer dimensions, in the simple case by just dropping dimensions or by creating new dimensions like (might commit fraud).

When dealing with typed languages the dimensions might be attributes of a class. So if I have one or multiple types with attributes (A, B, C, ...) and create from instances of those types instances of a type which has only the attributes (A, B) this is a projection too.

Another example are databases. A projection is an operation which discards some attributes of a tuple, in other words, which omits some columns of a relational database query result. For an object or document database a projection filters out some fields.

After all a database projection yields the same result if applied multiple times, too.

2017 questions
0
votes
0 answers

Geoserver ImagePyramids problem with WMS request in different projection

In Geoserver I have Image Pyramid in EPSG 28992 ( RD New ) The pyramid (as wms service) works fijn when added to the map (QGIS project) in RD New projection. When added to the QGIS map in another projection: WGS84 (EPSG: 4326) I get the time out…
Ada U.
  • 1
  • 2
0
votes
0 answers

2D projection of a 3D model

I have a question about Matlab. I have a three dimensional model (*.stl) in Matlab and I want to create some kind of a two dimensional projection. The attached image shows the visualisation of the model by using the patch command. I want to create a…
Sparta95
  • 1
  • 1
0
votes
1 answer

Querying and sorting a large amount of data in mongo, by fields which might not exist

I'm relatively new to mongo and I have a collection that looks like this: [ { "stored": { "box": [ { "parcelId": "uwb1", "status": "ACTIVE" } …
DunDar
  • 7
  • 3
0
votes
1 answer

R: plotting sky map in Mollweide projection in galactic coordinate system

I need to produce the star map with constellations etc in the Mollweide projection (elliptical projection giving 360 view angle, used in plotting night sky). I found a recipe at https://kimnewzealand.github.io/2019/02/21/celestial-maps/ with the use…
astrsk
  • 375
  • 6
  • 20
0
votes
2 answers

Map Arctic/subarctic regions in ggplot2 with Lambert Conformal Conic projection in R

I am trying to map lat/lon locations in the Arctic/subarctic region using ggplot2, and colour them by type. Here are the packages I'm using: library(ggplot2) library(rgdal) library(ggmap) library(sp) library(dplyr) library(ggspatial) #To use…
cgxytf
  • 421
  • 4
  • 11
0
votes
1 answer

MongoDB Compass Aggregation: Change string to Time

I'm after uploading a dataset to MongoDB with some fields as time. When these were uploaded they went in as strings. Like TOC below: _id:5dd1a91511a7e24b487bce43 Unit:"Fire" Date:"01-Jan-13" TOC:"01:27:19" I am trying to change these using the…
Learner
  • 1
  • 1
0
votes
1 answer

Transpose coordinates from pdf map onto satellite raster image

I have a map in a PDF file with boundaries that I want to plot onto a satellite image. I have made a screenshot, saved it as tiff and imported it as a R raster object. Using click I have outlined the boundaries which I can now plot onto the raster…
Henk
  • 3,634
  • 5
  • 28
  • 54
0
votes
0 answers

Equirectangular to rectilinear with (given points list) point to point mapping

TL;DR - What I'm looking for Given an equirectangular image and a list of (x,y) coords (clicks made by a user on the image), I'd like to get the smallest possible rectilinear image containing all the former coords and a list of (x',y') coords that…
0
votes
1 answer

Rotation around Z from a non-skew, affine orthogonal projection matrix

I can't seem to find an answer to what I thought should be a fairly straightforward problem. I'm trying to get the z-rotation of a matrix which represents the scale, transform and rotation of an orthogonal projection which always looks towards Z.…
Toby Wilson
  • 1,467
  • 5
  • 19
  • 42
0
votes
1 answer

Overlay images on Google Maps via Google Maps Api V3 taken by Drone with Camera Direction downward

Is this possible to Overlay the images on Google Maps with Google Maps Api V3 in the correct projection? I have images taken by drone and I am able to overlay them with the approx bounds, but the images are not displaying in the correct angle as…
0
votes
1 answer

Does Imagemagick have functions to redraw/distort images to the various map projections? ie mollweide, mercator, orthographic

I searched the Imagemagick documentation for this but could not find references to standard geographical map projections. There are other applications that do this, but not with IM's level of precision. "Matthews Map Projection software" is a good…
Molly
  • 59
  • 8
0
votes
1 answer

Slicing a 3D array vs projecting it

Link to array file I am new to image processing and trying to understand projection. So when we have a 3D image, it is simply a 3D numpy array and i view it by slicing a 2D array out of the 3D array. In order to do a orthogonal projection, i simply…
0
votes
1 answer

Orthogonalization by projections versus residuals of linear regression on previous columns

According to this example, orthogonalization by projections is similar to taking the residuals of linear regressions on previous columns. However, when I try their example I am not obtaining the expected result. What is going on here? Why do I not…
A.P.
  • 461
  • 2
  • 8
  • 17
0
votes
1 answer

OpenGL Perspective Projection: How to define left and right

How do I set up coordinates for perspective matrix like in orthographic projection for left, right, top and bottom and add in fov and aspect ratio. I have only seen perspective matrix use other arguments in a method without left, right, bottom, top.…
user5712191
0
votes
0 answers

Is it possible to decompose a camera matrix obtained by resectioning?

I have obtained a camera matrix by establishing correspondences between 3D points in space with 2D points on a screen (resectioning) My custom matrix seems to be working, but I am not being able to apply this matrix to a Unity main camera the same…
1 2 3
99
100