KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
GeoJson
★ 8
Open GitHub ↗
ABAP Classes to create GeoJson strings
Download README (.md)
Explore Similar Repositories
Dhaka_Stock_Exchange_Forecasting
:
Forecasting stock prices with Long Short Term Memory (LSTM) architecture
VAE-LSTM
:
(Gupta) A Deep Generative Framework for Paraphrase Generation
ScpReader
:
一个开源 Scp 条目阅读器
DeepIsolation
:
Audio source seperation using DeepLabv3+ Segmentation Model link:https://colab.research.google.com/drive/1azCXH4udXSTkEf3JLihdMTPoCKB7IETq
nz-rpc
:
基于netty和zookeeper的RPC框架
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
GeoJson
?
Download (.md)
# GeoJSON ABAP Classes to create GeoJSON strings according to [RFC 7946](https://tools.ietf.org/html/rfc7946) and display results with [LeafletJS](https://leafletjs.com). ## Installation Import Source with [abapGit](https://github.com/larshp/abapGit) ## Required Packages Needs [JSON Document Class](https://github.com/se38/zjson) with at least version 2.33 ``` write:/ zcl_json_document=>get_version( ). ``` ## Usage This example will create a simple point object: ``` DATA(geojson) = NEW zcl_geojson( ). DATA(point) = geojson->get_new_point( i_latitude = CONV #( '49.29278417339369' ) i_longitude = CONV #( '8.64398717880249' ) ). geojson->add_feature( point ). cl_demo_output=>display_json( geojson->get_json( ) ). ``` Result ``` { "type":"FeatureCollection", "features": [ { "type":"Feature", "properties": { "popupContent":"" }, "geometry": { "type":"Point", "coordinates": [ 8.6439871788025, 49.2927841733937 ] } } ] } ``` More examples: see demo report ZGEOJSON_DEMO  ## License This software is published under [MIT License](https://github.com/se38/GeoJson/blob/master/LICENSE)