Home
last modified time | relevance | path

Searched refs:pixel_to_world (Results 1 – 25 of 28) sorted by relevance

12

/dports/astro/py-astropy/astropy-5.0/astropy/nddata/mixins/tests/
H A Dtest_ndslicing.py94 assert nd2.wcs.pixel_to_world(1) == nd.wcs.pixel_to_world(3)
120 assert nd2.wcs.pixel_to_world(1, 5, 1) == nd.wcs.pixel_to_world(5, 5, 3)
138 assert nd2.wcs.pixel_to_world(1) == nd.wcs.pixel_to_world(3)
157 assert nd2.wcs.pixel_to_world(1) == nd.wcs.pixel_to_world(3)
/dports/astro/py-astropy/astropy-5.0/astropy/wcs/wcsapi/tests/
H A Dtest_high_level_api.py62 q1, q2 = wcs.pixel_to_world(1, 2)
116 c1, c2 = wcs.pixel_to_world(1, 2, 3, 4)
167 q = wcs.pixel_to_world(1)
178 c1, c2 = wcs.pixel_to_world(1, 2, 3, 4)
187 c1, c2 = wcs.pixel_to_world(1, 2, 3, 4)
H A Dtest_fitswcs.py74 coord = wcs.pixel_to_world(29)
151 coord = wcs.pixel_to_world(29, 39)
548 time = wcs.pixel_to_world(position)
627 time = wcs.pixel_to_world(10)
643 time = wcs.pixel_to_world(10)
677 time = wcs.pixel_to_world(10)
691 time = wcs.pixel_to_world(10)
708 time = wcs.pixel_to_world(10)
726 time = wcs.pixel_to_world(10)
741 time = wcs.pixel_to_world(10)
[all …]
H A Dtest_high_level_wcs_wrapper.py51 coord = wrapper.pixel_to_world(1, 2)
83 wrapper.pixel_to_world(1, 2)
/dports/graphics/openorienteering-mapper/mapper-0.9.2/src/templates/
H A Dtemplate_image.cpp426 option.transform.pixel_to_world = QTransform(world_file); in worldFileOption()
476 auto& pixel_to_world = options.effective.transform.pixel_to_world; in findAvailableGeoreferencing() local
477 pixel_to_world = { in findAvailableGeoreferencing()
478 pixel_to_world.m11() * factor, pixel_to_world.m12() * factor, 0, in findAvailableGeoreferencing()
479 pixel_to_world.m21() * factor, pixel_to_world.m22() * factor, 0, in findAvailableGeoreferencing()
480 pixel_to_world.m31() * factor, pixel_to_world.m32() * factor, 1 in findAvailableGeoreferencing()
648 georef->setTransformationDirectly(available_georef.effective.transform.pixel_to_world); in calculateGeoreferencing()
H A Dtemplate_image.h75 QTransform pixel_to_world = {}; ///< The transformation from pixel space to CRS space. member
/dports/graphics/gnash/gnash-2b3bdede0305c4fc3ad21a0a4197330606c9b880/librender/
H A DRenderer.h397 virtual point pixel_to_world(int x, int y) const = 0;
399 geometry::Range2d<int> pixel_to_world( in pixel_to_world() function
402 point topleft = pixel_to_world( in pixel_to_world()
404 point bottomright = pixel_to_world( in pixel_to_world()
H A Dtestr.cpp513 z = renderer->pixel_to_world(x, y); in test_geometry()
524 worldbounds = renderer->pixel_to_world(pixelbounds); in test_geometry()
/dports/astro/py-astropy/astropy-5.0/astropy/wcs/wcsapi/
H A Dhigh_level_api.py62 def pixel_to_world(self, *pixel_arrays): member in BaseHighLevelWCS
87 return self.pixel_to_world(*index_arrays[::-1])
316 def pixel_to_world(self, *pixel_arrays): member in HighLevelWCSMixin
/dports/graphics/gnash/gnash-2b3bdede0305c4fc3ad21a0a4197330606c9b880/libdevice/directfb/
H A DRenderer_DirectFB.h58 gnash::point pixel_to_world(int, int);
H A DRenderer_DirectFB.cpp145 Renderer_DirectFB::pixel_to_world(int x, int y) in pixel_to_world() function in gnash::renderer::DirectFB::Renderer_DirectFB
/dports/astro/py-astropy/astropy-5.0/astropy/wcs/tests/
H A Dtest_wcs.py1518 assert w.pixel_to_world(0, 0).separation(w0.pixel_to_world(0, 0)) < 1.e-3 * u.mas
1519 assert w.pixel_to_world(*cen).separation(w0.pixel_to_world(*cen)) < 1.e-3 * u.mas
1521 assert w.pixel_to_world(*cen).separation(w1.pixel_to_world(*(siz / 2))) < 1.e-3 * u.mas
1529 assert w.pixel_to_world(*cen).separation(w2.pixel_to_world(*(siz / 2))) < 1.e-3 * u.mas
H A Dtest_utils.py1159 world_pix = true_wcs.pixel_to_world(x, y)
1176 world_pix_new = fit_wcs.pixel_to_world(x, y)
1282 coord = wcs.pixel_to_world(x_in, y_in)
/dports/astro/py-astropy/astropy-5.0/docs/wcs/
H A Dindex.rst67 `~astropy.wcs.wcs.WCS.pixel_to_world` to yield the simplest WCS
76 >>> sky = w.pixel_to_world(30, 40)
H A Dwcsapi.rst35 :meth:`~astropy.wcs.wcsapi.BaseHighLevelWCS.pixel_to_world` and
106 :meth:`~astropy.wcs.wcsapi.BaseHighLevelWCS.pixel_to_world` and
110 >>> coord = wcs.pixel_to_world([1, 2], [4, 3]) # doctest: +REMOTE_DATA
176 >>> celestial, spectral = wcs.pixel_to_world([1, 2], [4, 3], [2, 3]) # doctest: +REMOTE_DATA
/dports/graphics/gnash/gnash-2b3bdede0305c4fc3ad21a0a4197330606c9b880/librender/cairo/
H A DRenderer_cairo.h55 virtual point pixel_to_world(int x, int y) const;
H A DRenderer_cairo.cpp591 Renderer_cairo::pixel_to_world(int x, int y) const in pixel_to_world() function in gnash::Renderer_cairo
/dports/graphics/gnash/gnash-2b3bdede0305c4fc3ad21a0a4197330606c9b880/librender/opengles1/
H A DRenderer_gles1.cpp171 Renderer_gles1::pixel_to_world(int x, int y) const in pixel_to_world() function in gnash::renderer::gles1::Renderer_gles1
H A DRenderer_gles1.h147 gnash::point pixel_to_world(int, int) const;
/dports/graphics/gnash/gnash-2b3bdede0305c4fc3ad21a0a4197330606c9b880/librender/openvg/
H A DOpenVGRenderer.h92 gnash::point pixel_to_world(int, int) const;
H A DOpenVGRenderer.cpp371 Renderer_ovg::pixel_to_world(int x, int y) const in pixel_to_world() function in gnash::renderer::openvg::Renderer_ovg
/dports/graphics/openorienteering-mapper/mapper-0.9.2/src/gdal/
H A Dgdal_image_reader.cpp289 georef.transform.pixel_to_world = { geo_transform[1], geo_transform[2], in readGeoTransform()
/dports/astro/py-astropy/astropy-5.0/astropy/wcs/
H A Dutils.py798 world_outputs = wcs_in.pixel_to_world(*inputs)
822 world_outputs = wcs_in.pixel_to_world(*pixel_inputs)
/dports/graphics/openorienteering-mapper/mapper-0.9.2/src/gui/
H A Dprint_widget.cpp1244 const QTransform pixel_to_world(xscale, yskew, 0, xskew, yscale, 0, top_left.x(), top_left.y()); in exportWorldFile() local
1245 const WorldFile world_file(pixel_to_world); in exportWorldFile()
/dports/graphics/gnash/gnash-2b3bdede0305c4fc3ad21a0a4197330606c9b880/librender/opengl/
H A DRenderer_ogl.cpp951 pixel_to_world(int x, int y) const in pixel_to_world() function in gnash::renderer::opengl::Renderer_ogl

12