Home
last modified time | relevance | path

Searched refs:spatial_reference (Results 1 – 10 of 10) sorted by relevance

/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/gdal-0.6.0/src/vector/
H A Dgeometry.rs232 pub fn spatial_reference(&self) -> Option<SpatialRef> { in spatial_reference() method
302 assert!(geom.spatial_reference().is_none()); in test_spatial_reference()
305 assert!(geom.spatial_reference().is_none()); in test_spatial_reference()
309 assert!(geom.spatial_reference().is_none()); in test_spatial_reference()
313 assert!(geom.spatial_reference().is_some()); in test_spatial_reference()
H A Dlayer.rs116 pub fn spatial_reference(&self) -> Result<SpatialRef> { in spatial_reference() method
/dports/graphics/openorienteering-mapper/mapper-0.9.2/src/gdal/
H A Dogr_file_format.cpp240 QString toPrettyWkt(OGRSpatialReferenceH spatial_reference) in toPrettyWkt() argument
243 OSRExportToPrettyWkt(spatial_reference, &srs_wkt_raw, 0); in toPrettyWkt()
463 auto spatial_reference = OGR_L_GetSpatialRef(layer); in AverageCoords() local
464 if (!spatial_reference) in AverageCoords()
782 auto spatial_reference = OGR_L_GetSpatialRef(layer); in importGeoreferencing() local
783 if (!spatial_reference) in importGeoreferencing()
788 if (OSRIsLocal(spatial_reference)) in importGeoreferencing()
791 local_srs.reset(OSRClone(spatial_reference)); in importGeoreferencing()
803 if (OSRIsProjected(spatial_reference)) in importGeoreferencing()
810 suitable_srs.reset(OSRClone(spatial_reference)); in importGeoreferencing()
[all …]
H A Dgdal_image_reader.cpp301 auto const spatial_reference = OSRNewSpatialReference(gdal_spec); in toProjSpec() local
303 auto const ogr_error = OSRExportToProj4(spatial_reference, &proj_spec_cstring); in toProjSpec()
306 OSRDestroySpatialReference(spatial_reference); in toProjSpec()
/dports/www/osrm-backend/osrm-backend-5.26.0/third_party/libosmium/include/
H A Dgdalcpp.hpp227 explicit SRS(const OGRSpatialReference& spatial_reference) : in SRS() argument
228 m_spatial_reference(spatial_reference) { in SRS()
/dports/databases/grass7/grass-7.8.6/vector/v.in.pdal/
H A Dmain.cpp500 pdal::SpatialReference spatial_reference = reader->getSpatialReference(); in main() local
501 if (spatial_reference.empty()) in main()
504 spatial_reference. in main()
/dports/astro/libosmium/libosmium-2.17.2/include/
H A Dgdalcpp.hpp233 explicit SRS(const OGRSpatialReference& spatial_reference) : in SRS() argument
234 m_spatial_reference(spatial_reference) { in SRS()
/dports/science/nest/nest-simulator-3.1/testsuite/pytests/
H A Dtest_get_set.py486 spatial_reference = {'network_size': 4,
491 self.assertEqual(spatial_nodes.spatial, spatial_reference)
/dports/math/pdal/PDAL-2.3.0/plugins/tiledb/test/
H A DTileDBReaderTest.cpp223 TEST_F(TileDBReaderTest, spatial_reference) in TEST_F() argument
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/gdal-0.6.0/src/vector/tests/
H A Dmod.rs42 let srs = layer.spatial_reference().unwrap(); in test_layer_spatial_reference()