OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
GeoOps.cpp
Go to the documentation of this file.
1 /*
2  * Copyright 2022 HEAVY.AI, Inc.
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  * http://www.apache.org/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 
23 #include "../Geospatial/Compression.h"
24 #include "../Geospatial/Transforms.h"
25 #include "../Shared/funcannotations.h"
26 #include "TypePunning.h"
27 
28 #ifdef EXECUTE_INCLUDE
29 
30 extern "C" DEVICE RUNTIME_EXPORT double decompress_x_coord_geoint(const int32_t coord) {
32 }
33 
34 extern "C" DEVICE RUNTIME_EXPORT double decompress_y_coord_geoint(const int32_t coord) {
36 }
37 
38 extern "C" DEVICE RUNTIME_EXPORT int32_t compress_x_coord_geoint(const double coord) {
39  return static_cast<int32_t>(Geospatial::compress_longitude_coord_geoint32(coord));
40 }
41 
42 extern "C" DEVICE RUNTIME_EXPORT int32_t compress_y_coord_geoint(const double coord) {
43  return static_cast<int32_t>(Geospatial::compress_latitude_coord_geoint32(coord));
44 }
45 
46 #endif
DEVICE double decompress_latitude_coord_geoint32(const int32_t compressed)
DEVICE uint64_t compress_longitude_coord_geoint32(const double coord)
DEVICE ALWAYS_INLINE Point2D coord(const int8_t *data, const int32_t x_index, const int32_t ic, const int32_t isr, const int32_t osr)
#define DEVICE
DEVICE uint64_t compress_latitude_coord_geoint32(const double coord)
#define RUNTIME_EXPORT
DEVICE double decompress_longitude_coord_geoint32(const int32_t compressed)