主页
libcuspatial
cucim
cudf-java
cudf
cugraph
cuml
cuproj
cuspatial
cuvs
cuxfilter
dask-cuda
dask-cudf
kvikio
libcudf
libcuml
libcuproj
libcuspatial
libkvikio
librmm
libucxx
raft
rapids-cmake
rapidsmpf
rmm
stable (25.04)
stable (25.04)
legacy (25.02)
正在加载...
正在搜索...
无匹配项
include
cuspatial
projection.hpp
前往此文件的文档。
1
/*
2
* Copyright (c) 2019-2024, NVIDIA CORPORATION.
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
6
* You may obtain a copy of the License at
7
*
8
* https://apache.ac.cn/licenses/LICENSE-2.0
9
*
10
* Unless required by applicable law or agreed to in writing, software
11
* distributed under the License is distributed on an "AS IS" BASIS,
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
* See the License for the specific language governing permissions and
14
* limitations under the License.
15
*/
16
17
#pragma once
18
19
#include <cudf/types.hpp>
20
21
#include <rmm/mr/device/per_device_resource.hpp>
22
#include <rmm/resource_ref.hpp>
23
24
#include <memory>
25
26
namespace
cuspatial {
27
32
49
std::pair<std::unique_ptr<cudf::column>, std::unique_ptr<cudf::column>>
sinusoidal_projection
(
50
double
origin_lon,
51
double
origin_lat,
52
cudf::column_view
const
& input_lon,
53
cudf::column_view
const
& input_lat,
54
rmm::device_async_resource_ref mr = rmm::mr::get_current_device_resource());
55
59
60
}
// namespace cuspatial
cuspatial::sinusoidal_projection
OutputIt sinusoidal_projection(InputIt lon_lat_first, InputIt lon_lat_last, OutputIt xy_first, vec_2d< T > origin, rmm::cuda_stream_view stream=rmm::cuda_stream_default)
将相对于原点的经纬度进行正弦曲线投影,转换为以千米为单位的笛卡尔 (x/y) 坐标。
生成者
1.13.2