Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public void updatePaintMesh() { | |
| //in case the data grid dimensions have changed | |
| //make the painting image the same dimension as the data grid for easy math | |
| diffusePaintImage = new WritableImage( | |
| Double.valueOf(xWidth*surfScale).intValue(), | |
| Double.valueOf(zWidth*surfScale).intValue() | |
| ); | |
| //if this is the first time .... | |
| if(null == paintTriangleMesh) { | |
| paintTriangleMesh = new TriangleMesh(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| city | city_ascii | lat | lng | country | iso2 | iso3 | admin_name | capital | population | id | |
|---|---|---|---|---|---|---|---|---|---|---|---|
| Moscow | Moscow | 55.7558 | 37.6178 | Russia | RU | RUS | Moskva | primary | 17693000 | 1643318494 | |
| Maykop | Maykop | 44.6 | 40.0833 | Russia | RU | RUS | Adygeya | admin | 141970 | 1643584159 | |
| Gorno-Altaysk | Gorno-Altaysk | 51.96 | 85.96 | Russia | RU | RUS | Altay | admin | 63214 | 1643549691 | |
| Barnaul | Barnaul | 53.3567 | 83.7872 | Russia | RU | RUS | Altayskiy Kray | admin | 633301 | 1643318931 | |
| Blagoveshchensk | Blagoveshchensk | 50.2578 | 127.5364 | Russia | RU | RUS | Amurskaya Oblast’ | admin | 224419 | 1643308239 | |
| Arkhangelsk | Arkhangelsk | 64.55 | 40.5333 | Russia | RU | RUS | Arkhangel’skaya Oblast’ | admin | 351488 | 1643797198 | |
| Astrakhan | Astrakhan | 46.3333 | 48.0167 | Russia | RU | RUS | Astrakhanskaya Oblast’ | admin | 532504 | 1643407929 | |
| Ufa | Ufa | 54.7261 | 55.9475 | Russia | RU | RUS | Bashkortostan | admin | 1115560 | 1643722928 | |
| Belgorod | Belgorod | 50.6 | 36.6 | Russia | RU | RUS | Belgorodskaya Oblast’ | admin | 391135 | 1643407900 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
We can make this file beautiful and searchable if this error is corrected: It looks like row 6 should actually have 18 columns, instead of 1 in line 5.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| id,ident,type,name,latitude_deg,longitude_deg,elevation_ft,continent,iso_country,iso_region,municipality,scheduled_service,gps_code,iata_code,local_code,home_link,wikipedia_link,keywords | |
| 5531,RJAA,large_airport,Narita International Airport,35.764702,140.386002,141,AS,JP,JP-12,Narita,yes,RJAA,NRT,,,https://en.wikipedia.org/wiki/Narita_International_Airport,"TYO, Tokyo, Tokyo Narita Airport, New Tokyo International Airport" | |
| 5536,RJBB,large_airport,Kansai International Airport,34.427299,135.244003,26,AS,JP,JP-27,Osaka,yes,RJBB,KIX,,http://www.kansai-airport.or.jp/en/index.asp,https://en.wikipedia.org/wiki/Kansai_International_Airport,OSA | |
| 5576,RJGG,large_airport,Chubu Centrair International Airport,34.85839844,136.8049927,15,AS,JP,JP-23,Tokoname,yes,RJGG,NGO,,,https://en.wikipedia.org/wiki/Ch%C5%ABbu_Centrair_International_Airport, | |
| 5598,RJOO,large_airport,Osaka International Airport,34.78549957,135.4380035,50,AS,JP,JP-27,Osaka,yes,RJOO,ITM,,,https://en.wikipedia.org/wiki/Osaka_International_Airport,"OSA, Itami" | |
| 5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package edu.jhuapl.trinity.javafx; | |
| /*- | |
| * #%L | |
| * ******************************* UNCLASSIFIED ******************************* | |
| * LookAtTest.java | |
| * trinity:trinity | |
| * %% | |
| * Copyright (C) 2021 - 2022 Johns Hopkins University Applied Physics Laboratory | |
| * %% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package edu.jhuapl.trinity.javafx; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import javafx.application.Application; | |
| import javafx.geometry.Insets; | |
| import javafx.geometry.Point3D; | |
| import javafx.scene.Group; | |
| import javafx.scene.PerspectiveCamera; | |
| import javafx.scene.Scene; |
NewerOlder